Hello, as the title says.
Is it possible to send/save the sensor values to an FTP server using “file”.
Internally there are no problems.
notify:
- platform: file
name: Temperature
# filename: '/config/test/sensor.csv' #this work
filename: 'ftp://192.168.1.111/sensor.csv' #not work :-(
timestamp: true
value_template: '{{ value.split(";")[1] }}'
unit_of_measurement: "°C"
Thank you