geerlingguy / airgradient-prometheus

AirGradient Prometheus exporter.
MIT License
176 stars 59 forks source link

Converting OLED Display from Celsius to Fahrenheit #7

Closed dkeenes closed 2 years ago

dkeenes commented 3 years ago

Has anyone modified the Arduino ino file to convert the temperature on the OLED display from Celsius to Fahrenheit?

ArnaudKunzi commented 3 years ago

Change line 94 https://github.com/geerlingguy/airgradient-prometheus/blob/b1ceb31e1c1cb506ad24e3c73cf4d1c29fc98fc7/AirGradient-DIY.ino#L94

into

showTextRectangle(String(result.t*9/5+32),String(result.rh)+"%",false);