Merge branch 'master' of mjesec.ffzg.hr:/git/Arduino
[Arduino] / rpi_promini / rpi_promini.ino
1 /*
2
3   Connect Arduino ProMini 3.3V 8Mhz Atmega328 to Raspberry Pi
4   
5   RPI pin  Arduino
6   RXD      TXD
7   TXD      RXD
8   GPIO6    RST
9   GND      GND
10   +5V      RAW
11
12            2    433Mhz receive
13 //           3    433Mhz outdoor temperature sensor receiver # DISABLED
14            8    DHT22
15            10   433Mhz send
16            11   DS18B20
17            12   315Mhz send
18            13   status LED
19            
20 */
21
22 #include <RCSwitch.h>
23
24 #include <OneWire.h>
25 #include <DallasTemperature.h>
26
27 RCSwitch mySwitch = RCSwitch();
28
29 // DS18B20 on pin 11
30 OneWire oneWire(11);
31 DallasTemperature sensors(&oneWire);
32
33
34 // 315Mhz light sockets
35 #define TX_PIN 12
36 #define LED_PIN 13
37 #define LED_ON  digitalWrite(LED_PIN, HIGH);
38 #define LED_OFF digitalWrite(LED_PIN, LOW);
39
40 int int_0 = 300; // ms
41 int int_1 = 900; // ms
42 int wait  = 2000; // ms
43 int repeat = 20; // times (5 times seem a little low for sensors which are more than 10m away)
44
45 void send_315(char *code) {
46   Serial.print("send 315Mhz ");
47   Serial.println(code);
48   
49   // we have to send same signal at least two times
50   for(int r = 0; r < repeat; r++ ) {
51
52     digitalWrite(LED_PIN, HIGH);
53
54     for(int i = 0; i < strlen(code); i++) {
55       int i1 = int_0;
56       int i2 = int_1;
57       if (code[i] == '1' ) {
58         i1 = int_1;
59         i2 = int_0;
60       }
61       digitalWrite(TX_PIN, HIGH);
62       delayMicroseconds(i1);
63       digitalWrite(TX_PIN, LOW);
64       delayMicroseconds(i2);
65     }
66
67     digitalWrite(LED_PIN, LOW);
68
69     delayMicroseconds(wait); // guess
70   }
71
72 }
73
74
75 // DHT22
76 #include "DHT.h"
77 DHT dht;
78
79 // setup
80
81 void help() {
82   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");
83 }
84
85 void setup() {
86   Serial.begin(9600);
87   mySwitch.enableReceive(0);  // Receiver on inerrupt 0 => that is pin #2  
88   mySwitch.enableTransmit(10); // with sender wired in receiving doesn't work, pin #10
89   mySwitch.setRepeatTransmit(repeat); // or change to be different for 433 and 315 MHz
90
91   // DS18B20
92   sensors.begin();
93
94   // DHT22
95   dht.setup(8);
96
97 }
98
99 int serial_pos = 0;
100 char serial_data[2]; // socket (0-9), state (0-1)
101 char binary_data[32];
102
103 void loop() {
104   if (mySwitch.available()) {
105     Serial.print(mySwitch.getReceivedBitlength());
106     Serial.print(" bits ");
107     Serial.println(mySwitch.getReceivedValue(), BIN);
108     mySwitch.resetAvailable();
109   }
110   if (Serial.available() > 0) {
111      char input = Serial.read();
112
113      if (input == '?' || input == 'h') {
114        help();
115      } else
116
117      if ( input == 'T' ) {
118        Serial.print("DS18B20 temperature = ");
119        sensors.requestTemperatures();
120        Serial.println( sensors.getTempCByIndex(0) );       
121      } else
122
123      if ( input == 'B' ) {
124        Serial.readBytesUntil('\n', binary_data, sizeof(binary_data));
125        Serial.print("# send B");
126        Serial.println( binary_data );
127        LED_ON
128        mySwitch.send( binary_data );
129        LED_OFF
130      } else
131
132      if ( input == 'R' ) {
133        Serial.readBytesUntil('\n', binary_data, sizeof(binary_data));
134        Serial.print("# send 315 binary ");
135        Serial.println( binary_data );
136        send_315( binary_data );
137      } else
138
139     // light sockets at 315 Mhz
140      if (input == 'a') {
141        send_315("1000100110110000000000010");
142      } else
143      if (input == 'b') {
144        send_315("1011001001011111000000010");
145      } else
146
147      // DHT22
148      if (input == 'd') {
149        Serial.print("temperature=");
150        Serial.print(dht.getTemperature());
151        Serial.print(" humidity=");
152        Serial.print(dht.getHumidity());
153        Serial.print(" status=");
154        Serial.println(dht.getStatusString());
155      }
156
157      if ( input >= 0x30 && input <= 0x39 ) {
158        input = input - 0x30; // ASCII to number
159        serial_data[serial_pos++] = input;
160      } else {     
161        Serial.print("# ignore: ");
162        Serial.println(input, HEX);
163      }
164      
165      if ( serial_pos == 2 ) {
166        Serial.print("switch=");
167        Serial.print(serial_data[0], DEC);
168        Serial.print(" state=");
169        Serial.println(serial_data[1] ? "on" : "off");
170
171        byte on = serial_data[1];
172
173        LED_ON
174
175         // switches, 433 Mhz set of 3
176         switch ( serial_data[0] ) {
177          case 1:
178            on   ? mySwitch.send("110101011101010000001100")
179                 : mySwitch.send("110101011101010000000011");
180            break;
181          case 2:
182            on   ? mySwitch.send("110101010111010000001100")
183                 : mySwitch.send("110101010111010000000011");
184            break;
185          case 3:
186            on   ? mySwitch.send("110101010101110000001100")
187                 : mySwitch.send("110101010101110000000011");
188            break;
189          case 4:
190            on   ? mySwitch.send("001111110000000011000000")
191                 : mySwitch.send("001111110000000000000000");
192            break;
193          case 5:
194 /*
195                 cca. 320Mhz 4 channel 4.8A 220V relay
196
197                 A       1101001010011010011100010
198                 B       1101001010011010011101000
199                 C       1101001010011010011100100
200                 D       1101001010011010011110000
201                 off     1101001010011010011111000
202                 on      1101001010011010011100110
203 */
204                 switch ( on ) {
205                         case '0': send_315( "1101001010011010011111000" );
206                         case '1': send_315( "1101001010011010011100110" );
207                         case 'A': send_315( "1101001010011010011100010" );
208                         case 'B': send_315( "1101001010011010011101000" );
209                         case 'C': send_315( "1101001010011010011100100" );
210                         case 'D': send_315( "1101001010011010011110000" );
211                         default:  Serial.println("# ERROR: use 0-off 1-on A B C D");
212                 }
213          default:
214            Serial.print("# invalid switch number ");
215            Serial.println(serial_data[0], DEC);
216         }
217
218         LED_OFF
219
220         // reset for later
221         serial_pos = 0;
222      }
223   }
224 }