projects
/
svn42.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9db6a57
)
temporary fix
author
Bernhard Tittelbach
<xro@realraum.at>
Sun, 14 Mar 2010 18:02:16 +0000
(18:02 +0000)
committer
Bernhard Tittelbach
<xro@realraum.at>
Sun, 14 Mar 2010 18:02:16 +0000
(18:02 +0000)
sensor_graph/sample_sensor.lua
patch
|
blob
|
history
diff --git
a/sensor_graph/sample_sensor.lua
b/sensor_graph/sample_sensor.lua
index
bcd6ec3
..
70c5d4e
100644
(file)
--- 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