mirror of https://github.com/arendst/Tasmota.git
25 lines
594 B
C++
25 lines
594 B
C++
/*
|
|
Example for receiving
|
|
|
|
https://github.com/sui77/rc-switch/
|
|
|
|
If you want to visualize a telegram copy the raw data and
|
|
paste it into http://test.sui.li/oszi/
|
|
*/
|
|
|
|
#include <RCSwitch.h>
|
|
|
|
RCSwitch mySwitch = RCSwitch();
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
mySwitch.enableReceive(0); // Receiver on interrupt 0 => that is pin #2
|
|
}
|
|
|
|
void loop() {
|
|
if (mySwitch.available()) {
|
|
output(mySwitch.getReceivedValue(), mySwitch.getReceivedBitlength(), mySwitch.getReceivedDelay(), mySwitch.getReceivedRawdata(),mySwitch.getReceivedProtocol());
|
|
mySwitch.resetAvailable();
|
|
}
|
|
}
|