-
Notifications
You must be signed in to change notification settings - Fork 71
/
IButton.h
309 lines (273 loc) · 8.06 KB
/
IButton.h
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
//- -----------------------------------------------------------------------------------------------------------------------
// AskSin++
// 2018-05-03 papa Creative Commons - http://creativecommons.org/licenses/by-nc-sa/3.0/de/
//- -----------------------------------------------------------------------------------------------------------------------
#ifndef __IBUTTON_H__
#define __IBUTTON_H__
#include "MultiChannelDevice.h"
#include "Register.h"
namespace as {
DEFREGISTER(IButtonReg1,CREG_AES_ACTIVE,0xe0,0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7)
class IButtonList1 : public RegList1<IButtonReg1> {
public:
IButtonList1 (uint16_t addr) : RegList1<IButtonReg1>(addr) {}
void defaults () {
clear();
}
};
template<class HALTYPE,int PEERCOUNT,class List0Type=List0>
class IButtonChannel : public Channel<HALTYPE,IButtonList1,EmptyList,DefList4,PEERCOUNT,List0Type>, Alarm {
enum { none=0, released, longpressed, longreleased };
uint8_t state, matches, repeatcnt;
public:
typedef Channel<HALTYPE,IButtonList1,EmptyList,DefList4,PEERCOUNT,List0Type> BaseChannel;
IButtonChannel () : BaseChannel(), Alarm(0), state(0), matches(0),repeatcnt(0) {}
virtual ~IButtonChannel () {}
virtual void trigger (__attribute__((unused)) AlarmClock& clock) {
state = 0;
this->changed(true);
}
uint8_t status () const {
return state;
}
uint8_t flags () const {
return 0;
}
void start () {
matches <<= 1;
}
bool check (uint8_t* addr) {
if( free() == false && isID(addr) == true ) {
matches |= 0b00000001;
return true;
}
return false;
}
void finish () {
// channel is in remote mode
if( this->device().getList0().buttonMode() == 0 ) {
uint8_t s = none;
// 3 or 6 matches are longpress and longlongpress
if( (matches & 0b00111111) == 0b00000111 || (matches & 0b00111111) == 0b00111111 ) {
s = longpressed;
DPRINTLN(F("longpressed"));
// clear longlong
matches &= 0b11000111;
}
// check for long release
else if( (matches & 0b00001111) == 0b00001110 ) {
s = longreleased;
DPRINTLN(F("longreleased"));
}
// check for release
else if( (matches & 0b00000011) == 0b00000010 ) {
s = released;
DPRINTLN(F("released"));
}
if( s != none ) {
RemoteEventMsg& msg = (RemoteEventMsg&)this->device().message();
msg.init(this->device().nextcount(),this->number(),repeatcnt,(s==longreleased || s==longpressed),this->device().battery().low());
if( s == released || s == longreleased) {
// send the message to every peer
this->device().sendPeerEvent(msg,*this);
repeatcnt++;
}
else if (s == longpressed) {
// broadcast the message
this->device().broadcastPeerEvent(msg,*this);
}
}
}
// channel is in state mode
else {
uint8_t newstate = state;
uint8_t mask = (matches & 0b00000111);
if( mask == 0b00000111) newstate = 100;
else if( mask == 0b00000000) newstate = 0;
if( state != newstate ) {
state = newstate;
SensorEventMsg& msg = (SensorEventMsg&)this->device().message();
msg.init(this->device().nextcount(),this->number(),repeatcnt++,state,this->device().battery().low());
this->device().sendPeerEvent(msg,*this);
}
}
}
bool match (uint8_t* addr) {
start();
bool res = check(addr);
finish();
return res;
}
bool isID (uint8_t* buf) {
IButtonList1 l = this->getList1();
for( uint8_t n=0; n<8; ++n ) {
if( l.readRegister(0xe0+n) != buf[n] ) {
return false;
}
}
return true;
}
void storeID (uint8_t* buf) {
if( learn() == true ) {
for( uint8_t n=0; n<8; ++n ) {
this->getList1().writeRegister(0xe0+n,buf[n]);
}
state = 0;
this->changed(true);
sysclock.cancel(*this);
}
}
bool free () {
return this->getList1().readRegister(0xe0) == 0;
}
bool learn () const {
return state == 200;
}
bool process (const ActionSetMsg& msg) {
state = msg.value();
this->changed(true);
if( state != 0 ) {
set(seconds2ticks(60));
sysclock.add(*this);
}
return true;
}
bool process (__attribute__((unused)) const RemoteEventMsg& msg) { return false; }
bool process (__attribute__((unused)) const SensorEventMsg& msg) { return false; }
bool process (__attribute__((unused)) const ActionCommandMsg& msg) { return false; }
};
template <class IButtonDev,class IButtonChannel,int READER_PIN,int LED_GREEN,int LED_RED>
class IButtonScanner : public Alarm {
OneWire ow;
IButtonDev& dev;
DualStatusLed<LED_GREEN,LED_RED> led;
uint8_t cnt;
public:
IButtonScanner (IButtonDev& d) : Alarm(millis2ticks(500)), ow(READER_PIN), dev(d), cnt(0) {
led.init();
}
virtual ~IButtonScanner () {}
IButtonChannel* learning () {
for( uint8_t i=0; i<dev.ibuttonCount(); ++i ) {
IButtonChannel& bc = dev.ibuttonChannel(i);
if( bc.learn() == true ) {
return &bc;
}
}
return 0;
}
IButtonChannel* matches (uint8_t* addr) {
for( uint8_t i=0; i<dev.ibuttonCount(); ++i ) {
IButtonChannel& bc = dev.ibuttonChannel(i);
if( bc.match(addr) == true ) {
return &bc;
}
}
return 0;
}
IButtonChannel* find (uint8_t* addr) {
for( uint8_t i=0; i<dev.ibuttonCount(); ++i ) {
IButtonChannel& bc = dev.ibuttonChannel(i);
if( bc.isID(addr) == true ) {
return &bc;
}
}
return 0;
}
bool scan (uint8_t* addr) {
ow.reset_search();
if ( ow.search(addr) == false || OneWire::crc8(addr, 7) != addr[7] ) {
memset(addr,0,8);
return false;
}
return true;
}
void start () {
for( uint8_t i=0; i<dev.ibuttonCount(); ++i ) {
IButtonChannel& bc = dev.ibuttonChannel(i);
bc.start();
}
}
void finish () {
for( uint8_t i=0; i<dev.ibuttonCount(); ++i ) {
IButtonChannel& bc = dev.ibuttonChannel(i);
bc.finish();
}
}
bool check (uint8_t* addr) {
bool res = false;
for( uint8_t i=0; i<dev.ibuttonCount(); ++i ) {
IButtonChannel& bc = dev.ibuttonChannel(i);
res |= bc.check(addr);
}
return res;
}
void scanMulti () {
uint8_t found=0;
uint8_t known=0;
uint8_t addr[8];
start();
ow.reset_search();
while( ow.search(addr) == 1 ) {
if( OneWire::crc8(addr,7) == addr[7] ) {
if( addr[0] == 0x01 ) { // family code DS2401/DS1990A
found++;
if( check(addr) == true ) {
known++;
}
}
}
}
finish();
// signal for remote mode
if( found > 0 && dev.getList0().buttonMode() == 0 ) {
if( found == known ) {
led.ledOn(millis2ticks(500),0);
}
else {
led.ledOn(0,millis2ticks(500));
}
}
}
bool learn (IButtonChannel* lc) {
uint8_t addr[8];
ow.reset_search();
while( ow.search(addr) == 1 ) {
if( OneWire::crc8(addr,7) == addr[7] ) {
if( addr[0] == 0x01 ) { // family code DS2401/DS1990A
if( find(addr) == 0 ) {
lc->storeID(addr);
return true;
}
}
}
}
return false;
}
void trigger (AlarmClock& clock) {
// reactivate
set(millis2ticks(250));
clock.add(*this);
++cnt;
// check if we have a learning channel
IButtonChannel* lc = learning();
if( lc != 0 ) {
uint8_t cycle = cnt & 0x01;
led.ledOn(cycle == 0 ? tick : 0, cycle == 0 ? 0 : tick);
// if we have learned a new ID
if( learn(lc) == true ) {
clock.cancel(*this);
set(seconds2ticks(5));
led.ledOff();
led.ledOn(tick);
clock.add(*this);
}
}
else {
// scan the bus now
scanMulti();
}
}
};
}
#endif