RTC basics
The real time clock on Inkplate 6 MOTION is the internal RTC of the STM32H743ZIT6. The RTC uses an external clock source, an external XTAL of 32.768kHz.
Initializing
The RTC is initialized by calling inkplate.rtc.begin()
:
inkplate.rtc.begin(RTC_HOURFORMAT_24);
inkplate.rtc.begin()
Initializes the RTC inside the STM32.
Returns: Returns an instance of RTC_HandleTypeDef, the STM32duino RTC object. This is not nescessary to use as the RTC can be interfaced with using our library, but it's returned in case you need it.
Function parameters:
Type | Name | Description |
---|---|---|
uint8_t | _format | Clock format - RTC_HOURFORMAT_24 for 24-hour format or RTC_HOURFORMAT_12 for 12-hour format. |
bool | _resetRtc | Optional. If set to true, forces RTC reset, overriding the previously set RTC. |
Setting time and date
Setting the current time and date is the most basic RTC usage. Once you set the time, it will keep 'ticking' and you will be able to get the current time later and it will be accurate. Of course, the RTC isn't perfect so during one day it will drift off a couple seconds early or late. If you're using the RTC, it's reccomended to set it approx. once per day.
// Check if the time is already set. If not, set it!
if (!inkplate.rtc.isRTCSet()) {
inkplate.rtc.setTime(12, 24, 25, 0); // Set time to 12:24:25
inkplate.rtc.setDate(29, 5, 24, RTC_WEEKDAY_MONDAY); // Set date to 29/5/2024, Monday
}
inkplate.rtc.isRTCSet()
Checks whether the RTC is set. If not, the RTC needs to be manually configured.
Returns: Returns true if the RTC is already set, otherwise false.
inkplate.rtc.setTime()
Sets the time inside the STM32 RTC using a human-readable format.
Returns: none
Function parameters:
Type | Name | Description |
---|---|---|
uint8_t | _h | RTC Hour value. |
uint8_t | _m | RTC Minute value. |
uint8_t | _s | RTC Seconds value. |
uint32_t | _ss | RTC Sub-Seconds value. |
uint8_t | _pmAm | Optional. PM/AM indicator. Use RTC_HOURFORMAT12_AM or RTC_HOURFORMAT12_PM. |
uint32_t | _dayLightSaving | Optional. Daylight saving setting. Possible values: RTC_DAYLIGHTSAVING_SUB1H (Subtract one hour), RTC_DAYLIGHTSAVING_ADD1H (Add one hour), RTC_DAYLIGHTSAVING_NONE (Disabled). |
inkplate.rtc.setDate()
Sets the date inside the STM32 RTC.
Returns: none
Function parameters:
Type | Name | Description |
---|---|---|
uint8_t | _d | Day of the month. |
uint8_t | _m | Month value. |
uint16_t | _y | Year value. |
uint8_t | _weekday | Weekday value. |
Getting time and date
To retrieve the time and date after setting them, use inkplate.rtc.getTime()
. These functions take pointers to individual date/time components and store the retrieved values in the corresponding variables:
// Variables for time and date
uint8_t h, m, s, d, mn, y, wk;
uint32_t ss;
// Get time and date data from STM32 internal RTC using pointers
inkplate.rtc.getTime(&h, &m, &s, &ss, NULL, NULL);
inkplate.rtc.getDate(&d, &mn, &y, &wk);
inkplate.rtc.getTime()
Gets the current time from the STM32 RTC in a human-readable format.
Returns: Returns an RTC_TimeTypeDef structure containing the current time. It's optional to further use this structure in your code.
Function parameters:
Type | Name | Description |
---|---|---|
uint8_t* | _h | Pointer to store the hour value. |
uint8_t* | _m | Pointer to store the minute value. |
uint8_t* | _s | Pointer to store the second value. |
uint32_t* | _ss | Pointer to store the sub-seconds value. |
uint8_t* | _pmAm | Optional. Pointer to store the PM/AM indicator. |
uint8_t* | _dayLightSaving | Optional. Pointer to store the daylight savings status. |
inkplate.rtc.getDate()
Gets the current date from the STM32 RTC.
Returns: Returns an RTC_DateTypeDef structure containing the current date. It's optional to further use this structure in your code.
Function parameters:
Type | Name | Description |
---|---|---|
uint8_t* | _d | Pointer to store the day of the month. |
uint8_t* | _m | Pointer to store the month value. |
uint16_t* | _y | Pointer to store the year value. |
uint8_t* | _weekday | Pointer to store the weekday value. |
Full examples
Inkplate_6_Motion_Fast_Animation.ino
Full Arduino example on how to get and set time via the internal RTC on Inkplate 6 MOTION