Variable name fix

This commit is contained in:
Fabio Manganiello 2021-11-28 11:32:03 +01:00
parent 2d9dff7d4c
commit f6057274a0
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ class GpioSensorLtr559Plugin(GpioSensorPlugin):
ltr.update_sensor()
return {
'light': ltr559.get_lux(),
'proximity': ltr559.get_proximity(),
'light': ltr.get_lux(),
'proximity': ltr.get_proximity(),
}