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 support for contact, acceleration, and motion sensors #26

Open
wants to merge 1 commit into
base: main
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
16 changes: 15 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,20 @@ def metrics():
attrib["currentValue"] = 1
else:
attrib["currentValue"] = 0

if attrib["name"] == "contact":
if attrib["currentValue"] == "closed":
attrib["currentValue"] = 0
elif attrib["currentValue"] == "open":
attrib["currentValue"] = 1

if attrib["name"] == "acceleration" or \
attrib["name"] == "motion":
if attrib["currentValue"] == "active":
attrib["currentValue"] = 1
elif attrib["currentValue"] == "inactive":
attrib["currentValue"] = 0

if attrib["name"] == "power":
if attrib["currentValue"] == "on":
attrib["currentValue"] = 1
Expand All @@ -67,7 +81,7 @@ def metrics():

# Sanitise the device name as it will appear in the label
device_name = device_details['label'].lower().replace(' ','_').replace('-','_')
# Sanitise the metric name
# Sanitise the metric name
metric_name = attrib['name'].lower().replace(' ','_').replace('-','_')
# Create the dict that holds the data
device_attributes.append({
Expand Down