Machine Vision Status TCP Server

Dependencies:   C12832 EthernetInterface mbed-rtos mbed ConfigFile

Revision:
7:23c8d34000eb
Child:
8:845dfadaa70d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PlcStatusIndicator.h	Sun Jun 14 10:45:10 2015 +0000
@@ -0,0 +1,21 @@
+#ifndef PLC_STATUS_INDICATOR_HEADER
+#define PLC_STATUS_INDICATOR_HEADER
+
+#include "Indication.h"
+#include "mbed.h"
+
+namespace MachineVision{
+    
+    class PlcStatusIndicator{
+        public:
+
+        private:
+            DigitalOut output;
+
+        public:
+            PlcStatusIndicator(PinName out_pin);
+            void setStatus(Indication indication); 
+    };
+}
+
+#endif