-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArduinoWorkflow.h
1078 lines (944 loc) · 24.4 KB
/
ArduinoWorkflow.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
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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
#include <Arduino.h>
#include <avr/eeprom.h>
#include <Wire.h>
namespace AW {
class ArduinoSettings {
public:
static constexpr float GetReferenceVoltage() {
#if F_CPU == 8000000L
return 3.3;
#else
return 5.0; // TODO: for now
#endif
}
static constexpr int GetReadResolution() {
return 1024; // TODO: for now
}
static constexpr int GetWriteResolution() {
return 256; // TODO: for now
}
};
template <typename Type>
inline Type&& Move(Type&& value) {
return static_cast<Type&&>(value);
}
template <typename Type>
struct TUniquePtr {
TUniquePtr(Type* ptr = nullptr)
: Ptr(ptr)
{}
TUniquePtr(TUniquePtr<Type>& ptr) {
Ptr = ptr.Ptr;
ptr.Ptr = nullptr;
}
TUniquePtr(TUniquePtr<Type>&& ptr) {
Ptr = ptr.Ptr;
ptr.Ptr = nullptr;
}
~TUniquePtr() {
delete Ptr;
}
TUniquePtr<Type>& operator =(Type* ptr) {
delete Ptr;
Ptr = ptr;
return *this;
}
TUniquePtr<Type>& operator =(TUniquePtr<Type>& ptr) {
TUniquePtr<Type> _this = *this;
Ptr = ptr.Ptr;
ptr.Ptr = nullptr;
return *this;
}
TUniquePtr<Type>& operator =(TUniquePtr<Type>&& ptr) {
delete Ptr;
Ptr = ptr.Ptr;
ptr.Ptr = nullptr;
return *this;
}
Type* operator ->() const {
return Ptr;
}
Type& operator *() const {
return *Ptr;
}
Type* Get() const {
return Ptr;
}
Type* Release() {
Type* ptr = Ptr;
Ptr = nullptr;
return ptr;
}
protected:
Type* Ptr;
};
template <typename ItemType, int Capacity>
class TVector {
public:
using Iterator = ItemType*;
TVector()
: End(begin())
{}
int size() const {
return end() - begin();
}
bool empty() const {
return begin() == end();
}
Iterator begin() {
return reinterpret_cast<ItemType*>(&Data);
}
Iterator end() {
return End;
}
void push_back(const ItemType& item) {
insert(end(), item);
}
void push_front(const ItemType& item) {
insert(begin(), item);
}
Iterator erase(Iterator it) {
it->~ItemType();
while (it != end()) {
Iterator next = it;
++next;
*it = *next;
it = next;
}
--End;
return it;
}
Iterator insert(Iterator it, const ItemType& item) {
if (end() < capacity_end()) {
if (it < end()) {
Iterator to = end();
while (to >= it) {
Iterator from = to;
--from;
*to = *from;
to = from;
}
}
new (&*it) ItemType(item);
++End;
}
return it;
}
protected:
Iterator capacity_end() {
return reinterpret_cast<ItemType*>(&Data[sizeof(ItemType) * Capacity]);
}
char Data[sizeof(ItemType) * Capacity];
Iterator End;
};
template <typename ItemType, int Capacity>
class TDeque {};
template <typename ItemType, int Capacity>
class TDeque<TUniquePtr<ItemType>, Capacity> {
public:
using TItemType = TUniquePtr<ItemType>;
using Iterator = TItemType*;
TDeque()
: BeginIdx(0)
, EndIdx(0)
{}
int size() const {
return EndIdx - BeginIdx;
}
int capacity() const {
return Capacity;
}
bool empty() const {
return BeginIdx == EndIdx;
}
Iterator begin() {
return capacity_begin() + BeginIdx;
}
Iterator end() {
return capacity_begin() + EndIdx;
}
TItemType& front() {
return *begin();
}
void push_back(TItemType item) {
insert(end(), item);
}
void push_front(TItemType item) {
insert(begin(), item);
}
void pop_front() {
*begin() = TItemType();
if (++BeginIdx == EndIdx) {
BeginIdx = EndIdx = 0;
}
}
Iterator erase(Iterator it) {
*it = nullptr;
if (it == begin()) {
++BeginIdx;
++it;
} else if (it == end() - 1) {
--EndIdx;
} else {
// TODO: check the distance
move(it + 1, end(), it);
--EndIdx;
}
if (BeginIdx == EndIdx) {
BeginIdx = EndIdx = 0;
it = begin();
}
return it;
}
Iterator insert(Iterator it, TItemType item) {
if (size() < capacity()) {
if (it == begin()) {
if (it > capacity_begin()) {
--BeginIdx;
*begin() = item;
return begin();
}
move(it, end(), it + 1);
++EndIdx;
*it = item;
} else
if (it == end()) {
if (it < capacity_end()) {
*end() = item;
++EndIdx;
return it;
}
move(begin(), it, begin() - 1);
--BeginIdx;
--it;
*it = item;
}
} else {
Serial.print("\nOVERFLOW!\n");
}
return it;
}
protected:
void move(Iterator begin, Iterator end, Iterator to) {
if (begin == end)
return;
if (to < begin) {
Iterator it = begin;
while (it != end) {
*to = Move(*it);
++to;
++it;
}
} else {
Iterator it = end;
to += (end - begin);
do {
--to;
--it;
*to = Move(*it);
} while (it != begin);
}
}
Iterator capacity_begin() {
return &Data[0];
}
Iterator capacity_end() {
return &Data[Capacity];
}
TItemType Data[Capacity];
#ifndef ARDUINO
#pragma warning(disable:4201)
#endif
struct {
int BeginIdx : 4;
int EndIdx : 4;
};
#ifndef ARDUINO
#pragma warning(default:4201)
#endif
};
template <typename ItemType>
class TDeque<TUniquePtr<ItemType>, 0> {};
//public:
// using TItemType = TUniquePtr<ItemType>;
// using Iterator = TItemType*;
//
// TDeque()
// : Data(nullptr) {}
//
// int size() const {
// return End - Begin;
// }
//
// bool empty() const {
// return Begin == End;
// }
//
// Iterator begin() {
// return Begin;
// }
//
// Iterator end() {
// return End;
// }
//
// TItemType& front() {
// return *begin();
// }
//
// void push_back(TItemType item) {
// insert(end(), item);
// }
//
// void push_front(TItemType item) {
// insert(begin(), item);
// }
//
// void pop_front() {
// *Begin = TItemType();
// if (++Begin == End) {
// Begin = End = capacity_begin();
// }
// }
//
// Iterator erase(Iterator it) {
// *it = nullptr;
// while (it != end()) {
// Iterator next = it;
// ++next;
// *it = *next;
// it = next;
// }
// --End;
// if (Begin == End) {
// it = Begin = End = capacity_begin();
// }
// return it;
// }
//
// Iterator insert(Iterator it, TItemType item) {
// if (end() < capacity_end()) {
// if (it == begin() && it > capacity_begin()) {
// --Begin;
// *Begin = item;
// return Begin;
// }
// if (it < end()) {
// Iterator to = end();
// while (to >= it) {
// Iterator from = to;
// --from;
// *to = *from;
// to = from;
// }
// }
// *it = item;
// ++End;
// }
// return it;
// }
//
//protected:
// Iterator capacity_begin() {
// return &Data[0];
// }
//
// Iterator capacity_end() {
// return &Data[Capacity];
// }
//
// TItemType Data[Capacity];
// Iterator Begin;
// Iterator End;
//};
template <typename ItemType>
class TList {};
template <typename ItemType>
class TList<TUniquePtr<ItemType>> {
public:
using TItemType = TUniquePtr<ItemType>;
class TItemBase {
friend TList;
private:
TUniquePtr<ItemType> Next;
};
class Iterator {
friend TList;
public:
Iterator(ItemType* item)
: Item(item)
{}
bool operator ==(const Iterator& iterator) {
return Item == iterator.Item;
}
bool operator !=(const Iterator& iterator) {
return Item != iterator.Item;
}
Iterator& operator ++() {
Item = Item->Next.Get();
return *this;
}
Iterator operator ++(int) {
Iterator prev(Item);
operator ++();
return prev;
}
ItemType* Get() {
return Item;
}
protected:
ItemType* Item;
};
int size() {
int s = 0;
Iterator it = begin();
while (it != end()) {
++s;
++it;
}
return s;
}
bool empty() {
return begin() == end();
}
Iterator begin() {
return Iterator(Begin.Get());
}
Iterator end() {
return Iterator(nullptr);
}
const TItemType& front() {
return Begin;
}
Iterator push_back(TItemType item) {
return insert(end(), item);
}
Iterator push_front(TItemType item) {
return insert(begin(), item);
}
Iterator pop_front() {
return erase(begin());
}
TItemType pop_value(Iterator& it) {
if (it == begin()) {
TItemType value(Begin);
it = (Begin = value->Next).Get();
return value;
} else {
Iterator next = begin();
while (next != end()) {
Iterator prev = next++;
if (next == it) {
TItemType value(prev.Get()->Next);
it = (prev.Get()->Next = value->Next).Get();
return value;
}
}
}
return TItemType();
}
Iterator erase(Iterator it) {
if (it == begin()) {
Begin = Begin->Next;
return Begin.Get();
} else {
Iterator next = begin();
while (next != end()) {
Iterator prev = next++;
if (next == it) {
return (prev.Get()->Next = next.Get()->Next).Get();
}
}
}
return end();
}
Iterator insert(Iterator it, TItemType item) {
if (it == begin()) {
item->Next = Begin;
Begin = item;
return begin();
} else {
Iterator next = begin();
while (next != end()) {
Iterator prev = next++;
if (next == it) {
item->Next = prev.Get()->Next;
prev.Get()->Next = item;
return next;
}
}
}
return end();
}
protected:
TUniquePtr<ItemType> Begin;
};
using TEventID = unsigned int;
class String;
class TTime {
public:
constexpr TTime()
: Value() {}
bool operator ==(TTime time) const { return Value == time.Value; }
bool operator <(TTime time) const { return Value < time.Value; }
bool operator <=(TTime time) const { return Value <= time.Value; }
bool operator >(TTime time) const { return Value > time.Value; }
bool operator >=(TTime time) const { return Value >= time.Value; }
TTime operator +(TTime time) const { return TTime(Value + time.Value); }
TTime operator -(TTime time) const { return TTime(Value - time.Value); }
static constexpr TTime MilliSeconds(unsigned long ms) { return TTime(ms); }
static constexpr TTime Seconds(unsigned long s) { return TTime(s * 1000); }
static TTime Now() { return TTime(millis()); }
String AsString() const;
constexpr unsigned long MilliSeconds() const { return Value; }
static constexpr TTime Max() { return TTime(-1); }
static constexpr TTime Zero() { return TTime(0); }
protected:
constexpr TTime(unsigned long ms)
: Value(ms) {}
unsigned long Value;
};
class TActor;
struct TEvent;
class TActorLib;
using TActorPtr = TActor*;
using TEventPtr = TUniquePtr<TEvent>;
struct TActorContext {
TActorLib& ActorLib;
TTime Now;
TActorContext(TActorLib& actorLib)
: ActorLib(actorLib)
, Now(TTime::Now())
{}
void Send(TActor* sender, TActor* recipient, TEventPtr event) const;
void SendImmediate(TActor* sender, TActor* recipient, TEventPtr event) const;
void Resend(TActor* recipient, TEventPtr event) const;
void ResendImmediate(TActor* recipient, TEventPtr event) const;
};
class TActor {
private:
friend class TActorLib;
TActor* NextActor = nullptr;
//TDeque<TEventPtr, 9> Events;
TList<TEventPtr> Events;
public:
virtual void OnEvent(TEventPtr event, const TActorContext& context) = 0;
};
struct TEvent : TList<TUniquePtr<TEvent>>::TItemBase {
TTime NotBefore;
TActor* Sender;
//TActor* Recipient;
TEventID EventID;
};
template <typename DerivedType>
struct TBasicEvent : TEvent {
TBasicEvent() {
TEvent::EventID = DerivedType::EventID;
}
};
struct TEventBootstrap : TBasicEvent<TEventBootstrap> {
constexpr static TEventID EventID = 0; // TODO
};
struct TEventReceive : TBasicEvent<TEventReceive> {
constexpr static TEventID EventID = 1; // TODO
TEventReceive() = default;
TEventReceive(TTime notBefore) {
NotBefore = notBefore;
}
};
class TActorLib {
public:
TActorLib();
void Register(TActor* actor);
void Run();
void Send(TActor* sender, TActor* recipient, TEventPtr event);
void SendImmediate(TActor* sender, TActor* recipient, TEventPtr event);
void Resend(TActor* recipient, TEventPtr event);
void ResendImmediate(TActor* recipient, TEventPtr event);
protected:
//TDeque<TEventPtr, 16> Events;
TActor* Actors;
// TDeque<TEventPtr> with different sizes in every actor
// or maybe dynamic TDeque<TEventPtr> ?
// mailbox should be inside every actor for faster sending
};
template <typename Type, int WindowSize = 10>
class TAverage {
public:
TAverage()
: Accumulator()
, Count()
{}
void AddValue(Type value) {
Accumulator += value;
Count += 1;
if (Count >= WindowSize * 2) {
Accumulator /= 2;
Count /= 2;
}
}
Type GetValue() const {
return Accumulator / Count;
}
protected:
Type Accumulator;
int Count;
};
template <typename Type>
class TAverage<Type, 0> {
public:
TAverage()
: Accumulator()
{}
void AddValue(Type value) {
Accumulator = value;
}
Type GetValue() const {
return Accumulator;
}
protected:
Type Accumulator;
};
template <uint8_t P, uint8_t Mode = OUTPUT>
class TPin {
public:
TPin() {
pinMode(P, Mode);
}
TPin& operator =(bool state) {
digitalWrite(P, state ? HIGH : LOW);
return *this;
}
operator bool() const {
return digitalRead(P) == HIGH;
}
TPin& operator =(int value) {
analogWrite(P, value);
return *this;
}
operator int() const {
return analogRead(P);
}
float GetValue() const {
int value = analogRead(P);
return ArduinoSettings::GetReferenceVoltage() * value / (ArduinoSettings::GetReadResolution() - 1);
}
template <int Iterations = 1000, unsigned long Delay = 0>
float GetAveragedValue() const {
TAverage<float, Iterations> value;
for (int i = 0; i < Iterations; ++i) {
if (i != 0) {
delay(Delay);
}
value.AddValue(GetValue());
}
return value.GetValue();
}
void SetValue(float value) const {
int v = value * (ArduinoSettings::GetWriteResolution() - 1);
analogWrite(P, v);
}
void SetMode(uint8_t mode) {
pinMode(P, mode);
}
};
template <typename Type, int WindowSize = 10>
class TAveragedValue {
protected:
Type Value;
using ValueType = decltype(Value.GetValue());
mutable TAverage<ValueType, WindowSize> Average;
public:
ValueType GetValue() const {
Average.AddValue(Value.GetValue());
return Average.GetValue();
}
};
class TPeriodicTrigger {
public:
bool IsTriggered(TTime period, const TActorContext& context) {
if (LastTriggered + period <= context.Now) {
LastTriggered = context.Now;
return true;
}
return false;
}
protected:
TTime LastTriggered;
};
template <typename StructType>
class TEEPROM {
public:
template <typename ValueType>
ValueType Get(ValueType StructType::* ptr) const {
int idx = reinterpret_cast<uint8_t*>(&(static_cast<StructType*>(0)->*ptr)) - reinterpret_cast<uint8_t*>(0);
ValueType value;
Get(idx, value);
return value;
}
template <typename ValueType>
void Put(ValueType StructType::* ptr, ValueType val) const {
int idx = reinterpret_cast<uint8_t*>(&(static_cast<StructType*>(0)->*ptr)) - reinterpret_cast<uint8_t*>(0);
Put(idx, val);
}
template <typename ValueType>
void Update(ValueType StructType::* ptr, ValueType val) const {
int idx = reinterpret_cast<uint8_t*>(&(static_cast<StructType*>(0)->*ptr)) - reinterpret_cast<uint8_t*>(0);
Update(idx, val);
}
protected:
template <typename T>
static void Get(int idx, T& val) {
for (size_t i = 0; i < sizeof(T); ++i) {
((uint8_t*)&val)[i] = eeprom_read_byte(reinterpret_cast<uint8_t*>(idx + i));
}
}
template <typename T>
static void Put(int idx, const T& val) {
for (size_t i = 0; i < sizeof(T); ++i) {
eeprom_write_byte(reinterpret_cast<uint8_t*>(idx + i), ((uint8_t*)&val)[i]);
}
}
template <typename T>
static void Update(int idx, const T& val) {
for (size_t i = 0; i < sizeof(T); ++i) {
if (eeprom_read_byte(reinterpret_cast<uint8_t*>(idx + i)) != ((uint8_t*)&val)[i]) {
eeprom_write_byte(reinterpret_cast<uint8_t*>(idx + i), ((uint8_t*)&val)[i]);
}
}
}
};
class TWire {
public:
static void Begin() { Wire.begin(); }
static void BeginTransmission(uint8_t address) { Wire.beginTransmission(address); }
static void Write(uint8_t value) { Wire.write(value); }
static void Write(uint16_t value) { uint8_t* values = reinterpret_cast<uint8_t*>(&value); Wire.write(values[1]); Wire.write(values[0]); }
static bool EndTransmission(bool stop = true) { return Wire.endTransmission(stop) == 0; }
static uint8_t RequestFrom(uint8_t address, uint8_t quantity) { return Wire.requestFrom(address, quantity); }
static void Read(uint8_t& value) { value = Wire.read(); }
static void Read(int8_t& value) { Read(reinterpret_cast<uint8_t&>(value)); }
static void Read(uint16_t& value) { uint8_t* values = reinterpret_cast<uint8_t*>(&value); Read(values[1]); Read(values[0]); }
static void Read(int16_t& value) { Read(reinterpret_cast<uint16_t&>(value)); }
static void ReadLE(uint16_t& value) { uint8_t* values = reinterpret_cast<uint8_t*>(&value); Read(values[0]); Read(values[1]); }
static void ReadLE(int16_t& value) { ReadLE(reinterpret_cast<uint16_t&>(value)); }
template <typename T>
static bool ReadValue(uint8_t addr, uint8_t reg, T& val) {
BeginTransmission(addr);
Write(reg);
if (!EndTransmission())
return false;
if (RequestFrom(addr, sizeof(T)) != sizeof(T))
return false;
Read(val);
return true;
}
template <typename T>
static bool ReadValueLE(uint8_t addr, uint8_t reg, T& val) {
BeginTransmission(addr);
Write(reg);
if (!EndTransmission())
return false;
if (RequestFrom(addr, sizeof(T)) != sizeof(T))
return false;
ReadLE(val);
return true;
}
template <typename T>
static bool WriteValue(uint8_t addr, uint8_t reg, T& val) {
BeginTransmission(addr);
Write(reg);
Write(val);
return EndTransmission();
}
template <typename T>
static void Read(T& value) {
uint8_t* data = reinterpret_cast<uint8_t*>(&value);
auto length = sizeof(value);
while (length-- > 0) {
Read(*data);
++data;
}
}
};
struct TDefaultEnvironment {
// debug info
static constexpr bool Diagnostics = false;
// sensors
static constexpr TTime SensorsPeriod = TTime::MilliSeconds(5000);
static constexpr bool SensorsSendValues = true;
static constexpr bool SensorsCalibration = false;
using Wire = TWire;
};
} // namespace AW
//struct ActivityContext {
// unsigned long Now;
//
// ActivityContext()
// : Now(millis())
// {}
//};
//
//template <unsigned long Period>
//class PeriodicTrigger {
//public:
// PeriodicTrigger() {
// NextTick = Period;
// }
//
// bool IsTriggered(const ActivityContext& context) {
// if (context.Now > NextTick) {
// // TODO: overflow trick
// NextTick += Period;
// return true;
// } else {
// return false;
// }
// }
//
//protected:
// unsigned long NextTick;
//};
//template <typename Derived, unsigned long Period>
//class PeriodicActivity : public Activity {
//public:
// void OnLoop(const ActivityContext& context) {
// if (Trigger.IsTriggered(context)) {
// static_cast<Derived*>(this)->OnPeriod();
// }
// }
//
//protected:
// PeriodicTrigger<Period> Trigger;
//};
//template <uint8_t P, uint8_t Mode = OUTPUT>
//class Pin {
//public:
// Pin() {
// pinMode(P, Mode);
// }
//
// Pin& operator =(bool state) {
// digitalWrite(P, state ? HIGH : LOW);
// return *this;
// }
//
// operator bool() const {
// return digitalRead(P) == HIGH;
// }
//
// Pin& operator =(int value) {
// analogWrite(P, value);
// return *this;
// }
//
// operator int() const {
// return analogRead(P);
// }
//
// float GetValue() const {
// int value = analogRead(P);
// return ArduinoSettings::GetReferenceVoltage() * value / ArduinoSettings::GetReadResolution();
// }
//
// void SetValue(float value) const {
// int v = value * ArduinoSettings::GetWriteResolution();
// analogWrite(P, v);
// }
//};
//class TWireWriteSession {
//public:
// TWireWriteSession(uint8_t Address) {
// TWire::BeginTransmission(Address);
// }
//
// ~TWireWriteSession() {
// TWire::EndTransmission();
// }
//
// TWireWriteSession& operator <<(uint8_t value) {
// TWire::Write(value);
// return *this;
// }
//};
//
//template <uint8_t Address, typename... ValueTypes>
//class TWireReadSession {
// ValueTypes&... Values;
//public: