# MicroSD — Read File Read and display a text file from a microSD card on Soldered Inkplate 4TEMPERA. ## Overview Demonstrates how to open a `.txt` file from a FAT-formatted microSD card and display its contents on the e-paper display. ## Hardware Required - Soldered Inkplate 4TEMPERA - USB cable - microSD card (FAT/FAT32 formatted) ## Setup ### 1. Prepare the SD card Create a file named `text.txt` on a FAT-formatted microSD card with any text content. Insert the card into the Inkplate. ### 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 contents of `text.txt` are displayed on the Inkplate e-paper screen. ## Notes - File name must be exactly `text.txt` for this example. - SD card must be FAT/FAT32 formatted. ## 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/advanced/microsd/read"