From 8befba2f0ce9edf38e4fec29cb69a6225d151c54 Mon Sep 17 00:00:00 2001 From: Bernhard Tittelbach Date: Sun, 14 Mar 2010 18:02:16 +0000 Subject: [PATCH] temporary fix --- sensor_graph/sample_sensor.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sensor_graph/sample_sensor.lua b/sensor_graph/sample_sensor.lua index bcd6ec3..70c5d4e 100644 --- a/sensor_graph/sample_sensor.lua +++ b/sensor_graph/sample_sensor.lua @@ -13,11 +13,11 @@ end function parse_value(str) if string.find(str,"Temp C:") then - last_temp = tonumber(string.sub(str,8)) + last_temp = tonumber(string.sub(str,11)) --print(string.format("t: %f Grad Celsius",last_temp)) end if string.find(str,"Photo:") then - last_light = tonumber(string.sub(str,7)) + last_light = tonumber(string.sub(str,10)) --print(string.format("p: %d",last_light)) end if string.find(str,"movement") then -- 1.7.10.4