Update pinsDebug.h (#9874)

Fix display of analog input value.
This commit is contained in:
Ben Lye 2018-03-01 10:51:36 +00:00 committed by Scott Lahteine
parent 91db7930dc
commit e2df286444

View file

@ -151,7 +151,7 @@ inline void report_pin_state_extended(pin_t pin, bool ignore, bool extended = fa
else else
#endif #endif
{ {
if (!GET_ARRAY_IS_DIGITAL(pin)) { if (!GET_ARRAY_IS_DIGITAL(x)) {
sprintf_P(buffer, PSTR("Analog in = %5d"), analogRead(DIGITAL_PIN_TO_ANALOG_PIN(pin))); sprintf_P(buffer, PSTR("Analog in = %5d"), analogRead(DIGITAL_PIN_TO_ANALOG_PIN(pin)));
SERIAL_ECHO(buffer); SERIAL_ECHO(buffer);
} }