Skip to content
Snippets Groups Projects
Commit b1a4ec9a authored by Severin Landwein's avatar Severin Landwein
Browse files

fix typo

parent c32234fd
No related branches found
No related tags found
No related merge requests found
#include "bits_ir_receiver.h"
BitsIrReceiver::BitsIrReceiver(int aPin) {
IRrecv ir_reciver(aPin);
BitsIrReceiver::BitsIrReceiver(int pin) {
IRrecv ir_receiver(aPin);
}
void BitsIrReceiver::begin() {
......
......@@ -34,7 +34,7 @@
class BitsIrReceiver
{
public:
BitsIrReceiver(uint8_t aPin);
BitsIrReceiver(uint8_t pin);
void begin();
uint8_t receive_command();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment