inkplate5/advanced/rtc/simple

Example of the component solderedelectronics/inkplate v1.1.0
# RTC — Simple Clock

Basic RTC time and date display for Soldered Inkplate 5.

## Overview

Demonstrates basic usage of the PCF85063A RTC integrated on Inkplate 5. Shows how to set time and date, read RTC values, and display the time on the e-paper screen using partial updates.

## Hardware Required

- Soldered Inkplate 5
- USB cable

## Setup

Run `idf.py menuconfig` and navigate to:
**Inkplate Boards → Inkplate5**

Set the initial RTC time and date in `main.cpp` if not already configured.

## Build and Flash

```
idf.py build
idf.py -p PORT flash monitor
```

## Expected Output

Inkplate display shows the current date and time, updated periodically using partial refresh.

## Notes

- Inkplate 5 uses the PCF85063A RTC chip.
- Partial update works only in 1-bit (black & white) mode.
- Do not use partial update on the very first refresh after power-up.
- Perform a full refresh every 5–10 partial updates to maintain display quality.

## Resources

- Docs: https://docs.soldered.com/inkplate
- Support: https://forum.soldered.com/
- Image tool: https://tools.soldered.com/tools/image-converter/

To create a project from this example, run:

idf.py create-project-from-example "solderedelectronics/inkplate=1.1.0:inkplate5/advanced/rtc/simple"

or download archive (~3.12 KB)