From 10c11415c1e01f32ab8f5c699d500c794e489f0d Mon Sep 17 00:00:00 2001 From: gitProtogen Date: Fri, 6 Feb 2026 10:08:19 +0100 Subject: [PATCH] lifetime works --- ledy.ino | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ledy.ino b/ledy.ino index ca58833..b4ea307 100644 --- a/ledy.ino +++ b/ledy.ino @@ -306,12 +306,9 @@ void setup() pixels.begin(); pixels.clear(); - addNewTextNode("NET", 0xFF050505, false, 0, 0, 1, true, true, -1); - addNewTextNode("AWAIT", 0xFF050505, false, 0, 9, 1, true, true, -1); - - RGBWithIndex colors[2] = {RGBWithIndex(255, 0, 0, 0), RGBWithIndex(0, 0, 255, 6)}; - addNewMultiColor("HELLO WORLD", colors, 2, false, 0, 0, 1, true, true, -1); - + addNewTextNode("NET", 0xFF050505, false, 0, 0, 1, true, true, 100); + addNewTextNode("AWAIT", 0xFF050505, false, 0, 9, 1, true, true, 100); + pixels.show(); start_server(); }