Part One of my Project Course. Implementation of simple I/O and a custom defined protocol over UDP/IP.

Dependencies:   C12832 LM75B mbed EthernetInterface mbed-rtos

Revision:
1:b5c534165dfe
Child:
2:6bfe732ba6bc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/selection.h	Wed Mar 14 07:59:21 2018 +0000
@@ -0,0 +1,17 @@
+#include <string>
+#include "mbed.h"
+
+#pragma once
+
+namespace ProjectOne{
+    
+    class Selection{
+        public:
+            Selection(PinName Center=p14, PinName Up=p15, PinName Down=p12, PinName Left=p13, PinName Right=p16);
+            string determineMode(void);
+            int determineId(void);
+        
+        private:
+            BusIn joy;
+    };
+};
\ No newline at end of file