Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed
Fork of HTTPServerHelloWorld by
Services/EthernetService.h
- Committer:
- wyunreal
- Date:
- 2014-01-31
- Revision:
- 3:5dc0023e6284
File content as of revision 3:5dc0023e6284:
#ifndef ETHERNET_SERVICE_H
#define ETHERNET_SERVICE_H
#include "EthernetNetIf.h"
#include "NTPClient.h"
class EthernetService {
private:
EthernetNetIf* ethernetInterface;
NTPClient* ntpClient;
public:
EthernetService();
~EthernetService();
int setup();
int setRtcTime();
};
#endif
