Hi, Please fix the following two lines in this file https://github.com/MHEtLive/MHEtLiveArduino/blob/master/mhetlive-avr-1.0.0/1.0.0/cores/tiny88/wiring_analog.c current (wrong): if (17 <= pin <= 18) pin -= 11; // allow for channel or pin numbers else if (19 <= pin <= 24) pin -= 19; should be (correct): if (17 <= pin && pin <= 18) pin -= 11; // allow for channel or pin numbers else if (19 <= pin && pin <= 24) pin -= 19; thanks and please avoid those lazy snakes :) Pavel.
Hi,
Please fix the following two lines in this file
https://github.com/MHEtLive/MHEtLiveArduino/blob/master/mhetlive-avr-1.0.0/1.0.0/cores/tiny88/wiring_analog.c
current (wrong):
should be (correct):
thanks and please avoid those lazy snakes :)
Pavel.