Skip to content

Commit 947eca1

Browse files
committed
Returns light as %
1 parent 0545bb6 commit 947eca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smart_incubator/server/smart_controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def retrieve_day(self, incubator, days=0, full=False):
132132
if full:
133133
select_query = "SELECT id, device_time, temperature, humidity, light, set_temp, set_hum, set_light, lights_on, lights_off, dd_mode FROM incubators WHERE id = %s AND device_time BETWEEN '%s' AND '%s'" % ( int(incubator), start, end)
134134
else:
135-
select_query = "SELECT id, device_time, temperature, humidity, light FROM incubators WHERE id = %s AND device_time BETWEEN '%s' AND '%s'" % ( int(incubator), start, end)
135+
select_query = "SELECT id, device_time, temperature, humidity, light/10 as light FROM incubators WHERE id = %s AND device_time BETWEEN '%s' AND '%s'" % ( int(incubator), start, end)
136136

137137
data = self.query(select_query)
138138
return data

0 commit comments

Comments
 (0)