Integration Complete

Seems to work, debug print statements removed
This commit is contained in:
Aadi Desai 2022-03-02 12:34:11 +00:00
parent 1272b78f69
commit 35f98a2e99
No known key found for this signature in database
GPG key ID: CFFFE425830EF4D9
3 changed files with 21 additions and 6 deletions

6
.gitignore vendored
View file

@ -152,4 +152,8 @@ cython_debug/
#.idea/
# VSCode
.vscode/
.vscode/
# misc
OpenHaystack.app/
extract.txt

BIN
OpenHaystack.zip Normal file

Binary file not shown.

21
main.py
View file

@ -1,5 +1,4 @@
import requests
import json
import requests, json, subprocess, re
import paho.mqtt.client as mqtt
def OpenHayStackLocation():
@ -12,19 +11,31 @@ def on_connect(client, userdata, flags, rc):
def on_message(client, userdata, msg):
if msg.topic == "/data":
loc_lat, loc_lon = None, None
try:
subprocess.run("./OpenHaystack.app/Contents/MacOS/OpenHaystack > extract.txt", capture_outout=True, shell=True, timeout=5)
except Exception as e:
pass
with open("extract.txt", "r") as output:
lines = output.readlines()
for line in reversed(lines):
if "FindMyLocationReport" in line:
loc_lat = re.findall("latitude: (-?[0-9]*\.[0-9]*)", line)[0]
loc_lon = re.findall("longitude: (-?[0-9]*\.[0-9]*)", line)[0]
break
subprocess.run("pkill OpenHaystack", shell=True)
data = json.loads(msg.payload)
firebase_url = "https://leg-barkr.nw.r.appspot.com/readings/save"
firebase_headers = {
"Content-Type": "application/json",
"Device-ID": data["devID"]
}
loc_lat, loc_lon = OpenHayStackLocation()
firebase_data = {
"air_temp": data["air_temp"],
"cumulative_steps_today": data["day_steps"],
"humidity": data["hum_perc"],
"latitude": loc_lat,
"longitude": loc_lon,
"latitude": float(loc_lat),
"longitude": float(loc_lon),
"skin_temp": data['pet_temp']
}
r = requests.post(url = firebase_url, json = firebase_data, params = None, headers = firebase_headers) # add any other necessary values in request