From c12c1b0c47b4beb254dcffbcdc9b8553e443e97a Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Mon, 12 Sep 2022 07:49:36 -1000 Subject: [PATCH] Fixed compile problem with OLED basic --- FluidNC/src/Custom/oled_basic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FluidNC/src/Custom/oled_basic.cpp b/FluidNC/src/Custom/oled_basic.cpp index 7e2979020..64357272a 100644 --- a/FluidNC/src/Custom/oled_basic.cpp +++ b/FluidNC/src/Custom/oled_basic.cpp @@ -134,7 +134,7 @@ static void oledDRO() { oled_y_pos += 10; } for (auto pin : ctrl_pins->_pins) { - char letter = pin->_letter; + char letter = pin->letter(); if (!isdigit(letter)) { oled->drawString(110, oled_y_pos, String(letter)); draw_checkbox(120, oled_y_pos + 3, 7, 7, pin->get());