You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I test this library on Arduino Nano, when I connected the data pin of DS18B20 to A7(D21), it would show "-127" in Serial Monitor by "Serial.print();", when changed A7 to D4, the showing is correct. When I want to print the temperature on OLED by "oled.print();" from this library, it always show "-127" either D21 or D4, D5, A0 ... why?
The text was updated successfully, but these errors were encountered:
The analog input pins can be used as digital pins, referred to as A0, A1, etc. The exception is the Arduino Nano, Pro Mini, and Mini’s A6 and A7 pins, which can only be used as analog inputs.
As above, You need to provide the full code to the e.g. pastebin, it could be the problem with timing.
The problem with pin naming i have the same on STM32F401, the name "PB12" is working perfect, but "PB_12" is not.
I test this library on Arduino Nano, when I connected the data pin of DS18B20 to A7(D21), it would show "-127" in Serial Monitor by "Serial.print();", when changed A7 to D4, the showing is correct. When I want to print the temperature on OLED by "oled.print();" from this library, it always show "-127" either D21 or D4, D5, A0 ... why?
The text was updated successfully, but these errors were encountered: