bachelorproef

Dependencies:   mbed C12832

Revision:
0:6c9daa430100
Child:
1:fda3af7f9bf7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tcp.h	Tue Mar 24 22:00:48 2020 +0000
@@ -0,0 +1,17 @@
+#include "mbed.h"
+#include <EthernetInterface.h>
+#include <string> 
+
+class TCP {
+    
+    public:
+        int ip;
+        string IPString;
+        EthernetInterface net;
+        TCPSocket socket;
+        
+    public:
+        TCP ();
+        void send(int ip);
+        void receive();  
+};
\ No newline at end of file