diff --git a/src/config.py b/src/config.py new file mode 100644 index 0000000..5b5df89 --- /dev/null +++ b/src/config.py @@ -0,0 +1,10 @@ +# Config section +# Fill in the next 2 lines if your MQTT server expected authentication +MQTT_USER="" +MQTT_PASS="" +MQTT_HOST="raspberrypi" +MQTT_PORT=1883 +MQTT_TOPIC="weathersensors/rtl_433" +MQTT_QOS=0 +DEBUG=False # Change to True to log all MQTT messages +# End config section