# SD Pictures Display BMP/JPG/PNG images from a microSD card on Soldered Inkplate 13SPECTRA. ## Overview Reads image files from a FAT-formatted microSD card and displays them on the Inkplate 13SPECTRA e-paper display. The example iterates through images stored on the card, rendering each one in sequence. ## Hardware Required - Soldered Inkplate 13SPECTRA - USB cable - MicroSD card (FAT32 formatted) - BMP, JPG, or PNG image files on the card ## Setup ### 1. Prepare the SD card Format the microSD card as FAT32 and copy compatible images to the root directory. ### 2. Select the board Run `idf.py menuconfig` and navigate to: **Inkplate Boards → Inkplate13** ## Build and Flash ``` idf.py build idf.py -p PORT flash monitor ``` ## Expected Output Images from the microSD card displayed sequentially on the Inkplate 13SPECTRA e-paper screen. ## Notes - Supported formats: BMP (1/4/8/24-bit), JPG, PNG. - Images must fit the display (1600×1200 px); oversized images may be cropped. - Insert the microSD card before powering on. ## 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:inkplate13/advanced/sd/sd_pictures"