inkplate4/basic/image_converter

Example of the component solderedelectronics/inkplate v1.1.0
# Image Converter

Display a pre-converted image on Soldered Inkplate 4TEMPERA.

## Overview

Shows how to display an image that was converted to a C header file using the Soldered online image converter tool. The image data is stored in `image_ex.h` and drawn directly from ESP32 flash.

## Hardware Required

- Soldered Inkplate 4TEMPERA
- USB cable

## Setup

### 1. Convert your image

1. Open the Image Converter: https://tools.soldered.com/tools/image-converter/
2. Upload your image and select **Inkplate 4TEMPERA** as the target board.
3. Download the generated header file and save it as `image_ex.h` in the `main/` folder.

### 2. Configure the board

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

## Build and Flash

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

## Expected Output

The converted image displayed at position (0, 0) on the e-paper screen.

## Notes

- `display.clearDisplay()` clears only the internal framebuffer.
- `display.display()` must be called to update the physical e-paper panel.

## 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:inkplate4/basic/image_converter"

or download archive (~62.49 KB)