Last active
April 12, 2024 08:33
-
-
Save idiotandrobot/2b2e36d69fbf7293851a6b1c3d59d6e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import os | |
import sqlite3 | |
import time | |
import aranet4 | |
NUM_RETRIES = 10 | |
DEVICES = { | |
'bedroom': 'xx:xx:xx:xx:xx:xx' | |
} | |
db_path = os.path.join(os.path.expanduser('~'), 'aranet4.db') | |
con = sqlite3.connect(db_path) | |
cur = con.cursor() | |
cur.execute('''CREATE TABLE IF NOT EXISTS measurements( | |
device TEXT, | |
timestamp INTEGER, | |
temperature REAL, | |
humidity INTEGER, | |
pressure REAL, | |
CO2 INTEGER, | |
PRIMARY KEY(device, timestamp) | |
)''') | |
con.commit() | |
for name, mac in DEVICES.items(): | |
entry_filter = {} | |
res = cur.execute('''SELECT timestamp FROM measurements WHERE device = ? | |
ORDER BY timestamp DESC LIMIT 1''', (name,)) | |
row = res.fetchone() | |
if row is not None: | |
entry_filter['start'] = datetime.utcfromtimestamp(row[0]) | |
for attempt in range(NUM_RETRIES): | |
entry_filter['end'] = datetime.now() | |
try: | |
history = aranet4.client.get_all_records(mac, entry_filter) | |
break | |
except Exception as e: | |
print('attempt', attempt, 'failed, retrying:', e) | |
data = [] | |
for entry in history.value: | |
if entry.co2 < 0: | |
continue | |
data.append(( | |
name, | |
time.mktime(entry.date.utctimetuple()), | |
entry.temperature, | |
entry.humidity, | |
entry.pressure, | |
entry.co2 | |
)) | |
print('fetched', len(data), 'measurements', entry_filter) | |
cur.executemany( | |
'INSERT OR IGNORE INTO measurements VALUES(?, ?, ?, ?, ?, ?)', data) | |
con.commit() | |
con.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
time.mktime(entry.date.timetuple())
corrected totime.mktime(entry.date.utctimetuple()),