add libraries

This commit is contained in:
hg
2015-05-07 22:17:38 +02:00
parent ca8ed709b8
commit 9c9f795b2f
26 changed files with 5704 additions and 226 deletions

22
Ethernet/EthernetServer.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef ethernetserver_h
#define ethernetserver_h
#include "Server.h"
class EthernetClient;
class EthernetServer :
public Server {
private:
uint16_t _port;
void accept();
public:
EthernetServer(uint16_t);
EthernetClient available();
virtual void begin();
virtual size_t write(uint8_t);
virtual size_t write(const uint8_t *buf, size_t size);
using Print::write;
};
#endif