Skip to content

Commit

Permalink
Changed light reading to luminance, for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
ZodiusInfuser committed Nov 24, 2022
1 parent 6bdf590 commit 2173d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enviro/boards/weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def get_sensor_readings(seconds_since_last):
"temperature": round(bme280_data[0], 2),
"humidity": round(bme280_data[2], 2),
"pressure": round(bme280_data[1] / 100.0, 2),
"light": round(ltr_data[BreakoutLTR559.LUX], 2),
"luminance": round(ltr_data[BreakoutLTR559.LUX], 2),
"wind_speed": wind_speed(),
"rain": rain,
"rain_per_second": rain_per_second,
Expand Down

0 comments on commit 2173d09

Please sign in to comment.