36 lines
751 B
Plaintext
36 lines
751 B
Plaintext
/*
|
|
Simple example for receiving
|
|
|
|
http://code.google.com/p/rc-switch/
|
|
*/
|
|
|
|
#include <RCSwitch.h>
|
|
|
|
RCSwitch mySwitch = RCSwitch();
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
mySwitch.enableReceive(0); // Receiver on inerrupt 0 => that is pin #2
|
|
}
|
|
|
|
void loop() {
|
|
if (mySwitch.available()) {
|
|
|
|
int value = mySwitch.getReceivedValue();
|
|
|
|
if (value == 0) {
|
|
Serial.print("Unknown encoding");
|
|
} else {
|
|
Serial.print("Received ");
|
|
Serial.print( mySwitch.getReceivedValue() );
|
|
Serial.print(" / ");
|
|
Serial.print( mySwitch.getReceivedBitlength() );
|
|
Serial.print("bit ");
|
|
Serial.print("Protocol: ");
|
|
Serial.println( mySwitch.getReceivedProtocol() );
|
|
}
|
|
|
|
mySwitch.resetAvailable();
|
|
}
|
|
}
|