From 38e19874d4aa199ff76349bc7138d3bc9d4af09f Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Fri, 31 May 2024 10:50:23 +0200 Subject: [PATCH] remove comment Signed-off-by: Peter Siegmund --- ePaper-ESP-IDF/main/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ePaper-ESP-IDF/main/main.cpp b/ePaper-ESP-IDF/main/main.cpp index c6aa792..627cffe 100644 --- a/ePaper-ESP-IDF/main/main.cpp +++ b/ePaper-ESP-IDF/main/main.cpp @@ -30,7 +30,6 @@ void setup(void) { .x = EPD_WIDTH - width, .y = 0, .width = width, .height = height}; epd_poweron(); epd_clear(); - // epd_draw_grayscale_image(area, (uint8_t*)data); epd_draw_image(area, (uint8_t*)data, BLACK_ON_WHITE); epd_poweroff(); }