-
Notifications
You must be signed in to change notification settings - Fork 103
/
LimiTTer.ino
692 lines (609 loc) · 19.9 KB
/
LimiTTer.ino
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
/* LimiTTer sketch for the Arduino UNO/Pro-Mini.
It scans the Freestyle Libre Sensor every 5 minutes
and sends the data to the xDrip Android app. You can
see the data in the serial monitor of Arduino IDE, too.
If you want another scan interval, simply change the
SLEEP_TIME value.
This sketch is based on a sample sketch for the BM019 module
from Solutions Cubed.
Wiring for UNO / Pro-Mini:
Arduino BM019 BLE-HM11
IRQ: Pin 9 DIN: pin 2
SS: pin 10 SS: pin 3
MOSI: pin 11 MOSI: pin 5
MISO: pin 12 MISO: pin4
SCK: pin 13 SCK: pin 6
I/O: pin 2 BLE_CHK: pin 15
I/O: pin 3 VCC: pin 9
I/O: pin 5 TX: pin 2
I/O: pin 6 RX: pin 4
*/
#include <SPI.h>
#include <SoftwareSerial.h>
#include <avr/sleep.h>
#include <avr/power.h>
#include <avr/wdt.h>
#define MIN_V 3450 // battery empty level
#define MAX_V 4050 // battery full level
#define MAX_BLE_WAIT 80 // Maximum bluetooth re-connect time in seconds
#define SLEEP_TIME 34 // SleepTime (7 points are about 1 minute)
#define MAX_NFC_READTRIES 10 // Amount of tries for every nfc block-scan
const int SSPin = 10; // Slave Select pin
const int IRQPin = 9; // Sends wake-up pulse for BM019
const int NFCPin1 = 7; // Power pin BM019
const int NFCPin2 = 8; // Power pin BM019
const int NFCPin3 = 4; // Power pin BM019
const int BLEPin = 3; // BLE power pin.
const int BLEState = 2; // BLE connection state pin
const int MOSIPin = 11;
const int SCKPin = 13;
byte RXBuffer[24];
byte NFCReady = 0; // used to track NFC state
byte FirstRun = 1;
byte batteryLow;
int batteryPcnt;
long batteryMv;
int noDiffCount = 0;
int sensorMinutesElapse;
float lastGlucose;
float trend[16];
SoftwareSerial ble_Serial(5, 6); // RX | TX
void setup() {
pinMode(IRQPin, OUTPUT);
digitalWrite(IRQPin, HIGH);
pinMode(SSPin, OUTPUT);
digitalWrite(SSPin, HIGH);
pinMode(NFCPin1, OUTPUT);
digitalWrite(NFCPin1, HIGH);
pinMode(NFCPin2, OUTPUT);
digitalWrite(NFCPin2, HIGH);
pinMode(NFCPin3, OUTPUT);
digitalWrite(NFCPin3, HIGH);
pinMode(BLEPin, OUTPUT);
digitalWrite(BLEPin, HIGH);
pinMode(BLEState, INPUT);
pinMode(MOSIPin, OUTPUT);
pinMode(SCKPin, OUTPUT);
Serial.begin(9600);
long bleBaudrate[8] = {1200,2400,4800,9600,19200,38400,57600,115200};
for (int i=0; i<8; i++)
{
ble_Serial.begin(bleBaudrate[i]);
ble_Serial.write("AT");
delay(500);
char c = ble_Serial.read();
char d = ble_Serial.read();
if (c == 'O' && d == 'K')
break;
}
delay(100);
ble_Serial.write("AT+NAMELimiTTer");
delay(500);
ble_Serial.write("AT+RESET");
delay(500);
SPI.begin();
SPI.setDataMode(SPI_MODE0);
SPI.setBitOrder(MSBFIRST);
SPI.setClockDivider(SPI_CLOCK_DIV32);
delay(10); // send a wake up
digitalWrite(IRQPin, LOW); // pulse to put the
delayMicroseconds(100); // BM019 into SPI
digitalWrite(IRQPin, HIGH); // mode
delay(10);
digitalWrite(IRQPin, LOW);
}
void restartBLE() {
digitalWrite(BLEPin, HIGH);
digitalWrite(5, HIGH);
digitalWrite(6, HIGH);
delay(500);
ble_Serial.write("AT+RESET");
delay(500);
}
void SetProtocol_Command() {
digitalWrite(SSPin, LOW);
SPI.transfer(0x00); // SPI control byte to send command to CR95HF
SPI.transfer(0x02); // Set protocol command
SPI.transfer(0x02); // length of data to follow
SPI.transfer(0x01); // code for ISO/IEC 15693
SPI.transfer(0x0D); // Wait for SOF, 10% modulation, append CRC
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
while(RXBuffer[0] != 8)
{
RXBuffer[0] = SPI.transfer(0x03); // Write 3 until
RXBuffer[0] = RXBuffer[0] & 0x08; // bit 3 is set
}
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
SPI.transfer(0x02); // SPI control byte for read
RXBuffer[0] = SPI.transfer(0); // response code
RXBuffer[1] = SPI.transfer(0); // length of data
digitalWrite(SSPin, HIGH);
if ((RXBuffer[0] == 0) & (RXBuffer[1] == 0)) // is response code good?
{
Serial.println("Protocol Set Command OK");
NFCReady = 1; // NFC is ready
}
else
{
Serial.println("Protocol Set Command FAIL");
NFCReady = 0; // NFC not ready
}
}
void Inventory_Command() {
digitalWrite(SSPin, LOW);
SPI.transfer(0x00); // SPI control byte to send command to CR95HF
SPI.transfer(0x04); // Send Receive CR95HF command
SPI.transfer(0x03); // length of data that follows is 0
SPI.transfer(0x26); // request Flags byte
SPI.transfer(0x01); // Inventory Command for ISO/IEC 15693
SPI.transfer(0x00); // mask length for inventory command
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
while(RXBuffer[0] != 8)
{
RXBuffer[0] = SPI.transfer(0x03); // Write 3 until
RXBuffer[0] = RXBuffer[0] & 0x08; // bit 3 is set
}
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
SPI.transfer(0x02); // SPI control byte for read
RXBuffer[0] = SPI.transfer(0); // response code
RXBuffer[1] = SPI.transfer(0); // length of data
for (byte i=0;i<RXBuffer[1];i++)
RXBuffer[i+2]=SPI.transfer(0); // data
digitalWrite(SSPin, HIGH);
delay(1);
if (RXBuffer[0] == 128) // is response code good?
{
Serial.println("Sensor in range ... OK");
NFCReady = 2;
}
else
{
Serial.println("Sensor out of range");
NFCReady = 1;
}
}
float Read_Memory() {
byte oneBlock[8];
String hexPointer = "";
String trendValues = "";
String hexMinutes = "";
String elapsedMinutes = "";
float trendOneGlucose;
float trendTwoGlucose;
float currentGlucose;
float shownGlucose;
float averageGlucose = 0;
int glucosePointer;
int validTrendCounter = 0;
float validTrend[16];
byte readError = 0;
int readTry;
for ( int b = 3; b < 16; b++) {
readTry = 0;
do {
readError = 0;
digitalWrite(SSPin, LOW);
SPI.transfer(0x00); // SPI control byte to send command to CR95HF
SPI.transfer(0x04); // Send Receive CR95HF command
SPI.transfer(0x03); // length of data that follows
SPI.transfer(0x02); // request Flags byte
SPI.transfer(0x20); // Read Single Block command for ISO/IEC 15693
SPI.transfer(b); // memory block address
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
while(RXBuffer[0] != 8)
{
RXBuffer[0] = SPI.transfer(0x03); // Write 3 until
RXBuffer[0] = RXBuffer[0] & 0x08; // bit 3 is set
}
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
SPI.transfer(0x02); // SPI control byte for read
RXBuffer[0] = SPI.transfer(0); // response code
RXBuffer[1] = SPI.transfer(0); // length of data
for (byte i=0;i<RXBuffer[1];i++)
RXBuffer[i+2]=SPI.transfer(0); // data
if (RXBuffer[0] != 128)
readError = 1;
digitalWrite(SSPin, HIGH);
delay(1);
for (int i = 0; i < 8; i++)
oneBlock[i] = RXBuffer[i+3];
char str[24];
unsigned char * pin = oneBlock;
const char * hex = "0123456789ABCDEF";
char * pout = str;
for(; pin < oneBlock+8; pout+=2, pin++) {
pout[0] = hex[(*pin>>4) & 0xF];
pout[1] = hex[ *pin & 0xF];
}
pout[0] = 0;
if (!readError) // is response code good?
{
Serial.println(str);
trendValues += str;
}
readTry++;
} while( (readError) && (readTry < MAX_NFC_READTRIES) );
}
readTry = 0;
do {
readError = 0;
digitalWrite(SSPin, LOW);
SPI.transfer(0x00); // SPI control byte to send command to CR95HF
SPI.transfer(0x04); // Send Receive CR95HF command
SPI.transfer(0x03); // length of data that follows
SPI.transfer(0x02); // request Flags byte
SPI.transfer(0x20); // Read Single Block command for ISO/IEC 15693
SPI.transfer(39); // memory block address
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
while(RXBuffer[0] != 8)
{
RXBuffer[0] = SPI.transfer(0x03); // Write 3 until
RXBuffer[0] = RXBuffer[0] & 0x08; // bit 3 is set
}
digitalWrite(SSPin, HIGH);
delay(1);
digitalWrite(SSPin, LOW);
SPI.transfer(0x02); // SPI control byte for read
RXBuffer[0] = SPI.transfer(0); // response code
RXBuffer[1] = SPI.transfer(0); // length of data
for (byte i=0;i<RXBuffer[1];i++)
RXBuffer[i+2]=SPI.transfer(0); // data
if (RXBuffer[0] != 128)
readError = 1;
digitalWrite(SSPin, HIGH);
delay(1);
for (int i = 0; i < 8; i++)
oneBlock[i] = RXBuffer[i+3];
char str[24];
unsigned char * pin = oneBlock;
const char * hex = "0123456789ABCDEF";
char * pout = str;
for(; pin < oneBlock+8; pout+=2, pin++) {
pout[0] = hex[(*pin>>4) & 0xF];
pout[1] = hex[ *pin & 0xF];
}
pout[0] = 0;
if (!readError)
elapsedMinutes += str;
readTry++;
} while( (readError) && (readTry < MAX_NFC_READTRIES) );
if (!readError)
{
hexMinutes = elapsedMinutes.substring(10,12) + elapsedMinutes.substring(8,10);
hexPointer = trendValues.substring(4,6);
sensorMinutesElapse = strtoul(hexMinutes.c_str(), NULL, 16);
glucosePointer = strtoul(hexPointer.c_str(), NULL, 16);
Serial.println("");
Serial.print("Glucose pointer: ");
Serial.print(glucosePointer);
Serial.println("");
int ii = 0;
for (int i=8; i<=200; i+=12) {
if (glucosePointer == ii)
{
if (glucosePointer == 0)
{
String trendNow = trendValues.substring(190,192) + trendValues.substring(188,190);
String trendOne = trendValues.substring(178,180) + trendValues.substring(176,178);
String trendTwo = trendValues.substring(166,168) + trendValues.substring(164,166);
currentGlucose = Glucose_Reading(strtoul(trendNow.c_str(), NULL ,16));
trendOneGlucose = Glucose_Reading(strtoul(trendOne.c_str(), NULL ,16));
trendTwoGlucose = Glucose_Reading(strtoul(trendTwo.c_str(), NULL ,16));
if (FirstRun == 1)
lastGlucose = currentGlucose;
if (((lastGlucose - currentGlucose) > 50) || ((currentGlucose - lastGlucose) > 50))
{
if (((lastGlucose - trendOneGlucose) > 50) || ((trendOneGlucose - lastGlucose) > 50))
currentGlucose = trendTwoGlucose;
else
currentGlucose = trendOneGlucose;
}
}
else if (glucosePointer == 1)
{
String trendNow = trendValues.substring(i-10,i-8) + trendValues.substring(i-12,i-10);
String trendOne = trendValues.substring(190,192) + trendValues.substring(188,190);
String trendTwo = trendValues.substring(178,180) + trendValues.substring(176,178);
currentGlucose = Glucose_Reading(strtoul(trendNow.c_str(), NULL ,16));
trendOneGlucose = Glucose_Reading(strtoul(trendOne.c_str(), NULL ,16));
trendTwoGlucose = Glucose_Reading(strtoul(trendTwo.c_str(), NULL ,16));
if (FirstRun == 1)
lastGlucose = currentGlucose;
if (((lastGlucose - currentGlucose) > 50) || ((currentGlucose - lastGlucose) > 50))
{
if (((lastGlucose - trendOneGlucose) > 50) || ((trendOneGlucose - lastGlucose) > 50))
currentGlucose = trendTwoGlucose;
else
currentGlucose = trendOneGlucose;
}
}
else
{
String trendNow = trendValues.substring(i-10,i-8) + trendValues.substring(i-12,i-10);
String trendOne = trendValues.substring(i-22,i-20) + trendValues.substring(i-24,i-22);
String trendTwo = trendValues.substring(i-34,i-32) + trendValues.substring(i-36,i-34);
currentGlucose = Glucose_Reading(strtoul(trendNow.c_str(), NULL ,16));
trendOneGlucose = Glucose_Reading(strtoul(trendOne.c_str(), NULL ,16));
trendTwoGlucose = Glucose_Reading(strtoul(trendTwo.c_str(), NULL ,16));
if (FirstRun == 1)
lastGlucose = currentGlucose;
if (((lastGlucose - currentGlucose) > 50) || ((currentGlucose - lastGlucose) > 50))
{
if (((lastGlucose - trendOneGlucose) > 50) || ((trendOneGlucose - lastGlucose) > 50))
currentGlucose = trendTwoGlucose;
else
currentGlucose = trendOneGlucose;
}
}
}
ii++;
}
for (int i=8, j=0; i<200; i+=12,j++) {
String t = trendValues.substring(i+2,i+4) + trendValues.substring(i,i+2);
trend[j] = Glucose_Reading(strtoul(t.c_str(), NULL ,16));
}
for (int i=0; i<16; i++)
{
if (((lastGlucose - trend[i]) > 50) || ((trend[i] - lastGlucose) > 50)) // invalid trend check
continue;
else
{
validTrend[validTrendCounter] = trend[i];
validTrendCounter++;
}
}
if (validTrendCounter > 0)
{
for (int i=0; i < validTrendCounter; i++)
averageGlucose += validTrend[i];
averageGlucose = averageGlucose / validTrendCounter;
if (((lastGlucose - currentGlucose) > 50) || ((currentGlucose - lastGlucose) > 50))
shownGlucose = averageGlucose; // If currentGlucose is still invalid take the average value
else
shownGlucose = currentGlucose; // All went well. Take and show the current value
}
else
shownGlucose = currentGlucose; // If all is going wrong, nevertheless take and show a value
if ((lastGlucose == currentGlucose) && (sensorMinutesElapse > 21000)) // Expired sensor check
noDiffCount++;
if (lastGlucose != currentGlucose) // Reset the counter
noDiffCount = 0;
if (currentGlucose != 0)
lastGlucose = currentGlucose;
NFCReady = 2;
FirstRun = 0;
if (noDiffCount > 5)
return 0;
else
return shownGlucose;
}
else
{
Serial.print("Read Memory Block Command FAIL");
NFCReady = 0;
readError = 0;
}
return 0;
}
float Glucose_Reading(unsigned int val) {
int bitmask = 0x0FFF;
return ((val & bitmask) / 8.5);
}
String Build_Packet(float glucose) {
// Let's build a String which xDrip accepts as a BTWixel packet
unsigned long raw = glucose*1000; // raw_value
String packet = "";
packet = String(raw);
packet += ' ';
packet += "216";
packet += ' ';
packet += String(batteryPcnt);
packet += ' ';
packet += String(sensorMinutesElapse);
Serial.println("");
Serial.print("Glucose level: ");
Serial.print(glucose);
Serial.println("");
Serial.print("15 minutes-trend: ");
Serial.println("");
for (int i=0; i<16; i++)
{
Serial.print(trend[i]);
Serial.println("");
}
Serial.print("Battery level: ");
Serial.print(batteryPcnt);
Serial.print("%");
Serial.println("");
Serial.print("Battery mVolts: ");
Serial.print(batteryMv);
Serial.print("mV");
Serial.println("");
Serial.print("Sensor lifetime: ");
Serial.print(sensorMinutesElapse);
Serial.print(" minutes elapsed");
Serial.println("");
return packet;
}
void Send_Packet(String packet) {
if ((packet.substring(0,1) != "0"))
{
Serial.println("");
Serial.print("xDrip packet: ");
Serial.print(packet);
Serial.println("");
ble_Serial.print(packet);
delay(1000);
}
else
{
Serial.println("");
Serial.print("Packet not sent! Maybe a corrupt scan or an expired sensor.");
Serial.println("");
delay(1000);
}
}
int readVcc() {
// Read 1.1V reference against AVcc
// set the reference to Vcc and the measurement to the internal 1.1V reference
#if defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
ADMUX = _BV(REFS0) | _BV(MUX4) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1);
#elif defined (__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__)
ADMUX = _BV(MUX5) | _BV(MUX0);
#elif defined (__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
ADMUX = _BV(MUX3) | _BV(MUX2);
#else
ADMUX = _BV(REFS0) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1);
#endif
delay(2); // Wait for Vref to settle
ADCSRA |= _BV(ADSC); // Start conversion
while (bit_is_set(ADCSRA,ADSC)); // measuring
uint8_t low = ADCL; // must read ADCL first - it then locks ADCH
uint8_t high = ADCH; // unlocks both
batteryMv = (high<<8) | low;
batteryMv = 1125300L / batteryMv; // Calculate Vcc (in mV); 1125300 = 1.1*1023*1000
int batteryLevel = min(map(batteryMv, MIN_V, MAX_V, 0, 100), 100); // Convert voltage to percentage
return batteryLevel;
}
void goToSleep(const byte interval, int time) {
SPI.end();
digitalWrite(MOSIPin, LOW);
digitalWrite(SCKPin, LOW);
digitalWrite(NFCPin1, LOW); // Turn off all power sources completely
digitalWrite(NFCPin2, LOW); // for maximum power save on BM019.
digitalWrite(NFCPin3, LOW);
digitalWrite(IRQPin, LOW);
digitalWrite(5, LOW);
digitalWrite(6, LOW);
digitalWrite(BLEPin, LOW);
digitalWrite(BLEState, LOW);
for (int i=0; i<time; i++) {
MCUSR = 0;
WDTCSR |= 0b00011000;
WDTCSR = 0b01000000 | interval;
set_sleep_mode (SLEEP_MODE_PWR_DOWN);
sleep_enable();
sleep_cpu();
}
}
ISR(WDT_vect)
{
wdt_disable();
}
void wakeUp() {
sleep_disable();
power_all_enable();
wdt_reset();
restartBLE();
for (int i=0; ( (i < MAX_BLE_WAIT) && (digitalRead(BLEState) != HIGH) ); i++)
{
delay(1000);
Serial.print("Waiting for BLE connection ...");
Serial.println("");
}
digitalWrite(NFCPin1, HIGH);
digitalWrite(NFCPin2, HIGH);
digitalWrite(NFCPin3, HIGH);
digitalWrite(IRQPin, HIGH);
SPI.begin();
SPI.setDataMode(SPI_MODE0);
SPI.setBitOrder(MSBFIRST);
SPI.setClockDivider(SPI_CLOCK_DIV32);
delay(10);
digitalWrite(IRQPin, LOW);
delayMicroseconds(100);
digitalWrite(IRQPin, HIGH);
delay(10);
digitalWrite(IRQPin, LOW);
NFCReady = 0;
}
void lowBatterySleep() {
SPI.end();
digitalWrite(MOSIPin, LOW);
digitalWrite(SCKPin, LOW);
digitalWrite(NFCPin1, LOW); // Turn off all power sources completely
digitalWrite(NFCPin2, LOW); // for maximum power save on BM019.
digitalWrite(NFCPin3, LOW);
digitalWrite(IRQPin, LOW);
digitalWrite(5, LOW);
digitalWrite(6, LOW);
digitalWrite(BLEPin, LOW);
Serial.print("Battery low! LEVEL: ");
Serial.print(batteryPcnt);
Serial.print("%");
Serial.println("");
delay(100);
// Switch LED on and then off shortly
for (int i=0; i<10; i++) {
digitalWrite(SCKPin, HIGH);
delay(50);
digitalWrite(SCKPin, LOW);
delay(100);
}
MCUSR = 0;
WDTCSR |= 0b00011000;
WDTCSR = 0b01000000 | 0b100001;
set_sleep_mode (SLEEP_MODE_PWR_DOWN);
sleep_enable();
sleep_cpu();
sleep_disable();
power_all_enable();
wdt_reset();
}
void loop() {
batteryPcnt = readVcc();
if (batteryPcnt < 1)
batteryLow = 1;
while (batteryLow == 1)
{
lowBatterySleep();
batteryPcnt = readVcc();
if (batteryPcnt > 10)
{
batteryLow = 0;
wakeUp();
delay(100);
}
}
if (NFCReady == 0)
{
SetProtocol_Command(); // ISO 15693 settings
delay(100);
}
else if (NFCReady == 1)
{
for (int i=0; i<3; i++) {
Inventory_Command(); // sensor in range?
if (NFCReady == 2)
break;
delay(1000);
}
if (NFCReady == 1) {
goToSleep (0b100001, SLEEP_TIME);
wakeUp();
delay(100);
}
}
else
{
String xdripPacket = Build_Packet(Read_Memory());
Send_Packet(xdripPacket);
goToSleep (0b100001, SLEEP_TIME);
wakeUp();
delay(100);
}
}