source: de.wigbels.ruby/hothotread/hothotpiper_water.rb @ aa10f5c

Last change on this file since aa10f5c was aa10f5c, checked in by Norbert Wigbels <frickel@…>, 5 years ago

Wasser, finally

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#!/usr/bin/env ruby
2require 'pi_piper'
3require 'eventmachine'
4
5include PiPiper
6
7
8mypath = File.expand_path(File.dirname(__FILE__))
9trigger_step = 1
10trigger_watch = 0
11counter = 0.0
12timestamp =  Time.now.to_i
13
14
15def 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
26end
27
28watch :pin => 18, :trigger => :falling do
29  puts('triggered watch to 1')
30  trigger_watch = 1
31end
32
33
34rrdpath = mypath + "/water.rrd"
35#counter = last_rrd_count(rrdpath)
36puts('Counter restored to: ' + counter.to_s)
37
38EventMachine.run do
39  EM.add_periodic_timer(1) do
40    if trigger_watch == 1 then
41      counter = counter + trigger_step
42      system("rrdtool update #{rrdpath} N:#{counter}:#{trigger_step}")
43      puts('Counter updated to: ' + counter.to_s)
44      timestamp =  Time.now.to_i
45      trigger_watch = 0
46    elsif Time.now.to_i - timestamp > 3600
47      system("rrdtool update #{rrdpath} N:#{counter}:0")
48      timestamp = Time.now.to_i
49    end
50  end
51end
52
Note: See TracBrowser for help on using the repository browser.