Docs Home | Open App
Getting Started with image2cpp
- Upload your image or GIF.
- Pick a display size preset (for example 128x64 OLED).
- Adjust contrast and threshold until the preview looks clean.
- Choose output mode and variable name.
- Copy the generated array into your firmware project.
Minimal Arduino Example
#include <Adafruit_SSD1306.h>
#include "bitmap.h"
Adafruit_SSD1306 display(128, 64, &Wire, -1);
void setup() {
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
display.clearDisplay();
display.drawBitmap(0, 0, epd_bitmap_img, 128, 64, WHITE);
display.display();
}