yet another 18B20 Temperature sensor. variable number of sensors working in parasite mode, serial 16x2 display with diagnostic output and post to a rest web service

Dependencies:   EthernetInterface HTTPClient NTPClient mbed-rtos mbed

ntp_proxy.h

Committer:
wkinkeldei
Date:
2012-12-31
Revision:
0:53f05303850a
Child:
1:9e88b2508768

File content as of revision 0:53f05303850a:

#ifndef NTP_PROXY_H
#define NTP_PROXY_H

#include "mbed.h"
#include "NTPClient.h"

class NtpProxy {
    NTPClient *ntp_client;

public:
    NtpProxy(void);
    
    int set_time(void);
};

#endif