Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add home automation temperature sensor #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions fritzbox_homeauto_temperature.py
Original file line number Diff line number Diff line change
@@ -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")