Dear,
these are my beginnings in Home Assistant
I want to read the value from the txt file and display it but nothing happens.
/config/test/data.txt
temp, 82.0, 10, 30,
configuration.yaml
sensor:
- platform: file
name: kotla
file_path: /config/test/data.txt
value_template: >
{{ value.split(',')[1] }}
I don’t get new entities
What am I doing wrong?
TOM