Hello,
I recently installed Tasmota on an ESP32 and set it as a PID Controller.
I would like to be able to control the temperature from Home Assistant via MQTT and have all the settings saved.
For example, if I send the PidSp 60 command, the setpoint is set to 60 degrees, but when the Home Assistant page is refreshed, the settings are not saved.
# MQTT Configuration for Broker
mqtt:
climate:
- name: "PID-Thermostat"
current_temperature_topic: "tele/tasmota_D46FC4/SENSOR"
current_temperature_template: "{{ value_json.BME280.Temperature }}"
temperature_command_topic: "cmnd/tasmota_D46FC4/SENSOR/PidSp"
temperature_state_topic: "stat/tasmota_D46FC4/SENSOR/PidPv"
min_temp: 1
max_temp: 60
temp_step: 1
qos: 1
retain: true
Can someone help me with changes so that the value set for PidSp remains saved until a new setting?
Ideally, it should not change even if the Home Assistant is reset - this value should only change when you set a new one from the buttons.
Thank you