e379db819dec80dd555dc40ce4b56792511c1ebd
[owSlave2.git] / DS18B20_BMP280_DS2438_SHT / DS18B20_DS2438.c
1 // Copyright (c) 2017, Tobias Mueller tm(at)tm3d.de\r
2 // All rights reserved.\r
3 //\r
4 // Redistribution and use in source and binary forms, with or without\r
5 // modification, are permitted provided that the following conditions are\r
6 // met:\r
7 //\r
8 //  * Redistributions of source code must retain the above copyright\r
9 //    notice, this list of conditions and the following disclaimer.\r
10 //  * Redistributions in binary form must reproduce the above copyright\r
11 //    notice, this list of conditions and the following disclaimer in the\r
12 //    documentation and/or other materials provided with the\r
13 //    distribution.\r
14 //  * All advertising materials mentioning features or use of this\r
15 //    software must display the following acknowledgement: This product\r
16 //    includes software developed by tm3d.de and its contributors.\r
17 //  * Neither the name of tm3d.de nor the names of its contributors may\r
18 //    be used to endorse or promote products derived from this software\r
19 //    without specific prior written permission.\r
20 //\r
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
32 \r
33 #define F_CPU 8000000UL\r
34 #include <avr/io.h>\r
35 #include <avr/interrupt.h>\r
36 #include <util/delay.h>\r
37 #include <avr/wdt.h>\r
38 #include <avr/sleep.h>\r
39 #include <avr/pgmspace.h>\r
40 #include "../common/I2C/USI_TWI_Master.h"\r
41 #include "../common/I2C/SHT2x.h"\r
42 #include "../common/I2C/BMP280.h"\r
43 #include "../common/calibr.h"\r
44 \r
45 extern void OWINIT();\r
46 extern void EXTERN_SLEEP();\r
47 \r
48 \r
49 uint8_t owid1[8]={0x28, 0xA3, 0xD9, 0x84, 0x00, 0x16, 0x05, 0x18};/**/\r
50 uint8_t owid2[8]={0x26, 0xA3, 0xD9, 0x84, 0x00, 0x16, 0x05, 0x67};/**/\r
51 \r
52 uint8_t config_info1[26]={0x02,0x03, 0x00,0x00, 0x00,0x00, 0x00,0x00, 0x02,14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
53 uint8_t config_info2[26]={0x01,0x06, 0x05,0x08, 0x04,0x07, 0x00,0x00, 0x02,7,0x00,7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
54 \r
55         \r
56 #if (owid>128) \r
57 #error "Variable not correct"\r
58 #endif\r
59 \r
60 extern uint8_t mode;\r
61 extern uint8_t gcontrol;\r
62 extern uint8_t reset_indicator;\r
63 extern uint8_t alarmflag;\r
64 volatile uint8_t wdcounter=3;\r
65 \r
66 \r
67 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
68 ISR(WATCHDOG_vect) {\r
69         #else\r
70         ISR(WDT_vect) {\r
71         \r
72 #endif \r
73         //sleep_disable();          // Disable Sleep on Wakeup\r
74         wdcounter++;\r
75         if (reset_indicator==1) reset_indicator++;\r
76         else if (reset_indicator==2) mode=0;\r
77 /*      if (timeout==2) {\r
78                 DIS_TIMER;\r
79                 EN_OWINT;\r
80                 mode=OWM_SLEEP;\r
81         }\r
82         timeout++;*/\r
83         //sleep_enable();           // Enable Sleep Mode\r
84 \r
85 }\r
86 \r
87 \r
88 typedef union {\r
89         volatile uint8_t bytes[8];\r
90         struct {\r
91                 uint16_t temp;  //0\r
92                 uint8_t TH;  //2\r
93                 uint8_t TL;  //3\r
94                 uint8_t config;  //4\r
95                 uint8_t rrFF; //5\r
96                 uint8_t rr00; //6\r
97                 uint8_t rr10; //7\r
98         };\r
99 } pack1_t;\r
100 volatile pack1_t pack1;\r
101 \r
102 \r
103 \r
104 typedef union {\r
105         #if  defined(__AVR_ATtiny25__)\r
106         volatile uint8_t bytes[16];\r
107         #else\r
108         volatile uint8_t bytes[64];\r
109         #endif\r
110         struct {\r
111                 uint8_t status;  //1\r
112                 int16_t temp;  //2\r
113                 uint16_t voltage;  //4\r
114                 uint16_t current;  //6\r
115                 uint8_t threshold; //8\r
116                 \r
117                 uint8_t page1[8]; //9\r
118                 #if  defined(__AVR_ATtiny25__)\r
119                 #else\r
120                 uint8_t page2[8]; //17\r
121                 uint8_t page3[8]; //25\r
122                 uint8_t page4[8];  //33\r
123                 uint8_t page5[8];  //41\r
124                 uint8_t page6[8];  //49\r
125                 uint8_t page7[8];  //57\r
126                 //uint8_t crc;  //65\r
127                 #endif\r
128         };\r
129 } pack2_t;\r
130 volatile pack2_t pack2;\r
131 \r
132 \r
133 \r
134 \r
135 volatile int16_t am2302_temp;\r
136 volatile uint16_t am2302_hum;\r
137 \r
138 \r
139 int testSW(void) {\r
140         uint8_t r;\r
141         DDRB&=~(1<<PORTB0);  //Eingang\r
142         __asm__ __volatile__ ("nop");\r
143         PORTB|=(1<<PORTB0); //Pullup\r
144         __asm__ __volatile__ ("nop");\r
145         __asm__ __volatile__ ("nop");\r
146         __asm__ __volatile__ ("nop");\r
147         __asm__ __volatile__ ("nop");\r
148         __asm__ __volatile__ ("nop");\r
149         r=PINB&(1<<PORTB0);\r
150         __asm__ __volatile__ ("nop");\r
151         PORTB&=~(1<<PORTB0);\r
152         __asm__ __volatile__ ("nop");\r
153         DDRB|=(1<<PORTB0);  //Eingang\r
154         return (r==0);\r
155         \r
156         \r
157 }\r
158 \r
159 uint8_t userRegister[1];\r
160 int16_t sRH,sT;\r
161 volatile double temperatureC,humidityRH;\r
162 volatile double l;\r
163         uint32_t P;\r
164         int32_t t;\r
165 \r
166 int main(void){\r
167     PRR|=(1<<PRADC);  // adc for save Power\r
168         PORTA=0xFF;\r
169         PORTB=0xFF-(1<<PORTB0); //Schalter kann gegen Masse sein und zieht dann immer Strom\r
170         DDRB|=(1<<PORTB0); //Als Ausgang und 0\r
171         \r
172         pack1.temp=0x0550;\r
173         pack1.config=0x7F;\r
174         pack1.TH=75;\r
175         pack1.TL=70;\r
176         pack1.rrFF=0xFF;\r
177         pack1.rr00=0;\r
178         pack1.rr10=0x10;\r
179         PORTA=0xFF;\r
180         PORTB=0xFF;\r
181         OWINIT();\r
182 \r
183         ACSR|=(1<<ACD);  //Disable Comparator\r
184         ADCSRB|=(1<<ACME); //Disable Analog multiplexer\r
185         MCUCR &=~(1<<PUD); //All Pins Pullup...\r
186         //MCUCR &=~(1<<BODS);\r
187 \r
188         \r
189         WDTCSR |= ((1<<WDCE) );   // Enable the WD Change Bit//| (1<<WDE)\r
190         WDTCSR |=   (1<<WDIE) |              // Enable WDT Interrupt\r
191         (1<<WDP3) | (1<<WDP0);   // Set Timeout to ~8 seconds\r
192         if (testSW()) {\r
193                 config_info2[5]=8;\r
194                 }else{\r
195                 config_info2[5]=7;\r
196         }\r
197         pack2.page3[0]=0xF1;\r
198 \r
199         MCUSR=0;\r
200         USI_TWI_Master_Initialise();\r
201         \r
202         SHT2x_SoftReset();\r
203         SHT2x_ReadUserRegister(userRegister);\r
204         //(userRegister & ~SHT2x_RES_MASK) | SHT2x_RES_10_13BIT;\r
205         SHT2x_WriteUserRegister(userRegister); //write changed user reg\r
206         // --- measure humidity with "Hold Master Mode (HM)" ---\r
207         //SHT2x_MeasurePoll(HUMIDITY, &sRH);\r
208         // --- measure temperature with "Polling Mode" (no hold master) ---\r
209         //SHT2x_MeasurePoll(TEMP, &sT);\r
210         //-- calculate humidity and temperature --\r
211         //temperatureC = SHT2x_CalcTemperatureC(sT);\r
212         //humidityRH = SHT2x_CalcRH(sRH);\r
213         bmp280Init();\r
214         gcontrol=1;\r
215         sei();\r
216     while(1)   {\r
217                 if (gcontrol) {\r
218                         wdcounter=3;\r
219                         \r
220                 }\r
221 \r
222                 if (wdcounter>2) {\r
223                         SHT2x_MeasurePoll(HUMIDITY, &sRH);\r
224                         // --- measure temperature with "Polling Mode" (no hold master) ---\r
225                         SHT2x_MeasurePoll(TEMP, &sT);\r
226                         //-- calculate humidity and temperature --\r
227                         temperatureC = SHT2x_CalcTemperatureC(sT);\r
228                         humidityRH = SHT2x_CalcRH(sRH);\r
229                         humidityRH=calibr_hum(temperatureC,-0.45,humidityRH)*10.0;\r
230                         temperatureC=temperatureC*10.0-4.5;\r
231                          if (testSW()) {\r
232                                  am2302_hum= humidityRH*10.0;\r
233                                  am2302_temp=temperatureC*25.6;\r
234                                  //am2302_temp=am2302_temp-20;\r
235                                  config_info2[5]=8;\r
236                                  \r
237                                  }else{\r
238                                  \r
239                                  double hhum=(1.0546-0.000216*temperatureC)*(humidityRH);\r
240                                  //am2302_hum=0.318*hhum +76.0;\r
241                                  am2302_hum=0.31*hhum +80;\r
242                                  am2302_temp=temperatureC*25.6;\r
243                                  //am2302_temp=am2302_temp-20;\r
244                                  config_info2[5]=7;\r
245                          }\r
246                         wdcounter=0;\r
247                 }\r
248         \r
249                 if ((gcontrol&1)==1) {\r
250                         \r
251                                 bmp280ConvertInt(&t,&P,1);\r
252                                 P=P-70000;\r
253                                 P=P/20;\r
254                                 uint16_t w=P;\r
255                                 uint8_t t8=w>>4;\r
256                                 uint8_t af=0;\r
257                                 if (t8>pack1.TH) af=1;\r
258                                 if (t8<=pack1.TL) af=1;\r
259                                 cli();\r
260                                 pack1.temp=w;\r
261                                 //pack.temp++;\r
262                                 alarmflag=af;\r
263                                 sei();\r
264                                 gcontrol=0;\r
265                                 EXTERN_SLEEP(); \r
266                 }\r
267                 if (gcontrol) {\r
268                         gcontrol=0;\r
269                         \r
270                 }\r
271 \r
272                 \r
273 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)\r
274                         if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))\r
275 #endif                  \r
276 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
277                         if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))\r
278 #endif\r
279                           {\r
280 \r
281                         MCUCR|=(1<<SE)|(1<<SM1);\r
282                         MCUCR&=~(1<<ISC01);\r
283                 } else {\r
284                         MCUCR|=(1<<SE);\r
285                         MCUCR&=~(1<<SM1);\r
286                 }\r
287                 //MCUCR&=~(1<<ISC01);\r
288                 asm("SLEEP");\r
289    }\r
290 \r
291 \r
292 }