Skip to content

Commit c12c1b0

Browse files
committed
Fixed compile problem with OLED basic
1 parent 636ad94 commit c12c1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FluidNC/src/Custom/oled_basic.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ static void oledDRO() {
134134
oled_y_pos += 10;
135135
}
136136
for (auto pin : ctrl_pins->_pins) {
137-
char letter = pin->_letter;
137+
char letter = pin->letter();
138138
if (!isdigit(letter)) {
139139
oled->drawString(110, oled_y_pos, String(letter));
140140
draw_checkbox(120, oled_y_pos + 3, 7, 7, pin->get());

0 commit comments

Comments
 (0)