homecontrol-bh1750: minor updates
This commit is contained in:
parent
09ef8e2f1a
commit
93bb49295b
1 changed files with 3 additions and 3 deletions
6
main.py
6
main.py
|
@ -7,8 +7,8 @@ import wifi
|
|||
import bh1750
|
||||
|
||||
CONFIG = "config.json"
|
||||
ADDRESS="http://192.168.11.21:5000"
|
||||
TIMEOUT_UPDATE = 5
|
||||
ADDRESS="http://192.168.11.11:5000"
|
||||
TIMEOUT_UPDATE = 600
|
||||
|
||||
class SensorBH1750:
|
||||
def __init__(self):
|
||||
|
@ -39,7 +39,7 @@ class SensorBH1750:
|
|||
self.send_update(self.id_s, "luminance", l)
|
||||
|
||||
def send_update(self, id_s, type_s, value):
|
||||
url = "%s/sensors/update" % ADDRESS
|
||||
url = "%s/sensor/update" % ADDRESS
|
||||
data = {"id": id_s, "type": type_s, "value": value}
|
||||
try:
|
||||
r = requests.post(url, json=data)
|
||||
|
|
Loading…
Reference in a new issue