Thanks Rene,
I think I solved it… I opened the dashboard on an Android browser and the updates are getting through so it appears to be a Windows browser issue. As I plan to run the dashboard on a tablet the issue is resolved I think.
For info:
When I activated DEBUG I found the following entries in the appdeamon log following a sensor update
2017-10-29 12:52:12.363649 DEBUG {'old_state': {'last_changed': '2017-10-29T11:51:12.316958+00:00', 'state': '48.76', 'last_updated': '2017-10-29T11:51:12.316958+00:00', 'entity_id': 'sensor.humidity', 'attributes': {'unit_of_measurement': '%', 'friendly_name': 'Humidity'}}, 'new_state': {'last_changed': '2017-10-29T11:52:12.343290+00:00', 'state': '48.08', 'last_updated': '2017-10-29T11:52:12.343290+00:00', 'entity_id': 'sensor.humidity', 'attributes': {'unit_of_measurement': '%', 'friendly_name': 'Humidity'}}, 'entity_id': 'sensor.humidity'}
2017-10-29 12:52:12.364898 DEBUG Entity ID:sensor.humidity:
2017-10-29 12:52:12.376761 DEBUG Event type:state_changed:
2017-10-29 12:52:12.377470 DEBUG {'old_state': {'last_changed': '2017-10-29T11:51:12.319453+00:00', 'state': '970.10', 'last_updated': '2017-10-29T11:51:12.319453+00:00', 'entity_id': 'sensor.pressure', 'attributes': {'unit_of_measurement': 'hPa', 'friendly_name': 'Pressure'}}, 'new_state': {'last_changed': '2017-10-29T11:52:12.346114+00:00', 'state': '970.13', 'last_updated': '2017-10-29T11:52:12.346114+00:00', 'entity_id': 'sensor.pressure', 'attributes': {'unit_of_measurement': 'hPa', 'friendly_name': 'Pressure'}}, 'entity_id': 'sensor.pressure'}
2017-10-29 12:52:12.378313 DEBUG Entity ID:sensor.pressure:
2017-10-29 12:52:12.386711 DEBUG Event type:state_changed:
2017-10-29 12:52:12.387444 DEBUG {'old_state': {'last_changed': '2017-10-29T11:51:12.322221+00:00', 'state': '24.22', 'last_updated': '2017-10-29T11:51:12.322221+00:00', 'entity_id': 'sensor.temperature', 'attributes': {'unit_of_measurement': '°C', 'friendly_name': 'Temperature'}}, 'new_state': {'last_changed': '2017-10-29T11:52:12.349314+00:00', 'state': '24.27', 'last_updated': '2017-10-29T11:52:12.349314+00:00', 'entity_id': 'sensor.temperature', 'attributes': {'unit_of_measurement': '°C', 'friendly_name': 'Temperature'}}, 'entity_id': 'sensor.temperature'}
There were no errors/warnings in any logs.
My dashboard is based on one of the examples:
##
## Main arguments, all optional
##
title: Hello Panel
widget_dimensions: [120, 120]
widget_margins: [5, 5]
columns: 8
label:
widget_type: label
text: Hello World
side_temperature:
widget_type: sensor
title: Temperature
units: "°C"
precision: 1
entity: sensor.temperature
refresh: 60
side_humidity:
widget_type: sensor
title: Humidity
units: "%"
precision: 1
entity: sensor.humidity
side_pressure:
widget_type: sensor
title: Air Pressure
units: "hPa"
precision: 1
entity: sensor.pressure
reload:
widget_type: reload
title: Reload
clock:
widget_type: clock
time_format: "24hr"
show_seconds: 1