@kimot
Hi
Thank you for feedback.
I have this issue only with mysensors. it's exactly like you wrote. Hardware tab, present 2 decimals ( for mysensors and espeasy). Device tab, present 1 decimal ( for all sensors), Temperature tab shows 2 decimal for esp easy and JSON updates but 1 decimal for mysensor. Not sure why.
Temporary I managed to workaround by using script taking data from Hardware page - child and sending JSON update all started by crone updating dummy sensor.
like this:
TEMP=`curl -s "http://X.X.X.X:XX/json.htm?type=command¶m=mysensorsgetchilds&idx=40&nodeid=0"| awk 'NR>1{print $5}'| sed 's/"//g;s/^.//;s/)//g; s/,//g;/^$/d;s/]//g;' | sed -n '3,2p'`
IDX=255
curl -s "http://X.X.X.X:XX/json.htm?type=command¶m=udevice&idx=$IDX&nvalue=0&svalue=$TEMP"
but for sure this can be workaround by dzVents and JSON handling results but i'm not skilled enough for that
Thank you
Jakub