Just published a few flows.
BOM Australia Weather Report
https://flows.blueforcer.de/flow/PjqG5X8V5YNK
A/C Climate Control and Door Notification
https://flows.blueforcer.de/flow/np78OpdZOGKm
Just published a few flows.
BOM Australia Weather Report
https://flows.blueforcer.de/flow/PjqG5X8V5YNK
A/C Climate Control and Door Notification
https://flows.blueforcer.de/flow/np78OpdZOGKm
Just a little tip for those using NodeRED to handle their apps.
I have my amplifier volume and sound settings displaying on my Awtrix.
I like these notifications to show immediately so I overwrite all the apps when these are activated by the remote control
I also set stack: false,
in the function node to ensure the message is immediate and is not queued.
var volume = msg.data.state;
msg.payload = {
"text": `${volume}`,
"icon": `56196`, // Change based on your icon system
"rainbow": false,
"pushIcon": 2,
"color": '#ffffff',
"stack": false,
"overlay": "clear",
"repeat": 3
};
return msg;