Red Light Work

Fork of realtimeMMLib by Graham Nicholson

Revision:
0:9f82ee1feae7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Coms.h	Mon Oct 02 11:18:47 2017 +0000
@@ -0,0 +1,11 @@
+class Coms {
+    public:
+     int EthernetInitialise(char* IPAddress, char* NetworkMask, char* DefaultGateway);
+     char* getMACAddress();
+     int EthernetConnect();
+     void EthernetDisconnect();
+     int EthernetSocketConnect(char* IPAddress, int Port);
+     int EthernetSocketSendAll(char* datasample, int samplesize);
+     int EthernetSocketReceive(char* datasample, int samplesize);
+     int EthernetSocketClose();
+};
\ No newline at end of file