mocked timer test, EvseRead

This commit is contained in:
Janosch
2022-10-11 00:05:01 +01:00
parent 52877fb3ea
commit 7b038d5243
10 changed files with 133 additions and 79 deletions
+4 -2
View File
@@ -31,8 +31,10 @@ class AnaIn{
ANA_IN_LIST
#undef ANA_IN_ENTRY
bool Get() { return 1; }
void Set() {}
int val = 7;
int Get() { return val; }
void Set(int param) { val = param;}
};