add custom config file

This commit is contained in:
robert 2021-12-11 06:54:55 +01:00
parent 5fd54ae9ad
commit 93ac5d133a
1 changed files with 10 additions and 0 deletions

10
src/config.py Normal file
View File

@ -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