123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- [main]
- publish_on_mqtt = True
- store_in_influxdb = True
- sensors_config_yml = jeelinklog_sensors.yml
- influx_config_yml = jeelinklog_influxdb.yml
- log_path = /home/pi/logs/jeelinklog
- logfile_new_sensors = jeelink_new_sensors.log
- [jeelink]
- serialport = /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AL01MYTF-if00-port0
- baudrate = 57600
- [mqtt]
- enable = True
- server = 127.0.0.1
- port = 1883
- user =
- password =
- # topic prefix
- topic_prefix = LaCrosse
- topic_prefix_outside_temphum = wetter/atemphum
- # additional single topics for outside temp/hum
- topic_outside_temp = wetter/atemp
- topic_outside_hum = wetter/ahum
- topic_outside_dew = wetter/dewpoint
- topic_outside_abshum = wetter/abshum
- # topic for notifications (low battery, new sensor found...)
- subtopic_notify = NOTIFY
- publish_unknown_sensors = False
- publish_unknown_new_sensors = True
- [sensors]
- # average sensor values - average over that many received readings
- average_value_steps = 5
- max_off_value = 2.0
- ignore_off_value_timeout = 60
- # interval in s to report data via MQTT
- publish_interval = 60
- # interval in s to store data in InfluxDB
- store_interval = 300
- publish_interval_outside = 120
- store_interval_outside = 300
- data_maxage = 600
- outside_sensors_use_median = True
- # otherwise average is used
- calculate_dewpoint = True
- calculate_absolute_humidity = True
- write_dewpoint_to_influxdb = True
- write_abshum_to_influxdb = True
- # for calculated (averaged from multiple sensors)
- influxdb_instance_combined_outside_sensors = wetter
- influxdb_sensorname_combined_outside_sensors = Outside
|