@Cr4z33
Should be no problem:
MMM-MQTTbridge/dict/mqttDictionary.js:
var mqttHook = [
{
mqttTopic: "zigbee2mqtt/BTicino F20T60A",
mqttPayload: [
{
payloadValue: "",
mqttNotiCmd: ["POWERMETER"],
mqttPayload: ""
},
],
},
];
var mqttNotiCommands = [
{
commandId: "POWERMETER",
notiID: "POWERMETER_VALUES",
},
];
module.exports = { mqttHook, mqttNotiCommands};
config.js:
{
module: "MMM-ValuesByNotification",
position: "top_left",
config: {
updateInterval: 60,
reuseCount: 5,
groups: [
{
items: [
{
notification: "POWERMETER_VALUES",
itemTitle: "Power",
values: [
{
valueUnit: "W",
jsonpath: "power",
},
]
},
]
},
]
},
},
Will look like:
You may want to configure the updateInterval and/or reuseCount to your needs.