Skip to main content

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:

TypeNameDescription
uint8_t_formatClock format - RTC_HOURFORMAT_24 for 24-hour format or RTC_HOURFORMAT_12 for 12-hour format.
bool_resetRtcOptional. 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:

TypeNameDescription
uint8_t_hRTC Hour value.
uint8_t_mRTC Minute value.
uint8_t_sRTC Seconds value.
uint32_t_ssRTC Sub-Seconds value.
uint8_t_pmAmOptional. PM/AM indicator. Use RTC_HOURFORMAT12_AM or RTC_HOURFORMAT12_PM.
uint32_t_dayLightSavingOptional. 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:

TypeNameDescription
uint8_t_dDay of the month.
uint8_t_mMonth value.
uint16_t_yYear value.
uint8_t_weekdayWeekday value.
⚠️
In the current version of the Inkplate 6 MOTION library, you cannot use epoch to set the time in the RTC.

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:

TypeNameDescription
uint8_t*_hPointer to store the hour value.
uint8_t*_mPointer to store the minute value.
uint8_t*_sPointer to store the second value.
uint32_t*_ssPointer to store the sub-seconds value.
uint8_t*_pmAmOptional. Pointer to store the PM/AM indicator.
uint8_t*_dayLightSavingOptional. 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:

TypeNameDescription
uint8_t*_dPointer to store the day of the month.
uint8_t*_mPointer to store the month value.
uint16_t*_yPointer to store the year value.
uint8_t*_weekdayPointer 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