Skip to content

Instantly share code, notes, and snippets.

@Jodaille
Created October 25, 2022 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jodaille/38a12c2b8851b8b35a22a55442e47f13 to your computer and use it in GitHub Desktop.
Save Jodaille/38a12c2b8851b8b35a22a55442e47f13 to your computer and use it in GitHub Desktop.
adaptation of RTL433-to-mqtt prevent too low and too high temperatures values
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import subprocess
import sys
import time
import paho.mqtt.client as mqtt
import os
import json
import re
import time
from config import *
rtl_433_cmd = "/usr/bin/rtl_433 -F json"
important_rtl_output_re = re.compile("^(Found|Tuned)")
# Define MQTT event callbacks
def on_connect(client, userdata, flags, rc):
connect_statuses = {
0: "Connected",
1: "incorrect protocol version",
2: "invalid client ID",
3: "server unavailable",
4: "bad username or password",
5: "not authorised"
}
print("MQTT: " + connect_statuses.get(rc, "Unknown error"))
def on_disconnect(client, userdata, rc):
if rc != 0:
print("Unexpected disconnection")
else:
print("Disconnected")
def on_message(client, obj, msg):
print(msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
def on_publish(client, obj, mid):
print("Pub: " + str(mid))
def on_subscribe(client, obj, mid, granted_qos):
print("Subscribed: " + str(mid) + " " + str(granted_qos))
def on_log(client, obj, level, string):
print(string)
# Setup MQTT connection
mqttc = mqtt.Client()
mqttc.on_connect = on_connect
mqttc.on_subscribe = on_subscribe
mqttc.on_disconnect = on_disconnect
if DEBUG:
print("Debugging messages enabled")
mqttc.on_log = on_log
mqttc.on_message = on_message
mqttc.on_publish = on_publish
if MQTT_PASS:
print("Connecting with authentication")
mqttc.username_pw_set(MQTT_USER, password=MQTT_PASS)
else:
print("Connecting without authentication")
mqttc.connect(MQTT_HOST, MQTT_PORT, 60)
mqttc.loop_start()
# Start RTL433 listener
print("Starting RTL433")
rtl433_proc = subprocess.Popen(rtl_433_cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True)
LastValue = None
while True:
if rtl433_proc.poll() is not None:
print("RTL433 exited with code " + str(rtl433_proc.poll()))
sys.exit(rtl433_proc.poll())
for line in iter(rtl433_proc.stdout.readline, '\n'):
if DEBUG:
print("RTL: " + line)
elif important_rtl_output_re.match(line):
print(line)
if rtl433_proc.poll() is not None:
print("RTL433 exited with code " + str(rtl433_proc.poll()))
sys.exit(rtl433_proc.poll())
# time
# protocol
# model
# id
# channel
# battery_ok
# temperature_C
# humidity
# mic
# mod
# freq
# rssi
# snr
# noise
if "time" in line:
mqttc.publish(MQTT_TOPIC, payload=line, qos=MQTT_QOS, retain=True)
json_dict = json.loads(line)
temperature = 110.0
time = None
for item in json_dict:
value = json_dict[item]
# print(item)
if item == "time":
time = value
if item == "temperature_C":
temperature = value
if item == "model":
subtopic = value
if item == "id":
subtopic += "/" + str(value)
for item in json_dict:
value = json_dict[item]
if (not "model" in item) and (type(value) is not list):
if (-40.0 < temperature < 50.0 and temperature != LastValue):
print(temperature)
LastValue = temperature
print(time)
try:
mqttc.publish(MQTT_TOPIC+"/"+subtopic+"/"+item, payload=value, qos=MQTT_QOS, retain=True)
except TypeError:
print("TypeError intercepted")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment