const char index_html[] PROGMEM = R"rawliteral( LED Panel Control

LED Panel Control


100

Current Text Nodes

Add Text Node (Full Control)

void addNewTextNode(char text[TEXT_MAX_LENGTH + 1], uint32_t color, bool handle_pos_via_cursor = true, short pos_x = 0, short pos_y = 0, unsigned char scroll_slowness = 1, bool is_scrolling = true, bool is_small = true, short disappear_time = -1)
The text to display.
Color of the text.
X coordinate of the text.
Y coordinate of the text.
Font size of the text.
Animation slowness (0-255).
If checked, the text will wrap around the screen.

Add Multicolor Text Node

void addNewMultiColor(char text[TEXT_MAX_LENGTH + 1], RGBWithIndex colors[4], unsigned char color_count, bool handle_pos_via_cursor = true, short pos_x = 0, short pos_y = 0, unsigned char scroll_slowness = 1, bool is_scrolling = true, bool is_small = true, short disappear_time = -1)
The text to display.
Comma-separated list of hex colors (max 4).
X coordinate of the text.
Y coordinate of the text.
Font size of the text.
Animation slowness (0-255).
If checked, the text will wrap around the screen.
)rawliteral";