| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- mqtt:
- debug: true
- broker_address: "localhost"
- port: 1883
- topic_prefix: "cells_inserted"
- client_id: "battery_measure_ctrl"
- keepalive: 60
- i2c:
- debug: true
- bus_number: 1
- http:
- debug: true
- server_url: "http://localhost:8080"
- timeout: 5
- endpoint: "/cell_info"
- measurement:
- cycles: 3
- c_rate: 0.25
- sample_rate_hz: 1
- min_voltage: 2.5
- max_voltage: 4.2
- max_temperature_c: 45
- rest_time_minutes: 30
- devices:
- - id: "device_1"
- i2c_address: 0x48
- slots: 4
- - id: "device_2"
- i2c_address: 0x49
- slots: 4
- logging:
- level: "INFO"
- mode: "a" # a: append, w: overwrite
- max_bytes: 1000000
- file: "measure_ctrl.log"
|