Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
NexRtc.h
1 
17 #ifndef _NEXRTC_H
18 #define _NEXRTC_H
19 
20 #include "NexTouch.h"
21 #include "NexHardware.h"
31 class NexRtc
32 {
33  public:
34 
35  bool write_rtc_time(char *time);
36 
45  bool write_rtc_time(char *time_type,uint32_t number);
46 
54  bool write_rtc_time(uint32_t *time);
55 
56 
65  uint32_t read_rtc_time(char *time,uint32_t len);
66 
75  uint32_t read_rtc_time(char *time_type,uint32_t *number);
76 
85  uint32_t read_rtc_time(uint32_t *time,uint32_t len);
86 
87 };
88 
93 #endif /* #ifndef __NEXRTC_H__ */
Definition: NexRtc.h:31
uint32_t read_rtc_time(char *time, uint32_t len)