Skip to content

Commit 1f080b1

Browse files
committed
Open the server to the world - ready for production
1 parent df57cf6 commit 1f080b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

smart_incubator/server/smart_controller.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def _parse_serial_line(self,line):
204204
return
205205

206206
id, command, counter, device_time, temperature, humidity, light, set_temp, set_hum, set_light, lights_on, lights_off, dd_mode = fields
207-
#if int(id) == 0 : device_time = time.time()
207+
if int(id) == 0 : device_time = time.time()
208208

209209
out = collections.OrderedDict()
210210
out['id'] = int(id)
@@ -231,7 +231,7 @@ def _sync_time(self, device_id, device_time):
231231
now = int(round(time.time()))
232232
if abs(device_time - now) > self._delta_time_threshold and device_id > 0:
233233
logging.warning("Current time is %i, but time on device %i is %i, syncing this device"% (now, device_id, device_time))
234-
return self.sendCommand(device_id, cmd='set_time', value=snow)
234+
return self.sendCommand(device_id, cmd='set_time', value=now)
235235

236236
def _write_row_to_file(self, fields):
237237
"""
@@ -479,7 +479,7 @@ def transfer_file_to_db(filename, db_credentials):
479479
serial_fetcher = SerialController(option_dict["port"], db_credentials=db_credentials)
480480

481481
if option_dict['web']:
482-
server = webServer(host='localhost', port=8090, serial_fetcher=serial_fetcher)
482+
server = webServer(host='0.0.0.0', port=8090, serial_fetcher=serial_fetcher)
483483
server.start()
484484
else:
485485
serial_fetcher.start()

0 commit comments

Comments
 (0)