From 9f0b2d6cd1482bff2825bc5bcc90774b101f4bc3 Mon Sep 17 00:00:00 2001 From: Mike Beattie Date: Fri, 23 Mar 2012 08:38:35 +1300 Subject: Add some global buffers. Signed-off-by: Mike Beattie --- HouseControl.ino | 6 ++++++ 1 file changed, 6 insertions(+) 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; -- cgit v1.2.3