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" #include "bits_ir_receiver.h"
BitsIrReceiver::BitsIrReceiver(int aPin) { BitsIrReceiver::BitsIrReceiver(int pin) {
IRrecv ir_reciver(aPin); IRrecv ir_receiver(aPin);
} }
void BitsIrReceiver::begin() { void BitsIrReceiver::begin() {
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
class BitsIrReceiver class BitsIrReceiver
{ {
public: public:
BitsIrReceiver(uint8_t aPin); BitsIrReceiver(uint8_t pin);
void begin(); void begin();
uint8_t receive_command(); 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