ControllerBox directs electromechanical equipment in restaurants to display information.

Dependencies:   TextLCD MbedJSONValue libMotiv picojson mbed-rtos mbed

Fork of Mbed_MotiVControllerBox by Tim Wöstemeier

Revision:
1:d54aed10ddf3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/library/Table.cpp	Sat Nov 15 13:04:09 2014 +0000
@@ -0,0 +1,25 @@
+#include "Table.h"
+
+Table::Table() 
+    :   id(0),
+        status(0),
+        fStatus(0),
+        dStatus(0),
+        sStatus(0),
+        statusPrev(0),
+        fStatusPrev(0),
+        dStatusPrev(0),
+        sStatusPrev(0)  {}
+
+Table::Table(int id) 
+    :   id(id),
+        status(0),
+        fStatus(0),
+        dStatus(0),
+        sStatus(0),
+        statusPrev(0),
+        fStatusPrev(0),
+        dStatusPrev(0),
+        sStatusPrev(0)  {}
+
+Table::~Table() {}
\ No newline at end of file