From a031a658b0a5358757e8256a92e833b94eb24628 Mon Sep 17 00:00:00 2001 From: Benjamin Klaus Date: Wed, 12 Jan 2022 14:48:30 +0100 Subject: [PATCH] fix usage examle of color565() --- docs/en/api/lcd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/api/lcd.md b/docs/en/api/lcd.md index 5aa4ce6a..f8285c0b 100644 --- a/docs/en/api/lcd.md +++ b/docs/en/api/lcd.md @@ -1192,7 +1192,7 @@ None #include uint16_t colorvalue=0; - colorvalue=color565(255,255,255); + colorvalue = M5.Lcd.color565(255,255,255); ```