To receive MQTT messages I use Otto Paulsen’s MM-MQTT Module (https://github.com/ottopaulsen/MMM-MQTT) and that is nice software. Unfortunately, there is a problem, the output seems to be refreshed every 5 seconds, so that the text in question flashes briefly every time.
I have created an issue on Paul’s GitHub page about this, but unfortunately no answer after a few months of waiting. Does anyone know what could be the cause? Please let me know.
This is my code in config.js:
{
module: 'MMM-MQTT',
position: 'bottom_right',
header: 'ELEKTRA\xa0',
config: {
logging: false,
useWildcards: false,
mqttServers: [
{
address: '192.168.2.155',
port: '1883',
subscriptions: [
{
topic: 'MM/Accu/Lader1',
label: 'Acculader 1',
broadcast: false,
},
{
topic: 'MM/Accu/Lader2',
label: 'Acculader 2',
broadcast: false,
},
{
topic: 'Energie/power_delivered',
label: 'Verbruik',
suffix: 'kWh',
broadcast: false,
}
]
}
],
}
},