2 // Copyright (c) 2017, Tobias Mueller tm(at)tm3d.de
3 // All rights reserved.
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
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
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.
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.
34 #define F_CPU 8000000UL
36 #include <avr/interrupt.h>
37 #include <util/delay.h>
39 #include <avr/sleep.h>
40 #include <avr/pgmspace.h>
41 #include "../common/I2C/USI_TWI_Master.h"
42 #include "../common/I2C/APDS9960.h"
45 extern void EXTERN_SLEEP();
47 uint8_t owid[8]={0x20, 0xA2, 0xD9, 0x84, 0x00, 0x16, 0x23, 0x20};/**/
48 //uint8_t config_info[26]={0x03,13,0x03,13,0x03,13,0x3,15,0x02,20,20,20,20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
49 uint8_t config_info[26]={16,15,17,15,18,15,3,15,0x02,23,23,23,23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
52 #error "Variable not correct"
56 extern uint8_t gcontrol;
57 extern uint8_t reset_indicator;
58 extern uint8_t alarmflag;
62 volatile uint8_t bytes[0x20];
102 volatile pack_t pack;
113 void getLight(uint8_t setparameterr) {
115 r_gain=(1<<(2*gain));
116 r_atime=(256.0-atime)*2.78;
117 APDS9960setGain(gain);
118 APDS9960setATime(atime);
121 APDS9960getRGBC(&light[0],&light[1],&light[2],&light[3]);
155 MCUCR &=~(1<<PUD); //All Pins Pullup...
157 //PORTA&=~((1<<PINA0)|(1<<PINA1)|(1<<PINA2)|(1<<PINA3));
159 ADCSRA=(1<<ADEN)|(1<ADPS0)|(1<<ADPS2);
165 USI_TWI_Master_Initialise();
182 for(uint8_t i=0;i<4;i++){
183 if (pack.convc1&bb1) {
184 if (pack.convc2&(bb)) {pack.bytes[i*2]=0;pack.bytes[i*2+1]=0;}
186 if (pack.convc2&(bb)) {pack.bytes[i*2]=0xFF;pack.bytes[i*2+1]=0xFF;}
194 while (light[3]>0xF000) {
195 //while (light[3]>900) {
201 if (light[3]<0x2222) {
202 //if (light[3]<0x22) {
209 for(uint8_t i=0;i<4;i++) {
210 rlight[i]=(double)light[i]/r_atime/r_gain*70.0;
211 rlight[i]=(log(rlight[i])*1000)+32767.0;
213 cli();pack.A=rlight[0];sei();
214 //cli();pack.A=r_gain;sei();
216 if (pack.CSA2&0x08) //AEH
217 if (pack.bytes[1]>pack.HA) {alarmflag=1;pack.CSA2|=0x20;}
218 if (pack.CSA2&0x04) //AEL
219 if (pack.bytes[1]<pack.LA) {alarmflag=1;pack.CSA2|=0x10;}
223 cli();pack.B=rlight[1];sei();
224 //cli();pack.B=atime;sei();
225 if (pack.CSB2&0x08) //AEH
226 if (pack.bytes[1]>pack.HB) {alarmflag=1;pack.CSB2|=0x20;}
227 if (pack.CSB2&0x04) //AEL
228 if (pack.bytes[1]<pack.LB) {alarmflag=1;pack.CSB2|=0x10;}
232 cli();pack.C=rlight[2];sei();
233 //cli();pack.C=light[3];sei();
234 if (pack.CSC2&0x08) //AEH
235 if (pack.bytes[1]>pack.HC) {alarmflag=1;pack.CSC2|=0x20;}
236 if (pack.CSC2&0x04) //AEL
237 if (pack.bytes[1]<pack.LC) {alarmflag=1;pack.CSC2|=0x10;}
240 cli();pack.D=rlight[3];sei();
241 if (pack.CSD2&0x08) //AEH
242 if (pack.bytes[1]>pack.HD) {alarmflag=1;pack.CSD2|=0x20;}
243 if (pack.CSD2&0x04) //AEL
244 if (pack.bytes[1]<pack.LD) {alarmflag=1;pack.CSD2|=0x10;}
248 //PORTB&=~(1<<PINB1);
252 for(uint8_t i=0;i<4;i++) {
253 if (pack.bytes[8+i*2]&0x80) { //Chanel as output
254 if (pack.bytes[8+i*2]&0x40) {
265 #if defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
266 if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))
268 #if defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__) || defined(__AVR_ATtiny84A__)
269 if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))
273 MCUCR|=(1<<SE)|(1<<SM1);