Show Fahrenheit on PicoBricks OLED Instead of Celsius: Revision history

From ikev.in/w

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

28 April 2023

  • curprev 21:2721:27, 28 April 2023Ikevinax talk contribs 232 bytes +232 Created page with "In the file '''main.py''', replace this: <pre> oled.text("TEMP: {0:.2f}C".format(dht_sensor.temperature),0,30) </pre> ...with this: <pre> oled.text("TEMP: {0:.2f}F".format((dht_sensor.temperature * 1.8) + 32),0,30) </pre>"