Skip to content

Commit 8104887

Browse files
Fixed the issue that ESP201 cannot display the ANALOG pin value. (#1083)
1 parent d0bde79 commit 8104887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esp3d/src/core/commands/ESP201.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ void ESP3DCommands::ESP201(int cmd_params_pos, ESP3DMessage* msg) {
123123
}
124124
}
125125
value = digitalRead(pin);
126-
ok_msg = String(value);
127126
}
127+
ok_msg = String(value);
128128
}
129129
}
130130
}

0 commit comments

Comments
 (0)