e668064fd0069c62ca5545f07c41513f625cec9e
[owSlave2.git] / DS18B20_DS2438 / DS18B20_DS2438.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/MAX44009.h"
43 #include "../common/I2C/SHT2x.h"
44
45
46 extern void OWINIT();
47
48
49
50 uint8_t owid1[8]={0x28, 0xA3, 0xD9, 0x84, 0x00, 0x16, 0x05, 0x18};/**/
51 uint8_t owid2[8]={0x26, 0xA2, 0xD9, 0x84, 0x00, 0x00, 0x01, 0x77};/**/
52         
53 #if (owid>128) 
54 #error "Variable not correct"
55 #endif
56
57 extern uint8_t mode;
58 extern uint8_t gcontrol;
59 extern uint8_t reset_indicator;
60 extern uint8_t alarmflag;
61 volatile uint8_t wdcounter;
62
63
64 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)
65 ISR(WATCHDOG_vect) {
66 #else
67 ISR(WDT_vect) {
68 #endif 
69         //sleep_disable();          // Disable Sleep on Wakeup
70         wdcounter++;
71         if (reset_indicator==1) reset_indicator++;
72         else if (reset_indicator==2) mode=0;
73 /*      if (timeout==2) {
74                 DIS_TIMER;
75                 EN_OWINT;
76                 mode=OWM_SLEEP;
77         }
78         timeout++;*/
79         //sleep_enable();           // Enable Sleep Mode
80
81 }
82
83
84 typedef union {
85         volatile uint8_t bytes[8];
86         struct {
87                 uint16_t temp;  //0
88                 uint8_t TH;  //2
89                 uint8_t TL;  //3
90                 uint8_t config;  //4
91                 uint8_t rrFF; //5
92                 uint8_t rr00; //6
93                 uint8_t rr10; //7
94         };
95 } pack1_t;
96 volatile pack1_t pack1;
97
98
99
100 typedef union {
101         #if  defined(__AVR_ATtiny25__)
102         volatile uint8_t bytes[16];
103         #else
104         volatile uint8_t bytes[64];
105         #endif
106         struct {
107                 uint8_t status;  //1
108                 int16_t temp;  //2
109                 uint16_t voltage;  //4
110                 uint16_t current;  //6
111                 uint8_t threshold; //8
112                 
113                 uint8_t page1[8]; //9
114                 #if  defined(__AVR_ATtiny25__)
115                 #else
116                 uint8_t page2[8]; //17
117                 uint8_t page3[8]; //25
118                 uint8_t page4[8];  //33
119                 uint8_t page5[8];  //41
120                 uint8_t page6[8];  //49
121                 uint8_t page7[8];  //57
122                 //uint8_t crc;  //65
123                 #endif
124         };
125 } pack2_t;
126 volatile pack2_t pack2;
127
128
129
130
131 volatile int16_t am2302_temp;
132 volatile uint16_t am2302_hum;
133
134
135 uint8_t userRegister[1];
136 int16_t sRH,sT;
137 volatile double temperatureC,humidityRH;
138 volatile double l;
139
140
141 int main(void){
142     PRR|=(1<<PRADC);  // adc for save Power
143         pack1.temp=0x0550;
144         pack1.config=0x7F;
145         pack1.TH=75;
146         pack1.TL=70;
147         pack1.rrFF=0xFF;
148         pack1.rr00=0;
149         pack1.rr10=0x10;
150         PORTA=0xFF;
151         PORTB=0xFF;
152         OWINIT();
153
154         MCUCR &=~(1<<PUD); //All Pins Pullup...
155         MCUCR |=(1<<BODS);
156
157         WDTCSR |= ((1<<WDCE) );   // Enable the WD Change Bit//| (1<<WDE)
158         WDTCSR |=   (1<<WDIE) |              // Enable WDT Interrupt
159         (1<<WDP2) | (1<<WDP1);   // Set Timeout to ~1 seconds
160
161         MCUSR=0;
162         USI_TWI_Master_Initialise();
163         SHT2x_SoftReset();
164         SHT2x_ReadUserRegister(userRegister);
165         //(userRegister & ~SHT2x_RES_MASK) | SHT2x_RES_10_13BIT;
166         SHT2x_WriteUserRegister(userRegister); //write changed user reg
167         // --- measure humidity with "Hold Master Mode (HM)" ---
168         SHT2x_MeasurePoll(HUMIDITY, &sRH);
169         // --- measure temperature with "Polling Mode" (no hold master) ---
170         SHT2x_MeasurePoll(TEMP, &sT);
171         //-- calculate humidity and temperature --
172         temperatureC = SHT2x_CalcTemperatureC(sT);
173         humidityRH = SHT2x_CalcRH(sRH);
174         
175         gcontrol=1;
176         sei();
177     while(1)   {
178                 if (wdcounter>0) {
179                         SHT2x_MeasurePoll(HUMIDITY, &sRH);
180                         // --- measure temperature with "Polling Mode" (no hold master) ---
181                         SHT2x_MeasurePoll(TEMP, &sT);
182                         //-- calculate humidity and temperature --
183                         temperatureC = SHT2x_CalcTemperatureC(sT)*10.0;
184                         humidityRH = SHT2x_CalcRH(sRH)*10.0;
185                         double hhum=(1.0546-0.000216*temperatureC)*(humidityRH);
186                         am2302_hum=0.318*hhum +76.0;
187                         am2302_temp=temperatureC*25.6;
188                         wdcounter=0;
189                 }
190         
191                 if (gcontrol==1) {
192                         l=MAX44009getlux();             
193                         if (l<0.030) l=0.030; //Darf nicht 0 sein. minimum -35°C Sensor minimum 0.045
194                         //double l=1000;
195                         l=log(l)*10*16;
196                         uint16_t w=l;
197                         uint8_t t8=w>>4;
198                         uint8_t af=0;
199                         if (t8>pack1.TH) af=1;
200                         if (t8<=pack1.TL) af=1; 
201                         cli();
202                         pack1.temp=w;
203                         //pack.temp++;
204                         alarmflag=af;
205                         sei();                  
206                         gcontrol=0;
207                 }
208                 if ((gcontrol==2)||(gcontrol==3)) {
209                         gcontrol=0;
210                         
211                 }
212
213                 
214 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)
215                         if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))
216 #endif                  
217 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)
218                         if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))
219 #endif
220                           {
221
222                         MCUCR|=(1<<SE)|(1<<SM1);
223                         MCUCR&=~(1<<ISC01);
224                 } else {
225                         MCUCR|=(1<<SE);
226                         MCUCR&=~(1<<SM1);
227                 }
228                 //MCUCR&=~(1<<ISC01);
229                 asm("SLEEP");
230    }
231
232
233 }