getProfile - cflurin/node-red-contrib-ramp-thermostat GitHub Wiki

This example shows how to read a profile and display it in a dashboard chart.

getprofile

profile-chart

Flow:

[{"id":"14be1ba7.af7e64","type":"ui_chart","z":"eb273ea8.d5d53","name":"","group":"3d81b6c2.dbd00a","order":0,"width":"10","height":"5","label":"{{msg.label}}","chartType":"line","legend":"false","xformat":"HH","interpolate":"linear","nodata":"","dot":false,"ymin":"","ymax":"","removeOlder":1,"removeOlderPoints":"","removeOlderUnit":"3600","cutout":0,"useOneColor":false,"colors":["#1f77b4","#aec7e8","#ff7f0e","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5"],"useOldStyle":false,"x":650,"y":280,"wires":[],[](/cflurin/node-red-contrib-ramp-thermostat/wiki/],[)},{"id":"acf49270.bdf68","type":"ramp-thermostat","z":"eb273ea8.d5d53","name":"profiles","profile":"4e47ed53.1a5d44","hysteresisplus":"1","hysteresisminus":"1","x":340,"y":280,"wires":[],[],["d5b6b677.000e48"](/cflurin/node-red-contrib-ramp-thermostat/wiki/],[],["d5b6b677.000e48")},{"id":"d5b6b677.000e48","type":"function","z":"eb273ea8.d5d53","name":"map","func":"var p = msg.payload;\nvar c = {};\nc.data = [];\nvar data = [];\n\np.points.forEach(function(point) {\n    var key = Object.keys(point);\n    data.push({\"x\": \"2018-11-21T\"+key+\":00\", \"y\":point[key]});\n});\n\nc.series = [\"Profile\"];\nc.data = [data];\nc.labels = [\"\"];\n\nmsg.label = p.name;\nmsg.payload = [c];\n\nreturn msg;","outputs":1,"noerr":0,"x":510,"y":280,"wires":["14be1ba7.af7e64"](/cflurin/node-red-contrib-ramp-thermostat/wiki/"14be1ba7.af7e64")},{"id":"ee364580.3b8848","type":"inject","z":"eb273ea8.d5d53","name":"","topic":"getProfile","payload":"office","payloadType":"str","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":160,"y":280,"wires":["acf49270.bdf68"](/cflurin/node-red-contrib-ramp-thermostat/wiki/"acf49270.bdf68")},{"id":"3d81b6c2.dbd00a","type":"ui_group","z":"","name":"Profile","tab":"f165743a.7224e8","disp":true,"width":"10","collapse":false},{"id":"4e47ed53.1a5d44","type":"profile","z":"","name":"office","time1":"00:00","temp1":"18","time2":"04:00","temp2":"18","time3":"08:00","temp3":"20.5","time4":"12:00","temp4":"20.5","time5":"12:00","temp5":"19","time6":"12:30","temp6":"19","time7":"13:30","temp7":"20.5","time8":"19:00","temp8":"20.5","time9":"19:00","temp9":"18","time10":"23:59","temp10":"18"},{"id":"f165743a.7224e8","type":"ui_tab","z":"","name":"ramp-thermostat","icon":"dashboard"}]