jeelinklog.ini 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [main]
  2. publish_on_mqtt = True
  3. store_in_influxdb = True
  4. sensors_config_yml = jeelinklog_sensors.yml
  5. influx_config_yml = jeelinklog_influxdb.yml
  6. log_path = /home/pi/logs/jeelinklog
  7. logfile_new_sensors = jeelink_new_sensors.log
  8. [jeelink]
  9. serialport = /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AL01MYTF-if00-port0
  10. baudrate = 57600
  11. [mqtt]
  12. enable = true
  13. server = mqtt.lan
  14. port = 1883
  15. user =
  16. password =
  17. # topic prefix
  18. topic_prefix = LaCrosse
  19. topic_prefix_outside_temphum = wetter/atemphum
  20. # additional single topics for outside temp/hum
  21. topic_outside_temp = wetter/atemp
  22. topic_outside_hum = wetter/ahum
  23. # topic for notifications (low battery, new sensor found...)
  24. subtopic_notify = NOTIFY
  25. [sensors]
  26. # average sensor values - average over that many received readings
  27. average_value_steps = 5
  28. max_off_value = 2.0
  29. ignore_off_value_timeout = 60
  30. # interval in s to report data via MQTT
  31. publish_interval = 60
  32. # interval in s to store data in InfluxDB
  33. store_interval = 300
  34. data_maxage = 600