forked from dgomes/homeGW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
digoo.cpp
91 lines (76 loc) · 2.44 KB
/
digoo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
Written by Diogo Gomes, [email protected]
Copyright (c) 2014 Diogo Gomes. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <digoo.h>
digoo::digoo() {
packet_size = 37;
END_PACKET = 3000;
MIN_PACKET = 650;
}
uint8_t digoo::getId(uint64_t packet) {
uint8_t id = (packet >> 28) & 0xFF;
return id;
}
uint8_t digoo::getBattery(uint64_t packet) {
uint8_t batt = (packet >> 24) & 0x8;
return batt ? 1 : 0;
}
uint8_t digoo::getChannel(uint64_t packet) {
uint8_t channel = (packet >> 24) & 0x3;
return channel+1;
}
float digoo::getTemperature(uint64_t packet) {
int16_t t = packet >> 12 & 0x0FFF;
t = 0x0800 & t ? 0xF000 | t : t;
float temperature = float(t) / 10;
return temperature;
}
uint8_t digoo::getHumidity(uint64_t packet) {
uint8_t humidity = packet & 0xFF;
return humidity;
}
uint8_t digoo::isValidWeather(uint64_t ppacket) {
uint8_t humidity = getHumidity(ppacket);
//Specs http://www.amazon.co.uk/gp/product/B00327G0MA/ref=oh_details_o00_s00_i00
if (humidity > 100) { //sanity check according to specs
return INVALID_HUMIDITY;
}
float temperature = getTemperature(ppacket);
if (temperature < -20.0 || temperature > 50.0) { //sanity check according to specs
return INVALID_TEMPERATURE;
}
return OK;
}
void digoo::processPacket() {
packet = 0;
for(unsigned i=1; i< bitsRead; i++) {
unsigned duration = timings[i];
if(duration > digoo::ONE) {
packet = packet << 1;
bitSet(packet, 0);
} else if(duration > digoo::ZERO) {
packet = packet << 1;
bitClear(packet, 0);
}
}
#ifdef DEBUG
Serial.print("~0x");
Serial.println((unsigned long) packet, HEX);
if (packet == 0) {
for(unsigned i=0; i < bitsRead; i++)
Serial.println(timings[i]);
}
#endif
}