Rename Directory
This commit is contained in:
parent
4fd8a0a761
commit
74c37e3747
63 changed files with 2 additions and 4 deletions
18
ESPMegaPRO-OS-SDK/lib/ESPMegaPRO/TimeStructure.hpp
Normal file
18
ESPMegaPRO-OS-SDK/lib/ESPMegaPRO/TimeStructure.hpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
* @brief The rtctime_t struct is a structure for storing the time.
|
||||
*
|
||||
* This structure is used by the ESPMegaPRO library to store the time.
|
||||
*
|
||||
* @warning This structure is not compatible with the Arduino Time library.
|
||||
*/
|
||||
struct rtctime_t {
|
||||
uint8_t hours;
|
||||
uint8_t minutes;
|
||||
uint8_t seconds;
|
||||
uint8_t day;
|
||||
uint8_t month;
|
||||
uint16_t year;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue