I am trying to use this to display some room temp but I can't get anything to display. My code is:
{
module: 'MMM-HomeAssistantDisplay',
position: 'top_right',
config: {
host: "192.168.0.xxx",
token: "TOKEN",
port: 8123,
title: "Internal Environment",
class: "inEnviro",
sections: [{
triggerEntities: [
"sensor.bme280_temperature",
"sensor.bme280_humidity"
],
displayTemplate: `
{{ states('sensor.bme280_temperature') }}°C
{{ states('sensor.bme280_humidity') }}%
`,
}]
},
},
Hi!
I am trying to use this to display some room temp but I can't get anything to display. My code is:
I obviously have something wrong but not sure what :(