Config started, documentation updated
This commit is contained in:
parent
b331683d4b
commit
851c765008
17
README.md
17
README.md
@ -13,7 +13,7 @@ Logs the electric energy consumption in the hq with the power of a raspberry and
|
|||||||
#### RaspberryPi
|
#### RaspberryPi
|
||||||
* Raspbian 7.8
|
* Raspbian 7.8
|
||||||
* python 3.2
|
* python 3.2
|
||||||
* requests >= 2.5
|
* requests >= 2.5 (installierbar via pip)
|
||||||
|
|
||||||
#### Server
|
#### Server
|
||||||
* Apache >= 2.2
|
* Apache >= 2.2
|
||||||
@ -46,9 +46,9 @@ Ich gehe davon aus, dass für das Strommonitoring eine eigenen Subdomain verwede
|
|||||||
<IfModule mod_ssl.c>
|
<IfModule mod_ssl.c>
|
||||||
<VirtualHost *:443>
|
<VirtualHost *:443>
|
||||||
ServerAdmin webmaster@example.com
|
ServerAdmin webmaster@example.com
|
||||||
ServerName strom.example.com
|
ServerName power.example.com
|
||||||
|
|
||||||
DocumentRoot /srv/hqsatellite/strom/
|
DocumentRoot /srv/powerpi/
|
||||||
<Directory />
|
<Directory />
|
||||||
Options FollowSymLinks
|
Options FollowSymLinks
|
||||||
AllowOverride None
|
AllowOverride None
|
||||||
@ -85,14 +85,13 @@ der Cronjob wird jeden Minute aufgerufen und erzeugt jeweils die aktuellen Kurve
|
|||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- config Datei für power.py
|
- ✔ - config Datei für power.py
|
||||||
- wird ssl genutzt, oder nicht, http-basic-auth (ja/nein), wenn ja: Zugangsdaten
|
- ✔ - wird ssl genutzt, oder nicht, http-basic-auth (ja/nein), wenn ja: Zugangsdaten
|
||||||
- "rrd"-Server
|
- ✔ - "rrd"-Server
|
||||||
- .htaccess Setup (mindestens erklären wie man es einrichtet)
|
- .htaccess Setup (mindestens erklären wie man es einrichtet)
|
||||||
- leere power.rrd
|
- leere power.rrd
|
||||||
- rrd gen-script für ein Jahr ohne Datenverlust; aber nur ein rra
|
- rrd gen-script für ein Jahr ohne Datenverlust; aber nur ein rra
|
||||||
- rrd für den Apachen unzugänglich ablegen
|
- rrd für den Apachen unzugänglich ablegen
|
||||||
- Schritt-für-Schritt Anleitung (vielleicht)
|
- Schritt-für-Schritt Anleitung (vielleicht)
|
||||||
|
- Schleife zum für den erneuten Senderversuch wenn der Server nicht erreichbar ist
|
||||||
Hier o
|
- wie lange soll es erneut versucht werden?
|
||||||
|
|
65
pi/power.py
65
pi/power.py
@ -7,9 +7,19 @@ import threading
|
|||||||
import time
|
import time
|
||||||
import queue
|
import queue
|
||||||
import requests
|
import requests
|
||||||
|
import configparser
|
||||||
|
|
||||||
def trans():
|
def trans():
|
||||||
|
global serverconf
|
||||||
|
# build together url and headers
|
||||||
|
uri = ""
|
||||||
|
if serverconf.getboolean("ssl") == True:
|
||||||
|
uri = "https://"
|
||||||
|
else:
|
||||||
|
uri = "http://"
|
||||||
|
uri = uri + serverconf["url"] + "/get.php"
|
||||||
|
if sys.stdout.isatty():
|
||||||
|
print("Remote URI: " + uri)
|
||||||
queuelast = time.time()
|
queuelast = time.time()
|
||||||
while True:
|
while True:
|
||||||
# get value from queue (blocking)
|
# get value from queue (blocking)
|
||||||
@ -22,15 +32,21 @@ def trans():
|
|||||||
# put payload together
|
# put payload together
|
||||||
payload = {"val": str(queuetime) + ";" + str(queueval)}
|
payload = {"val": str(queuetime) + ";" + str(queueval)}
|
||||||
if sys.stdout.isatty():
|
if sys.stdout.isatty():
|
||||||
print("request https://strom.ccc-ffm.de:2342/get.php => "+repr(payload))
|
print("request " + uri + " => "+repr(payload))
|
||||||
# send to webserver via http post
|
# send to webserver via http post
|
||||||
|
#
|
||||||
|
# Um den Krempel hier muss noch mal eine While Schleife rum, damit die Daten nicht verloren gehen.
|
||||||
|
#
|
||||||
try:
|
try:
|
||||||
r = requests.post("https://strom.ccc-ffm.de:2342/get.php", data=payload, verify=False, auth=('CCC', 'Freundschaft'), timeout=10, headers={'connection':'close'})
|
if serverconf.getboolean("basicauth") == True:
|
||||||
|
r = requests.post(uri, data=payload, verify=False, auth=(serverconf["user"], serverconf["password"]), timeout=10, headers={'connection':'close'})
|
||||||
|
else:
|
||||||
|
r = requests.post(uri, data=payload, verify=False, timeout=10, headers={'connection':'close'})
|
||||||
except:
|
except:
|
||||||
# some exception handling needed
|
print("Exception raised!")
|
||||||
pass
|
else:
|
||||||
if sys.stdout.isatty():
|
if sys.stdout.isatty():
|
||||||
print("server response: " + str(r.status_code))
|
print("server response: " + str(r.status_code))
|
||||||
queuelast = queuetime
|
queuelast = queuetime
|
||||||
|
|
||||||
else:
|
else:
|
||||||
@ -40,8 +56,11 @@ def trans():
|
|||||||
print("Drop queued element")
|
print("Drop queued element")
|
||||||
|
|
||||||
def readgpio():
|
def readgpio():
|
||||||
|
global gpiopath
|
||||||
|
global gpioconf
|
||||||
|
global smconf
|
||||||
# open gpio filehandle
|
# open gpio filehandle
|
||||||
gpio = open("/sys/class/gpio/gpio24/value", "r")
|
gpio = open(gpiopath + "value", "r")
|
||||||
# setup polling
|
# setup polling
|
||||||
gpiopoll = poll()
|
gpiopoll = poll()
|
||||||
gpiopoll.register(gpio, POLLERR)
|
gpiopoll.register(gpio, POLLERR)
|
||||||
@ -70,9 +89,9 @@ def readgpio():
|
|||||||
if gpioval == '0':
|
if gpioval == '0':
|
||||||
now = time.time()
|
now = time.time()
|
||||||
# plausibility check
|
# plausibility check
|
||||||
if ((now-last) >= 0.2):
|
if ((now-last) >= gpioconf.getfloat("mintime")):
|
||||||
# calculate current power consumption
|
# calculate current power consumption
|
||||||
power = round(1800 / (now-last),2)
|
power = round((3600000/smconf.getint("impkwh")) / (now-last),2)
|
||||||
if sys.stdout.isatty():
|
if sys.stdout.isatty():
|
||||||
print("Current power consumption: " + str(power) + " Watt")
|
print("Current power consumption: " + str(power) + " Watt")
|
||||||
print("GPIO state: " + gpioval)
|
print("GPIO state: " + gpioval)
|
||||||
@ -86,19 +105,30 @@ def readgpio():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
# read config
|
||||||
|
conf = configparser.ConfigParser()
|
||||||
|
conf.read("powerpi.conf")
|
||||||
|
conf.sections()
|
||||||
|
gpioconf = conf['gpio']
|
||||||
|
serverconf = conf['server']
|
||||||
|
smconf = conf['smartmeter']
|
||||||
|
if serverconf["url"] == "power.example.com":
|
||||||
|
print("FATAL: configuration not adapted! Aborting!")
|
||||||
|
exit(1)
|
||||||
|
gpiopath = "/sys/class/gpio/gpio" + gpioconf["port"] + "/"
|
||||||
# initialise gpio interfaces
|
# initialise gpio interfaces
|
||||||
try:
|
try:
|
||||||
if not os.path.exists("/sys/class/gpio/gpio24"):
|
if not os.path.exists(gpiopath):
|
||||||
# if not already exported, export gpio 24
|
# if not already exported, export gpio port
|
||||||
gpioinit = open("/sys/class/gpio/export", "w")
|
gpioinit = open("/sys/class/gpio/export", "w")
|
||||||
gpioinit.write("24\n")
|
gpioinit.write(gpioconf["port"] + "\n")
|
||||||
gpioinit.close()
|
gpioinit.close()
|
||||||
# set direction of gpio 24 to "IN"
|
# set direction of gpio port to "IN"
|
||||||
gpiopin = open("/sys/class/gpio/gpio24/direction", "w")
|
gpiopin = open(gpiopath + "direction", "w")
|
||||||
gpiopin.write("in")
|
gpiopin.write("in")
|
||||||
gpiopin.close()
|
gpiopin.close()
|
||||||
# set trigger to falling edge
|
# set trigger to falling edge
|
||||||
gpiotype = open("/sys/class/gpio/gpio24/edge", "w")
|
gpiotype = open(gpiopath + "edge", "w")
|
||||||
gpiotype.write("falling")
|
gpiotype.write("falling")
|
||||||
gpiotype.close()
|
gpiotype.close()
|
||||||
except:
|
except:
|
||||||
@ -110,7 +140,8 @@ if __name__ == "__main__":
|
|||||||
powerqueue = queue.Queue()
|
powerqueue = queue.Queue()
|
||||||
|
|
||||||
# disable ssl "no verification" warnings
|
# disable ssl "no verification" warnings
|
||||||
requests.packages.urllib3.disable_warnings()
|
if serverconf.getboolean("sslself") == True:
|
||||||
|
requests.packages.urllib3.disable_warnings()
|
||||||
|
|
||||||
# initialising and starting threads
|
# initialising and starting threads
|
||||||
th1 = threading.Thread(target=readgpio)
|
th1 = threading.Thread(target=readgpio)
|
||||||
|
14
pi/powerpi.conf
Normal file
14
pi/powerpi.conf
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[smartmeter]
|
||||||
|
impkwh: 2000
|
||||||
|
|
||||||
|
[gpio]
|
||||||
|
port: 24
|
||||||
|
mintime: 0.2
|
||||||
|
|
||||||
|
[server]
|
||||||
|
url: power.example.com
|
||||||
|
ssl: yes
|
||||||
|
basicauth: yes
|
||||||
|
user: basicUser
|
||||||
|
password: basicPass
|
||||||
|
sslself: yes
|
Loading…
x
Reference in New Issue
Block a user