Last change
on this file since 05d3bab was 2c75e95, checked in by Norbert Wigbels <frickel@…>, 8 years ago |
Wassersensor
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[8cc14b9] | 1 | #!/usr/bin/env ruby
|
---|
| 2 | require 'pi_piper'
|
---|
[1801b32] | 3 | require 'eventmachine'
|
---|
| 4 |
|
---|
[8cc14b9] | 5 | include PiPiper
|
---|
| 6 |
|
---|
[1801b32] | 7 |
|
---|
[8cc14b9] | 8 | mypath = File.expand_path(File.dirname(__FILE__))
|
---|
| 9 | trigger_step = 0.01
|
---|
| 10 | trigger_watch = 0
|
---|
| 11 | counter = 0.0
|
---|
| 12 | timestamp = Time.now.to_i
|
---|
| 13 |
|
---|
[1801b32] | 14 |
|
---|
[8cc14b9] | 15 | def last_rrd_count(concretepath)
|
---|
| 16 | val = 0.0
|
---|
| 17 | handle = IO.popen("rrdtool lastupdate #{concretepath}")
|
---|
| 18 | handle.each_line do |line|
|
---|
| 19 | m = line.match("^[0-9]*: ([0-9.]*) [0-9.]*")
|
---|
| 20 | if m
|
---|
| 21 | val = m[1].to_f
|
---|
| 22 | break
|
---|
| 23 | end
|
---|
| 24 | end
|
---|
| 25 | return val
|
---|
| 26 | end
|
---|
| 27 |
|
---|
[2c75e95] | 28 | watch :pin => 4, :trigger => :rising, :pull => :up do
|
---|
[8cc14b9] | 29 | puts('triggered watch to 1')
|
---|
| 30 | trigger_watch = 1
|
---|
| 31 | end
|
---|
| 32 |
|
---|
[1801b32] | 33 |
|
---|
[8cc14b9] | 34 | rrdpath = mypath + "/gasneu.rrd"
|
---|
| 35 | counter = last_rrd_count(rrdpath)
|
---|
[1801b32] | 36 | puts('Counter restored to: ' + counter.to_s)
|
---|
[2c75e95] | 37 | #PiPiper::Pin.new(:pin => 4, :direction => :in)
|
---|
[1801b32] | 38 |
|
---|
| 39 | EventMachine.run do
|
---|
| 40 | EM.add_periodic_timer(1) do
|
---|
| 41 | if trigger_watch == 1 then
|
---|
| 42 | counter = counter + trigger_step
|
---|
| 43 | system("rrdtool update #{rrdpath} N:#{counter}:#{trigger_step}")
|
---|
| 44 | puts('Counter updated to: ' + counter.to_s)
|
---|
| 45 | timestamp = Time.now.to_i
|
---|
| 46 | trigger_watch = 0
|
---|
| 47 | elsif Time.now.to_i - timestamp > 3600
|
---|
| 48 | system("rrdtool update #{rrdpath} N:#{counter}:0")
|
---|
| 49 | timestamp = Time.now.to_i
|
---|
| 50 | end
|
---|
[8cc14b9] | 51 | end
|
---|
| 52 | end
|
---|
| 53 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.