Many changes from 2018
[owSlave2.git] / common / I2C / SHT2xV2.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 \r
34 #define F_CPU 8000000UL\r
35 #include <avr/io.h>\r
36 #include <util/delay.h>\r
37 #include "TWI_Master.h"\r
38 #include "SHT2xV2.h"\r
39 \r
40 uint8_t initSHT2x(){\r
41 \r
42         I2c_StartCondition();\r
43         I2c_WriteByte(0b10000000);\r
44         I2c_WriteByte(0xFE);//Softreset \r
45         I2c_StopCondition();\r
46         //Default 12 Bit RH 14 Bit T\r
47         return 1;\r
48 }\r
49 \r
50 uint8_t crcmove(uint8_t crc) {\r
51         uint8_t bit;\r
52         for(bit=8;bit>0;--bit) {\r
53                 if (crc&0x80) crc=(crc<<1)^  0x131;\r
54                 else crc=(crc<<1);\r
55         }\r
56         return crc;\r
57 }\r
58 \r
59 uint8_t calcCRCSHT2x(uint8_t b1, uint8_t b2) {\r
60         uint8_t crc=0;\r
61         crc^=b1;\r
62         crc=crcmove(crc);\r
63         crc^=b2;\r
64         return crcmove(crc);\r
65         \r
66 }\r
67 \r
68 \r
69 \r
70 uint8_t getSHT2xHumTemp(double *temp,double *hum) {\r
71         uint8_t ret=1;\r
72         I2c_StartCondition();\r
73         I2c_WriteByte(0b10000000);\r
74         I2c_WriteByte(0xF3); //No Hold Temp\r
75         _delay_us(20);\r
76         I2c_StopCondition();\r
77         _delay_ms(85);\r
78         I2c_StartCondition();\r
79         I2c_WriteByte (0b10000001);\r
80         uint8_t t1 =I2c_ReadByte(ACK);\r
81         uint8_t t2 =I2c_ReadByte(ACK);\r
82         uint8_t tc =I2c_ReadByte(NO_ACK);\r
83         I2c_StopCondition();\r
84 \r
85         I2c_StartCondition();\r
86         I2c_WriteByte(0b10000000);\r
87         I2c_WriteByte(0xF5); //No Hold Hum\r
88         _delay_us(20);\r
89         I2c_StopCondition();\r
90         _delay_ms(29);\r
91         I2c_StartCondition();\r
92         I2c_WriteByte (0b10000001);\r
93         uint8_t f1 =I2c_ReadByte(ACK);\r
94         uint8_t f2 =I2c_ReadByte(ACK);\r
95         uint8_t fc =I2c_ReadByte(NO_ACK);\r
96         I2c_StopCondition();\r
97         if (calcCRCSHT2x(t1,t2)==tc)\r
98                 *temp=-46.85 + 175.72/65536 *(double)(((uint16_t)t1<<8)|(t2&0xF8));\r
99         else ret=0;\r
100         if (calcCRCSHT2x(f1,f2)==fc) {\r
101                 *hum=-6.0+125.0/65536*(double)(((uint16_t)f1<<8)|(f2&0xF8));\r
102                 *hum=(*hum)-((100.0/(*hum)*2.5)-2.5);\r
103                 }\r
104         else ret=0;\r
105         //*temp=20;\r
106         //*hum=10;\r
107         return ret;\r
108 }\r
109 \r