Documentation
For Arduino users
NexRtc.h
Go to the documentation of this file.
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__ */
NexRtc component.
Definition: NexRtc.h:31
The definition of class NexTouch.
The definition of base API for using Nextion.
uint32_t read_rtc_time(char *time, uint32_t len)
read rtc time
Definition: NexRtc.cpp:166