source: de.wigbels.ruby/hothotread/hothotpiper.rb @ 53aed1c

Last change on this file since 53aed1c was 53aed1c, checked in by Norbert Wigbels <njw@…>, 9 years ago

Gaszaehler mit RRDTool-Auswertung

  • Property mode set to 100644
File size: 797 bytes
Line 
1#!/usr/bin/env ruby
2#
3# Author: Norbert Wigbels - foobla.wigbels.de/uber-foobla
4#
5# HotHotPiper continously reads the status of a
6# reed contact attached to the Raspberry Pi GPIO
7#
8# The reed measures gas usage.
9#
10# A magig URL is formed and called; the url
11# stores the sensor-data to wigbels.net
12#
13# todo: status-led
14#
15
16#------------------------------------------
17# Tainted mode 0-4
18$SAFE=0
19
20#------------------------------------------
21require 'net/http'
22require 'pi_piper'
23
24include PiPiper
25
26$mypath = File.expand_path(File.dirname(__FILE__))
27
28
29watch :pin => 4, :trigger => :falling do 
30  puts('added 10 liter of gas to sensor-database')
31  Net::HTTP.get(URI.parse('http://www.wigbels.net/cgi-bin/hhw.rb?sensorid=1&data=10'))
32  system("rrdtool update #{$mypath}/gas.rrd N:10")
33end
34
35PiPiper.wait
Note: See TracBrowser for help on using the repository browser.