diff options
Diffstat (limited to 'Common/sensors.py')
-rw-r--r-- | Common/sensors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Common/sensors.py b/Common/sensors.py index 36594d2..b967f45 100644 --- a/Common/sensors.py +++ b/Common/sensors.py @@ -5,7 +5,7 @@ Get Environmental Sensor Data. import External.lnetatmo as lnetatmo -def get_netatmo_readings(station='Ng58', modules=['Living Room', 'Bedroom']): +def get_netatmo_readings(home='Ng58', modules=['Living Room', 'Bedroom']): """ Get Netatmo Readings. @@ -46,7 +46,7 @@ def get_netatmo_readings(station='Ng58', modules=['Living Room', 'Bedroom']): clientSecret = clientSecret, \ username = username, \ password = password) - devList = lnetatmo.WeatherStationData(authorization, station=station) + devList = lnetatmo.WeatherStationData(authorization, home=home) # Get Data epochs = {} |