mbed project met ethernet communicatie (UDP) Master/slave

Dependencies:   EthernetInterface LM75B mbed-rtos mbed

Hey

Revision:
8:556a5738c2fa
Parent:
6:4f13276fd1e2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/H_files/potentiometer.h	Fri Mar 23 11:06:09 2018 +0000
@@ -0,0 +1,17 @@
+#ifndef potentiometer_h
+#define potentiometer_h
+#include "mbed.h"
+
+class Potentiometer
+{
+public:  
+    Potentiometer(); //Constructor
+    
+    /**
+     * Deze methode zal de potentiometer waarde terug geven als een float.
+     * Geen parameters nodig.
+     */ 
+    float getPotentiometer();
+};
+
+#endif
\ No newline at end of file