Skip to content

Commit

Permalink
Fixed compile problem with OLED basic
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchBradley committed Sep 12, 2022
1 parent 636ad94 commit c12c1b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FluidNC/src/Custom/oled_basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit c12c1b0

Please sign in to comment.