We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad0f12 commit c33ff22Copy full SHA for c33ff22
examples/16bit_hello/16bit_hello.ino
@@ -510,7 +510,7 @@ void show_canvas() {
510
display.setFont(&FreeSansBold18pt7b); // Use a custom font
511
display.setTextSize(1); // and reset to 1:1 scale
512
513
- char *label[] = { "X:", "Y:", "Z:" }; // Labels for each axis
+ const char *label[] = { "X:", "Y:", "Z:" }; // Labels for each axis
514
const uint16_t color[] = { 0xF800, 0x07E0, 0x001F }; // Colors for each value
515
516
// To get the labels right-aligned, one option would be simple trial and
0 commit comments