8afb2e01c487d1a5b0e8fccf20701f78bcfb78b0
[owSlave2.git] / DS2450_SHT2X_MAX44009 / DS2450_SHT2X_MAX44009.c
1
2 // Copyright (c) 2015, Tobias Mueller tm(at)tm3d.de
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 //  * Redistributions of source code must retain the above copyright
10 //    notice, this list of conditions and the following disclaimer.
11 //  * Redistributions in binary form must reproduce the above copyright
12 //    notice, this list of conditions and the following disclaimer in the
13 //    documentation and/or other materials provided with the
14 //    distribution.
15 //  * All advertising materials mentioning features or use of this
16 //    software must display the following acknowledgement: This product
17 //    includes software developed by tm3d.de and its contributors.
18 //  * Neither the name of tm3d.de nor the names of its contributors may
19 //    be used to endorse or promote products derived from this software
20 //    without specific prior written permission.
21 //
22 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34 #define F_CPU 8000000UL
35 #include <avr/io.h>
36 #include <avr/interrupt.h>
37 #include <util/delay.h>
38 #include <avr/wdt.h>
39 #include <avr/sleep.h>
40 #include <avr/pgmspace.h>
41 #include "../common/I2C/USI_TWI_Master.h"
42 #include "../common/I2C/SHT2x.h"
43 #include "../common/I2C/MAX44009.h"
44 extern void OWINIT();
45 extern void EXTERN_SLEEP();
46
47 uint8_t owid[8]={0x20, 0xA2, 0xD9, 0x84, 0x00, 0x16, 0x02, 0x5D};/**/
48 uint8_t config_info[16]={0x01,14,0x04,0x08, 0x03,15, 0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
49
50 #if (owid>128) 
51 #error "Variable not correct"
52 #endif
53
54 extern uint8_t mode;
55 extern uint8_t gcontrol;
56 extern uint8_t reset_indicator;
57 extern uint8_t alarmflag;
58 volatile uint8_t wdcounter=10;
59
60
61 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)
62 ISR(WATCHDOG_vect) {
63 #else
64 ISR(WDT_vect) {
65 #endif 
66         wdcounter++;
67         if (reset_indicator==1) reset_indicator++;
68         else if (reset_indicator==2) mode=0;
69 }
70
71 typedef union {
72         volatile uint8_t bytes[0x20];
73         struct {
74                 //Page0
75                 uint16_t A;  //0
76                 uint16_t B;  //2
77                 uint16_t C;  //4
78                 uint16_t D;  //6
79                 //Page1
80                 uint8_t CSA1;
81                 uint8_t CSA2;
82                 uint8_t CSB1;
83                 uint8_t CSB2;
84                 uint8_t CSC1;
85                 uint8_t CSC2;
86                 uint8_t CSD1;
87                 uint8_t CSD2;
88                 //Page2
89                 uint8_t LA;
90                 uint8_t HA;
91                 uint8_t LB;
92                 uint8_t HB;
93                 uint8_t LC;
94                 uint8_t HC;
95                 uint8_t LD;
96                 uint8_t HD;
97                 //Page3
98                 uint8_t FC1;
99                 uint8_t FC2;
100                 uint8_t FC3;
101                 uint8_t FC4;
102                 uint8_t VCCP;
103                 uint8_t FC5;
104                 uint8_t FC6;
105                 uint8_t FC7;
106                 uint8_t convc1;
107                 uint8_t convc2;
108                 
109                 
110         };
111 } pack_t;
112 volatile pack_t pack;
113
114
115
116 volatile int16_t am2302_temp;
117 volatile uint16_t am2302_hum;
118
119
120 uint8_t userRegister[1];
121 int16_t sRH,sT;
122 volatile double temperatureC,humidityRH;
123 volatile double l;
124 uint32_t P;
125 int32_t t;
126 uint8_t max_adr=0;
127
128
129
130 int main(void){
131         pack.A=0;
132         pack.B=0;
133         pack.C=0;
134         pack.D=0;
135         pack.CSA1=0x08;
136         pack.CSA2=0x8C;
137         pack.CSB1=0x08;
138         pack.CSB2=0x8C;
139         pack.CSC1=0x08;
140         pack.CSC2=0x8C;
141         pack.CSD1=0x08;
142         pack.CSD2=0x8C;
143         pack.HA=0xFF;
144         pack.LA=0x00;
145         pack.HB=0xFF;
146         pack.LB=0x00;
147         pack.HC=0xFF;
148         pack.LC=0x00;
149         pack.HD=0xFF;
150         pack.LD=0x00;
151         pack.VCCP=0;
152     PORTB=0xFF-(1<<PORTB0); //Schalter kann gegen Masse sein und zieht dann immer Strom
153         DDRB|=(1<<PORTB0); //Als Ausgang und 0
154         PORTA=0xFF;  //All Pull up;
155          PRR|=(1<<PRADC);  // adc for save Power
156
157         ACSR|=(1<<ACD);  //Disable Comparator
158         OWINIT();
159
160         MCUCR &=~(1<<PUD); //All Pins Pullup...
161         MCUCR |=(1<<BODS);
162         WDTCSR |= ((1<<WDCE) );   // Enable the WD Change Bit//| (1<<WDE)
163         WDTCSR |=   (1<<WDIE) |              // Enable WDT Interrupt
164         (1<<WDP3) | (1<<WDP0);   // Set Timeout to ~8 seconds
165         
166         gcontrol=1;
167         
168         USI_TWI_Master_Initialise();
169         SHT2x_SoftReset();
170         SHT2x_ReadUserRegister(userRegister);
171         //(userRegister & ~SHT2x_RES_MASK) | SHT2x_RES_10_13BIT;
172         SHT2x_WriteUserRegister(userRegister); //write changed user reg
173         // --- measure humidity with "Hold Master Mode (HM)" ---
174         //SHT2x_MeasurePoll(HUMIDITY, &sRH);
175         // --- measure temperature with "Polling Mode" (no hold master) ---
176         //SHT2x_MeasurePoll(TEMP, &sT);
177         //-- calculate humidity and temperature --
178         //temperatureC = SHT2x_CalcTemperatureC(sT);
179         //humidityRH = SHT2x_CalcRH(sRH);
180         if (checkMAX44009(0)) max_adr=0; else max_adr=1 ;
181         
182         sei();
183         
184         //DDRB|=(1<<PINB1);
185
186     while(1)   {
187         
188         if (wdcounter>3) {      
189                 SHT2x_MeasurePoll(HUMIDITY, &sRH);
190                 // --- measure temperature with "Polling Mode" (no hold master) ---
191                 SHT2x_MeasurePoll(TEMP, &sT);
192                 //-- calculate humidity and temperature --
193                 temperatureC = SHT2x_CalcTemperatureC(sT);
194                 humidityRH = SHT2x_CalcRH(sRH);
195
196                 l=MAX44009getlux(max_adr);
197                 if (l<0.030) l=0.030; //Darf nicht 0 sein. minimum -35°C Sensor minimum 0.045
198                 //double l=1000;
199                 l=(log(l)*1000)+32767.0;
200                 wdcounter=0;
201         }
202         
203
204                 
205                 
206
207
208                 if (gcontrol) {
209                         //PORTB|=(1<<PINB1);
210                         uint8_t bb=1;
211                         uint8_t bb1=1;
212                         for(uint8_t i=0;i<4;i++){
213                                 if (pack.convc1&bb1) {
214                                         if (pack.convc2&(bb)) {pack.bytes[i*2]=0;pack.bytes[i*2+1]=0;}
215                                         bb=bb<<1;
216                                         if (pack.convc2&(bb)) {pack.bytes[i*2]=0xFF;pack.bytes[i*2+1]=0xFF;}
217                                         bb=bb<<1;
218                                 } else bb=bb<<2;
219                                 bb1=bb1<<1;                             
220                         }
221                         //CHanel A
222                         if (pack.convc1&1) {
223                                 /*if (pack.CSA2&0x01)   ADMUX=0; else ADMUX=0x80;
224                                 _delay_us(100);
225                                 ADCSRA|=(1<<ADSC);
226                                 while ((ADCSRA&(1<<ADSC)));
227                                 cli();pack.A=ADC;sei();*/
228                                 uint16_t ct=(temperatureC*100.0)+32767;
229                                 cli();pack.A=ct;sei();
230                                 wdcounter=10;
231                                 alarmflag=0;
232                                 
233                                 if (pack.CSA2&0x08)  //AEH
234                                         if (pack.bytes[1]>pack.HA) {alarmflag=1;pack.CSA2|=0x20;}
235                                 if (pack.CSA2&0x04)  //AEL
236                                         if (pack.bytes[1]<pack.LA) {alarmflag=1;pack.CSA2|=0x10;}
237                         }
238
239                         if (pack.convc1&2) {
240                                 /*if (pack.CSB2&0x01)   ADMUX=1; else ADMUX=0x81;
241                                 _delay_us(100);
242                                 ADCSRA|=(1<<ADSC);
243                                 while ((ADCSRA&(1<<ADSC)));
244                                 cli();pack.B=ADC;sei();*/
245                                 wdcounter=10;
246                                 cli();pack.B=humidityRH*100;sei();
247                                 if (pack.CSB2&0x08)  //AEH
248                                         if (pack.bytes[1]>pack.HB) {alarmflag=1;pack.CSB2|=0x20;}
249                                 if (pack.CSB2&0x04)  //AEL
250                                         if (pack.bytes[1]<pack.LB) {alarmflag=1;pack.CSB2|=0x10;}
251                         }
252
253                         if (pack.convc1&4) {
254                                 /*if (pack.CSC2&0x01)   ADMUX=2; else ADMUX=0x82;
255                                 _delay_us(100);
256                                 ADCSRA|=(1<<ADSC);
257                                 while ((ADCSRA&(1<<ADSC)));
258                                 cli();pack.C=ADC;sei();*/
259                                 wdcounter=10;
260                                 cli();pack.C=l;sei();
261                                 if (pack.CSC2&0x08)  //AEH
262                                         if (pack.bytes[1]>pack.HC) {alarmflag=1;pack.CSC2|=0x20;}
263                                 if (pack.CSC2&0x04)  //AEL
264                                         if (pack.bytes[1]<pack.LC) {alarmflag=1;pack.CSC2|=0x10;}
265                         } 
266                         if (pack.convc1&8) {
267                                 /*if (pack.CSD2&0x01)   ADMUX=3; else ADMUX=0x83;
268                                 _delay_us(100);
269                                 ADCSRA|=(1<<ADSC);
270                                 while ((ADCSRA&(1<<ADSC)));
271                                 cli();pack.D=ADC;sei();*/
272                                 wdcounter=10;
273                                 cli();pack.D=0;sei();
274                                 if (pack.CSD2&0x08)  //AEH
275                                         if (pack.bytes[1]>pack.HD) {alarmflag=1;pack.CSD2|=0x20;}
276                                 if (pack.CSD2&0x04)  //AEL
277                                         if (pack.bytes[1]<pack.LD) {alarmflag=1;pack.CSD2|=0x10;}
278                         }
279                         
280                         EXTERN_SLEEP();
281                         //PORTB&=~(1<<PINB1);
282                 }
283
284                 /*uint8_t bb=1;
285                 for(uint8_t i=0;i<4;i++) {
286                         if (pack.bytes[8+i*2]&0x80) {  //Chanel as output
287                                 if (pack.bytes[8+i*2]&0x40) {
288                                         DDRA|=bb;
289                                 } else {
290                                         DDRA&=~bb;
291                                 }
292                         } else {
293                                 DDRA&=~bb;
294                         }
295                         bb=bb*2;
296                 }*/
297                 
298 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)
299                         if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))
300 #endif                  
301 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)
302                         if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))
303 #endif
304                           {
305
306                         MCUCR|=(1<<SE)|(1<<SM1);
307                         MCUCR&=~(1<<ISC01);
308                 } else {
309                         MCUCR|=(1<<SE);
310                         MCUCR&=~(1<<SM1);
311                 }
312         //      asm("SLEEP");
313    }
314
315
316 }