I have a home assitant configuration including the following numbers.yaml:
dosing_time:
name: "Chlorine Dosing time"
min: 0
max: 1000
step: 1
which are included in my configuration.yaml as this:
input_number: !include numbers.yaml
I want to use this number to log a parameter generated in a nodered flow like so.
however, this flow is running every hour.
if the function1 outputs the same value, nothing shows up in the home assistant log.
only when the value changes do i see log entries.
how can change this behavior to always log the input_number when it is written also if the value is the same?