add home automation temperature sensor

This commit is contained in:
Alexander Knöbel 2021-06-21 21:41:27 +02:00
parent d7929f15fc
commit 36671a29d3
1 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,72 @@
#!/usr/bin/env python3
"""
fritzbox_homeauto_temperature - A munin plugin for Linux to monitor AVM Fritzbox homeautomation temperature
Copyright (C) 2021 Alexander Knöbel
Author: Alexander Knöbel
Like Munin, this plugin is licensed under the GNU GPL v2 license
http://www.opensource.org/licenses/GPL-2.0
This plugin requires the fritzconnection plugin. To install it using pip:
pip install fritzconnection
This plugin supports the following munin configuration parameters:
[fritzbox_*]
env.fritzbox_ip [ip address of the fritzbox]
env.fritzbox_username [fritzbox username]
env.fritzbox_password [fritzbox password]
#%# family=auto contrib
#%# capabilities=autoconf
"""
import os
import sys
from fritzconnection.lib.fritzhomeauto import FritzHomeAutomation
server = os.environ["fritzbox_ip"]
username = os.environ["fritzbox_username"]
password = os.environ["fritzbox_password"]
def print_values():
try:
fha = FritzHomeAutomation(address=server, user=username, password=password)
except Exception as e:
sys.exit("Couldn't get home automation")
info = fha.device_informations()
for device in info:
if device["NewTemperatureIsEnabled"] == "ENABLED":
identifier = device["NewAIN"].replace(" ","_")
print(identifier + ".value %.1f" % (int(device["NewTemperatureCelsius"]) / 10))
def print_config():
try:
fha = FritzHomeAutomation(address=server, user=username, password=password)
except Exception as e:
sys.exit("Couldn't get home automation")
print("graph_title AVM Fritz!Box Homeautomation Temperature")
print("graph_args -l 0")
print("graph_vlabel degrees Celsius")
print("graph_scale no")
print("graph_category sensors")
info = fha.device_informations()
for device in info:
if device["NewTemperatureIsEnabled"] == "ENABLED":
identifier = device["NewAIN"].replace(" ","_")
print(identifier + ".label " + device["NewDeviceName"] + " Temperature")
print(identifier + ".draw LINE1")
if os.environ.get("host_name"):
print("host_name " + os.environ["host_name"])
if __name__ == "__main__":
if len(sys.argv) == 2 and sys.argv[1] == "config":
print_config()
elif len(sys.argv) == 2 and sys.argv[1] == "autoconf":
print("yes") # Some docs say it'll be called with fetch, some say no arg at all
elif len(sys.argv) == 1 or (len(sys.argv) == 2 and sys.argv[1] == "fetch"):
try:
print_values()
except:
sys.exit("Couldn't retrieve fritzbox home automation")