change pinout for arduino pro mini
[Arduino] / RF433_Sockets / RF433_Sockets.ino
index 8b731f0..b493673 100644 (file)
@@ -16,19 +16,28 @@ void setup() {
   
   mySwitch.enableTransmit(10); // with sender wired in receiving doesn't work, pin #10
 
-  Serial.print("press buttons on remote or send AB where A = socket (0..9), B = state (0 = off, 1 = on)\n");
+  Serial.print("press buttons on remote or send AB where A = socket (0..9), B = state (0 = off, 1 = on)\nB00...00 (24 digits) to send binary\n");
 }
 
 int serial_pos = 0;
 char serial_data[2]; // socket (0-9), state (0-1)
+char binary_data[24];
 
 void loop() {
   if (mySwitch.available()) {
-    output(mySwitch.getReceivedValue(), mySwitch.getReceivedBitlength(), mySwitch.getReceivedDelay(), mySwitch.getReceivedRawdata(),mySwitch.getReceivedProtocol());
+    Serial.print(mySwitch.getReceivedBitlength());
+    Serial.print(" bits ");
+    Serial.println(mySwitch.getReceivedValue(), BIN);
     mySwitch.resetAvailable();
   }
   if (Serial.available() > 0) {
      char input = Serial.read();
+     if ( input == 'B' ) {
+       Serial.readBytesUntil('\n', binary_data, sizeof(binary_data));
+       Serial.print("send B");
+       Serial.println( binary_data );
+       mySwitch.send( binary_data );
+     } else
      if ( input >= 0x30 && input <= 0x39 ) {
        input = input - 0x30; // ASCII to number
        serial_data[serial_pos++] = input;
@@ -46,7 +55,7 @@ void loop() {
        if ( serial_data[1] ) { // on
          switch ( serial_data[0] ) {
          case 1:
-           mySwitch.send("110101010111010000001100");
+           mySwitch.send("110101011101010000001100");
            break;
          case 2:
            mySwitch.send("110101010111010000001100");