| 123456789101112131415161718192021222324 |
- /*
- 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();
- }
- }
|