diff options
author | Mike Beattie <mike@ethernal.org> | 2012-03-23 08:38:35 +1300 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2012-03-23 08:38:35 +1300 |
commit | 9f0b2d6cd1482bff2825bc5bcc90774b101f4bc3 (patch) | |
tree | 8ddfb838a76091012772c31835701b717fcb6912 /HouseControl.ino | |
parent | 94d803a7482472cc98eac13a3a39bb1e745a1c6e (diff) |
Add some global buffers.
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'HouseControl.ino')
-rw-r--r-- | HouseControl.ino | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/HouseControl.ino b/HouseControl.ino index fffb56a..cdc19e3 100644 --- a/HouseControl.ino +++ b/HouseControl.ino @@ -75,6 +75,12 @@ struct st_door { /*********************************************************************************/ /* Variable declarations */ +#define BUF1_SIZE 64 +#define BUF2_SIZE 16 + +byte buf1[BUF1_SIZE]; +byte buf2[BUF2_SIZE]; + time_t time; time_t blinkTime = 0; |