Node Red: A widget based dashboard working with Homey trough MQTT

Sure, I don’t know if I did it the most efficient, but it works.

You need the folowing nodes installed:
node-red-contrib-simpletime (this generates a date/time)
node-red-contrib-moment (this changes the timezone)


First I use a “inject” node that executes every second. This activates a simple time node that generates time / date then I connected that to a “Moment” node that adjusted the timezone, finally it’s coupled to a text UI output.

For the date I did the same, but instead of every second, I execute the inject node every minute. A better way was to execute the simple time node every time 0:00 is passed, but I was lazy :wink:

I added also a translation function to translate the weeks and months to dutch, but if you want to keep it English, you can remove it.
I did not want to couple it to the “every second” node. The extra time / date queries and translating the weeks / months adds useless workload to the system.

I also personaly store the time and date in a global variable (not shown here). If nobody’s home (detected by the “smart presence” Homey app) it uses this variable to generates a list with time/dates if the front doorbell is ringed.

Here’s the JSON code:
[{"id":"13d721bf.d3941e","type":"simpletime","z":"82ee69e8.f9757","name":"Tijd","x":565.2000122070312,"y":1507.4000244140625,"wires":[["dc0026f4.0f02e"]]},{"id":"9008e318.fbd948","type":"inject","z":"82ee69e8.f9757","name":"","topic":"","payload":"","payloadType":"date","repeat":"1","crontab":"","once":false,"onceDelay":0.1,"x":378.2559051513672,"y":1507.3184814453125,"wires":[["13d721bf.d3941e"]]},{"id":"dc0026f4.0f02e","type":"moment","z":"82ee69e8.f9757","name":"","topic":"","input":"payload","inputType":"msg","inTz":"Europe/Berlin","adjAmount":"2","adjType":"hours","adjDir":"add","format":"HH:mm:ss","locale":"POSIX","output":"","outputType":"msg","outTz":"Etc/UTC","x":781.7510986328125,"y":1505.2630615234375,"wires":[["ca36bae6.13083"]]},{"id":"ca36bae6.13083","type":"ui_text","z":"82ee69e8.f9757","group":"2d1af1bb.5b107e","order":1,"width":0,"height":0,"name":"Tijd","label":"<font size=\"16\">{{msg.payload}}","format":"","layout":"row-center","x":1317.592529296875,"y":1499.8316040039062,"wires":[]},{"id":"608493fa.d046bc","type":"moment","z":"82ee69e8.f9757","name":"","topic":"","input":"payload","inputType":"msg","inTz":"Europe/Berlin","adjAmount":"2","adjType":"hours","adjDir":"add","format":"dddd DD MMMM YYYY","locale":"POSIX","output":"","outputType":"msg","outTz":"Etc/UTC","x":780.7925567626953,"y":1590.631591796875,"wires":[["b0fd422d.771458"]]},{"id":"21e5e675.9eb1ba","type":"ui_text","z":"82ee69e8.f9757","group":"2d1af1bb.5b107e","order":1,"width":0,"height":0,"name":"Datum","label":"<font size=\"4\"> {{msg.payload}}","format":"","layout":"row-center","x":1319.79248046875,"y":1588.631591796875,"wires":[]},{"id":"b0fd422d.771458","type":"function","z":"82ee69e8.f9757","name":"Translate","func":"var mapObj = {\n Monday:\"Maandag\",\n Tuesday:\"Dinsdag\",\n Wednesday:\"Woensdag\",\n Thursday:\"Donderdag\",\n Friday:\"Vrijdag\",\n Saturday:\"Zaterdag\",\n Sunday:\"Zondag\",\n January:\"januari\",\n February:\"februari\",\n March:\"maart\",\n April:\"april\",\n May:\"mei\",\n June:\"juni\",\n July:\"juli\",\n August:\"augustus\",\n September:\"september\",\n October:\"oktober\",\n November:\"november\",\n December:\"december\"\n};\nmsg.payload = msg.payload.replace(/Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday|January|February|March|April|May|June|July|August|September|October|November|December/gi, function(matched){\n return mapObj[matched];\n});\n\n\nreturn msg;","outputs":1,"noerr":0,"x":1020.5925903320312,"y":1592.2315673828125,"wires":[["21e5e675.9eb1ba"]]},{"id":"21acc76.c12e7b8","type":"simpletime","z":"82ee69e8.f9757","name":"Tijd","x":569.7925415039062,"y":1589.631591796875,"wires":[["608493fa.d046bc"]]},{"id":"3bfbc670.f96eb2","type":"inject","z":"82ee69e8.f9757","name":"","topic":"","payload":"","payloadType":"date","repeat":"60","crontab":"","once":false,"onceDelay":0.1,"x":379.8484344482422,"y":1589.550048828125,"wires":[["21acc76.c12e7b8"]]},{"id":"2d1af1bb.5b107e","type":"ui_group","z":"","name":"Vandaag","tab":"2f1cda12.393b96","order":2,"disp":true,"width":"6","collapse":false},{"id":"2f1cda12.393b96","type":"ui_tab","z":"","name":"Homey Dashboard","icon":"dashboard","order":1,"disabled":false,"hidden":false}]

4 Likes