bachelorproef

Dependencies:   mbed C12832

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tcp.h Source File

tcp.h

00001 #include "mbed.h"
00002 #include <EthernetInterface.h>
00003 #include <string> 
00004 
00005 class TCP {
00006     
00007     public:
00008         int ip;
00009         char buffer[32];
00010         string IPString;
00011         EthernetInterface net;
00012         TCPSocket socket;
00013         
00014     public:
00015         TCP ();
00016         void send(int ip);
00017         void receive();  
00018 };