Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WeatherBoard.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ def hex2int(s):
if (config.OLED_Present):
Scroll_SSD1306.addLineOLED(display, ("Wind Speed=\t%0.2f MPH")%(currentWindSpeed))
Scroll_SSD1306.addLineOLED(display, ("Rain Total=\t%0.2f in")%(totalRain))
if (config.ADS1015_Present or config.ADS1115_Present):
Scroll_SSD1306.addLineOLED(display, "Wind Dir=%0.2f Degrees" % weatherStation.current_wind_direction())
if (config.ADS1015_Present or config.ADS1115_Present):
Scroll_SSD1306.addLineOLED(display, "Wind Dir=%0.2f Degrees" % weatherStation.current_wind_direction())

print("MPH wind_gust=\t%0.2f MPH")%(currentWindGust)
if (config.ADS1015_Present or config.ADS1115_Present):
Expand Down