X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=sensor_graph%2Fsample_sensor3.lua;h=f2e469a87e8f470cf8bf54b9768d8e521d26f0c3;hb=9b83234660a4d70a29ddf3a76baccd20f9abfa58;hp=9d73d57e7010c05f889ab4e63c4dd873d69abcfd;hpb=c28acc820c3a9f1dc343e8b5aba4e65d95060c71;p=svn42.git diff --git a/sensor_graph/sample_sensor3.lua b/sensor_graph/sample_sensor3.lua index 9d73d57..f2e469a 100755 --- a/sensor_graph/sample_sensor3.lua +++ b/sensor_graph/sample_sensor3.lua @@ -7,15 +7,15 @@ require('io') function parse_value(str) last_temp = 0.0 last_light = 0 - if string.find(str,"Sensor T: Temp C:") then - last_temp = tonumber(string.sub(str,18)) + if string.find(str,"temp0: Temp C:") then + last_temp = tonumber(string.sub(str,15)) os.execute(string.format("rrdtool update /home/sensortemp.rrd -t temp N:%f", last_temp)) - print(string.format("t: %f Grad Celsius",last_temp)) + --print(string.format("t: %f Grad Celsius",last_temp)) end - if string.find(str,"Sensor P: Photo:") then - last_light = tonumber(string.sub(str,17)) + if string.find(str,"photo0: Photo:") then + last_light = tonumber(string.sub(str,15)) os.execute(string.format("rrdtool update /home/sensorlight.rrd -t light N:%d", last_light)) - print(string.format("p: %d",last_light)) + --print(string.format("p: %d",last_light)) end if string.find(str,"movement") then --last_movement=1