Octopus Agile Tariff control of appliences
msg.required is set to the number of half hour blocks needed. For example 10.
Data is collected using the api. Data is sorted to Cheapest First and saved in flow.current The flow.current is split and when it's msg.parts index is = to msg.required flow.max is set to the electricity cost. msg.max will be set to the next highest price, (counting from zero).
Flow.current is then processed again using the flow.max, and the hour of the day to create three global variables. Global.timeblocks, global.batday and global.batnight.
Global.timeblocks has a rating number added within it, which corresponds to the cheapest blocks rated 0-9 and expensive blocks rated at 99.
These globals are used to do the switching on and off based on the time and block rating.
[{"id":"85649f36539075da","type":"tab","label":"Flow 1","disabled":false,"info":"","env":[]},{"id":"040836aeaa3968dc","type":"inject","z":"85649f36539075da","name":"Poll Agile 17:40","props":[{"p":"payload"}],"repeat":"","crontab":"40 17 * * *","once":false,"onceDelay":"2","topic":"","payload":"","payloadType":"date","x":190,"y":180,"wires":[["a4c2a12330102410"]]},{"id":"ae5a360731eb9e5f","type":"http request","z":"85649f36539075da","name":"Octopus Import","method":"GET","ret":"obj","paytoqs":"ignore","url":"https://api.octopus.energy/v1/products/AGILE-22-08-31/electricity-tariffs/E-1R-AGILE-22-08-31-L/standard-unit-rates/?page_size=96","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":720,"y":200,"wires":[["829b5ae3c0d362c9"]]},{"id":"d830bcd4f1eff31a","type":"http request","z":"85649f36539075da","name":"Octopus Export","method":"GET","ret":"obj","paytoqs":"ignore","url":"https://api.octopus.energy/v1/products/AGILE-OUTGOING-19-05-13/electricity-tariffs/E-1R-AGILE-OUTGOING-19-05-13-L/standard-unit-rates/?page_size=96","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":720,"y":160,"wires":[["7a9fdf1faed663f5"]]},{"id":"829b5ae3c0d362c9","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"import","pt":"flow","to":"payload","tot":"msg"},{"t":"set","p":"count","pt":"flow","to":"0","tot":"num"},{"t":"set","p":"cheap","pt":"flow","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":1000,"y":200,"wires":[["55448e77f191d527"]]},{"id":"7a9fdf1faed663f5","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"export","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1000,"y":160,"wires":[[]]},{"id":"55448e77f191d527","type":"change","z":"85649f36539075da","name":"flow import","rules":[{"t":"set","p":"payload","pt":"msg","to":"import","tot":"flow"}],"action":"","property":"","from":"","to":"","reg":false,"x":470,"y":420,"wires":[["8ef40ab64f0ba60a"]]},{"id":"8ef40ab64f0ba60a","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":610,"y":420,"wires":[["6da2f8cd8388b4aa"]]},{"id":"6da2f8cd8388b4aa","type":"switch","z":"85649f36539075da","name":"","property":"parts.index","propertyType":"msg","rules":[{"t":"eq","v":"3","vt":"num"}],"checkall":"true","repair":false,"outputs":1,"x":750,"y":420,"wires":[["ca56d31f52722f64"]]},{"id":"ca56d31f52722f64","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":250,"y":480,"wires":[["da14544cab74d160"]]},{"id":"2eeb430df148c5c5","type":"join","z":"85649f36539075da","name":"","mode":"auto","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"1000","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"num","reduceFixup":"","x":691,"y":490,"wires":[["e1629abb270cac7c"]]},{"id":"e1629abb270cac7c","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"all","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":870,"y":500,"wires":[["405d1dc402abab5f","be84b2b7b2f78ecd"]]},{"id":"e17862bf65fa6ada","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"all","payloadType":"global","x":840,"y":580,"wires":[["405d1dc402abab5f"]]},{"id":"5c6719659924bf07","type":"comment","z":"85649f36539075da","name":"","info":"https://api.octopus.energy/v1/products/AGILE-22-08-31/electricity-tariffs/E-1R-AGILE-22-08-31-L/standard-unit-rates/?page_size=96https://api.octopus.energy/v1/products/AGILE-22-08-31/electricity-tariffs/E-1R-AGILE-22-08-31-L/standard-unit-rates/?page_size=96","x":901,"y":370,"wires":[]},{"id":"405d1dc402abab5f","type":"debug","z":"85649f36539075da","name":"debug 231","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1050,"y":580,"wires":[]},{"id":"da14544cab74d160","type":"function","z":"85649f36539075da","name":"Convert to consistant string","func":"var y=msg.payload.valid_from //2024-02-20T05:00:00Z,0000014.48\nvar cost=msg.payload.value_inc_vat\ncost = cost.toFixed(2)\nif (cost < 0){\n cost = '-'+cost.toString().padStart(9, '0')\n}else{\ncost = cost.toString().padStart(10, '0')\n}\nvar mon=y.substring(5,7)\nvar dom=y.substring(8,10)\nvar hour=y.substring(11,13)\nvar min=y.substring(14,16)\nmsg.payload=mon+dom+hour+min+','+cost+','+parseInt(hour)\n//msg.mon=mon\n//msg.dom=dom\n//msg.hour=hour\n//msg.min=min\nreturn msg\n\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":460,"y":480,"wires":[["2eeb430df148c5c5"]]},{"id":"cb31f44f6882b405","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"import","payloadType":"flow","x":860,"y":640,"wires":[["405d1dc402abab5f"]]},{"id":"be84b2b7b2f78ecd","type":"link out","z":"85649f36539075da","name":"link out 34","mode":"link","links":["5e9b016a4c0419bd","f36c9669b928dfad","41d5c5b7d1db4d2a","ed5f11992f0525fc","c4e6e0907e8bce81"],"x":1045,"y":500,"wires":[]},{"id":"f4e3df66daf905c4","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":260,"y":400,"wires":[["55448e77f191d527"]]},{"id":"a4c2a12330102410","type":"function","z":"85649f36539075da","name":"timeConvert","func":"var dt = new Date(msg.payload);\nvar d=dt.getDate().toString().padStart(2,\"0\")\nvar mon=(1+dt.getMonth()).toString().padStart(2,\"0\")\nflow.set('today',d)\nvar hr = dt.getHours().toString().padStart(2, \"0\")\nvar m=dt.getMinutes()\nmsg.payload=mon+d+hr\nif (m < 30){\n msg.payload=msg.payload+'0'\n}else{\n msg.payload=msg.payload+'3' \n}\nmsg.mon=mon\nmsg.hr=hr\nmsg.min=m\nreturn msg;","outputs":1,"timeout":"","noerr":0,"initialize":"","finalize":"","libs":[],"x":370,"y":180,"wires":[["3ecb6d0114ebdb5f"]]},{"id":"3ecb6d0114ebdb5f","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"check","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":540,"y":180,"wires":[["d830bcd4f1eff31a","ae5a360731eb9e5f"]]},{"id":"081ec3e9cb63bbab","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"600","crontab":"","once":true,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":190,"y":80,"wires":[["00d67a683244ca4e"]]},{"id":"00d67a683244ca4e","type":"switch","z":"85649f36539075da","name":"","property":"all","propertyType":"global","rules":[{"t":"istype","v":"undefined","vt":"undefined"}],"checkall":"true","repair":false,"outputs":1,"x":350,"y":80,"wires":[["a4c2a12330102410"]]},{"id":"6b96309b9628a692","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"check","payloadType":"global","x":850,"y":700,"wires":[["405d1dc402abab5f"]]},{"id":"065f0a410a2d82c7","type":"change","z":"85649f36539075da","name":"Unit Cost Threshold ","rules":[{"t":"set","p":"required","pt":"msg","to":"10","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":460,"y":740,"wires":[["ba46973a4873c19d"]]},{"id":"c4e6e0907e8bce81","type":"link in","z":"85649f36539075da","name":"Calculate pool Half Hrs","links":["be84b2b7b2f78ecd"],"x":335,"y":700,"wires":[["065f0a410a2d82c7"]]},{"id":"098fc2ed1a82347c","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":200,"y":740,"wires":[["065f0a410a2d82c7"]]},{"id":"ba46973a4873c19d","type":"change","z":"85649f36539075da","name":"All","rules":[{"t":"set","p":"payload","pt":"msg","to":"all","tot":"global"}],"action":"","property":"","from":"","to":"","reg":false,"x":190,"y":800,"wires":[["e1478ba3786fcd96"]]},{"id":"e1478ba3786fcd96","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":310,"y":800,"wires":[["ebf022906919844f"]]},{"id":"ebf022906919844f","type":"function","z":"85649f36539075da","name":"Swap Price to First","func":"//03032230,0000013.53,22\nvar str=msg.payload.split(',')\nmsg.timestamp=str[0]\nmsg.payload=str[1]+','+str[0]+','+str[2]\nreturn msg \n\n\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":470,"y":800,"wires":[["49534de89e9845e1"]]},{"id":"49534de89e9845e1","type":"switch","z":"85649f36539075da","name":"Only pass curent and future data","property":"timestamp","propertyType":"msg","rules":[{"t":"gt","v":"check","vt":"global"}],"checkall":"true","repair":false,"outputs":1,"x":730,"y":780,"wires":[["0e21bb712d5425c6"]]},{"id":"0e21bb712d5425c6","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":950,"y":780,"wires":[["9fa12365e87e22b6"]]},{"id":"9fa12365e87e22b6","type":"function","z":"85649f36539075da","name":"Sort to Cheapest","func":"var array=msg.payload\nvar sorted=array.sort();\nmsg.payload=sorted\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":310,"y":880,"wires":[["d071d9ba3d6badf6"]]},{"id":"d071d9ba3d6badf6","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"current","pt":"flow","to":"payload","tot":"msg","dc":true}],"action":"","property":"","from":"","to":"","reg":false,"x":500,"y":880,"wires":[["b9e2ade413bf2ca5"]]},{"id":"b9e2ade413bf2ca5","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":650,"y":880,"wires":[["13b44325436de689"]]},{"id":"13b44325436de689","type":"switch","z":"85649f36539075da","name":"","property":"parts.index","propertyType":"msg","rules":[{"t":"eq","v":"required","vt":"msg"}],"checkall":"true","repair":false,"outputs":1,"x":770,"y":880,"wires":[["f0a0b8759824988f"]]},{"id":"f0a0b8759824988f","type":"function","z":"85649f36539075da","name":"function 155","func":"var str=msg.payload.split(',')\nmsg.payload=parseFloat(str[0])\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":910,"y":880,"wires":[["55d98de660810fe7"]]},{"id":"55d98de660810fe7","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"max","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1090,"y":880,"wires":[["c77995a7e3952f79","94fc88500874bd5d"]]},{"id":"c77995a7e3952f79","type":"change","z":"85649f36539075da","name":"current","rules":[{"t":"set","p":"payload","pt":"msg","to":"current","tot":"flow"}],"action":"","property":"","from":"","to":"","reg":false,"x":280,"y":960,"wires":[["0185c6fbdac1f191"]]},{"id":"94fc88500874bd5d","type":"debug","z":"85649f36539075da","name":"debug 481","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1110,"y":840,"wires":[]},{"id":"0185c6fbdac1f191","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":410,"y":960,"wires":[["0716a80c8270614c"]]},{"id":"0716a80c8270614c","type":"function","z":"85649f36539075da","name":"Price & Hour","func":"var str=msg.payload.split(',')\nmsg.unitcost=parseFloat(str[0])\nmsg.hour=parseInt(str[2])\nreturn msg ","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":570,"y":960,"wires":[["1103e02b9f5567b8"]]},{"id":"1103e02b9f5567b8","type":"switch","z":"85649f36539075da","name":"","property":"hour","propertyType":"msg","rules":[{"t":"btwn","v":"8","vt":"num","v2":"15","v2t":"num"},{"t":"btwn","v":"21","vt":"num","v2":"23","v2t":"num"},{"t":"btwn","v":"0","vt":"num","v2":"7","v2t":"num"}],"checkall":"true","repair":false,"outputs":3,"x":710,"y":980,"wires":[["1cc78438245a883f"],["4a0b852cff31da33"],["4a0b852cff31da33"]]},{"id":"1cc78438245a883f","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":870,"y":1020,"wires":[["956657ba2c715bd2"]]},{"id":"4a0b852cff31da33","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":870,"y":960,"wires":[["e9c6bf68dd4938b8"]]},{"id":"956657ba2c715bd2","type":"function","z":"85649f36539075da","name":"Sort to Cheapest","func":"var array=msg.payload\nvar sorted=array.sort();\nmsg.payload=sorted\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1050,"y":1020,"wires":[["1b218e7a3583e946"]]},{"id":"e9c6bf68dd4938b8","type":"function","z":"85649f36539075da","name":"Sort to Cheapest","func":"var array=msg.payload\nvar sorted=array.sort();\nmsg.payload=sorted\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1050,"y":960,"wires":[["655ebda1c9f81d69"]]},{"id":"1b218e7a3583e946","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":210,"y":1260,"wires":[["8add23962ab5d262"]]},{"id":"655ebda1c9f81d69","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":230,"y":1160,"wires":[["67cf478266aa4ab5"]]},{"id":"8add23962ab5d262","type":"switch","z":"85649f36539075da","name":"","property":"parts.index","propertyType":"msg","rules":[{"t":"lt","v":"4","vt":"num"}],"checkall":"true","repair":false,"outputs":1,"x":330,"y":1260,"wires":[["0a7ebb7d6adb4f12"]]},{"id":"67cf478266aa4ab5","type":"switch","z":"85649f36539075da","name":"","property":"parts.index","propertyType":"msg","rules":[{"t":"lt","v":"4","vt":"num"}],"checkall":"true","repair":false,"outputs":1,"x":370,"y":1160,"wires":[["1aa1138f04651975","46df93feb3a8e0fe"]]},{"id":"0a7ebb7d6adb4f12","type":"function","z":"85649f36539075da","name":"function 162","func":"//0000013.82,03080330,3\nvar str=msg.payload.split(',')\nmsg.payload=str[0]+','+msg.parts.index+','+str[1]+','+str[2]\nreturn msg;\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":470,"y":1260,"wires":[["9757205f9fd1137c"]]},{"id":"1aa1138f04651975","type":"debug","z":"85649f36539075da","name":"debug 483","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":450,"y":1020,"wires":[]},{"id":"46df93feb3a8e0fe","type":"function","z":"85649f36539075da","name":"function 161","func":"//0000013.82,03080330,3\nvar str=msg.payload.split(',')\nmsg.payload=str[0]+','+msg.parts.index+','+str[1]+','+str[2]\nreturn msg;\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":530,"y":1160,"wires":[["fd782e39c4e0f228"]]},{"id":"9757205f9fd1137c","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":610,"y":1260,"wires":[["cc12f97b5934aff9"]]},{"id":"fd782e39c4e0f228","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":690,"y":1160,"wires":[["b17a3511e221bf26"]]},{"id":"cc12f97b5934aff9","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"batday","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":770,"y":1260,"wires":[["22ad5437cfb8af30"]]},{"id":"b17a3511e221bf26","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"batnight","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":850,"y":1160,"wires":[["03a8d6e0e4b7c030"]]},{"id":"22ad5437cfb8af30","type":"change","z":"85649f36539075da","name":"current","rules":[{"t":"set","p":"payload","pt":"msg","to":"current","tot":"flow"}],"action":"","property":"","from":"","to":"","reg":false,"x":940,"y":1260,"wires":[["7dd111e7a726805f"]]},{"id":"03a8d6e0e4b7c030","type":"debug","z":"85649f36539075da","name":"debug 477","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":1030,"y":1160,"wires":[]},{"id":"7dd111e7a726805f","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":1070,"y":1260,"wires":[["fbd5d838980c9269"]]},{"id":"fbd5d838980c9269","type":"function","z":"85649f36539075da","name":"Price & Hour","func":"var str=msg.payload.split(',')\nmsg.unitcost=parseFloat(str[0])\nmsg.hour=parseInt(str[2])\nreturn msg ","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":230,"y":1380,"wires":[["2070241392928d3c"]]},{"id":"2070241392928d3c","type":"switch","z":"85649f36539075da","name":"Split Cheap Expensive","property":"unitcost","propertyType":"msg","rules":[{"t":"gt","v":"max","vt":"flow"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":480,"y":1380,"wires":[["1328c490717a36be"],["e8b8ebc0ed70df30"]]},{"id":"1328c490717a36be","type":"function","z":"85649f36539075da","name":"Set Add to 99","func":"//0000009.79,22,25223,00\nvar str=msg.payload.split(',')\nmsg.payload=str[1]+',99,'+parseFloat(str[0])+','+str[2];\n\nreturn msg\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":720,"y":1360,"wires":[["8b79476bc476ef25"]]},{"id":"e8b8ebc0ed70df30","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":230,"y":1500,"wires":[["07adbc1c2e875ae8"]]},{"id":"8b79476bc476ef25","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"delete","p":"parts","pt":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":660,"y":1540,"wires":[["f2b44d36a5c81489"]]},{"id":"07adbc1c2e875ae8","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":350,"y":1500,"wires":[["59e2be2b3f8aea8a"]]},{"id":"59e2be2b3f8aea8a","type":"function","z":"85649f36539075da","name":"Add Index","func":"var str=msg.payload.split(',')\nmsg.payload=str[1]+','+msg.parts.index+','+parseFloat(str[0])+','+str[2];\nreturn msg\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":480,"y":1500,"wires":[["8b79476bc476ef25"]]},{"id":"f2b44d36a5c81489","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"5","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":810,"y":1540,"wires":[["442e853e53f6b3a5"]]},{"id":"442e853e53f6b3a5","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":170,"y":1620,"wires":[["309cbd2fb9016f4d"]]},{"id":"309cbd2fb9016f4d","type":"function","z":"85649f36539075da","name":"function 156","func":"//03071900,10,18.02,19\nvar str=msg.payload.split(',')\nmsg.rating=str[1]\nmsg.hour=str[3]\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":350,"y":1620,"wires":[["cd14e4c21294e3f0"]]},{"id":"cd14e4c21294e3f0","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"delete","p":"parts","pt":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":560,"y":1620,"wires":[["cd9bdf26fe8a697c"]]},{"id":"cd9bdf26fe8a697c","type":"join","z":"85649f36539075da","name":"","mode":"custom","build":"array","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"10","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":270,"y":1680,"wires":[["761c7c9134cd4cb5"]]},{"id":"761c7c9134cd4cb5","type":"function","z":"85649f36539075da","name":"Sort to Time","func":"var array=msg.payload\nvar sorted=array.sort();\nmsg.payload=sorted\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":450,"y":1680,"wires":[["98620283d6bd42ab"]]},{"id":"98620283d6bd42ab","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"timeblocks","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":680,"y":1680,"wires":[["45ae761cddc62061"]]},{"id":"45ae761cddc62061","type":"debug","z":"85649f36539075da","name":"debug 449","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":990,"y":1781,"wires":[]},{"id":"7afb727725dd653c","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"timeblocks","payloadType":"global","x":760,"y":1780,"wires":[["45ae761cddc62061"]]},{"id":"ebf02901593fe724","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"all","payloadType":"global","x":740,"y":1740,"wires":[["45ae761cddc62061"]]},{"id":"80211d5f14dea51f","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"}],"repeat":"5","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":170,"y":1960,"wires":[["2e5cb0df91e9cd52"]]},{"id":"2e5cb0df91e9cd52","type":"function","z":"85649f36539075da","name":"15 seconds into future","func":"msg.payload=msg.payload+15000\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":360,"y":1960,"wires":[["de45a15f28c536b9"]]},{"id":"de45a15f28c536b9","type":"function","z":"85649f36539075da","name":"timeConvert","func":"var dt = new Date(msg.payload);\nvar d=dt.getDate().toString().padStart(2,\"0\")\nvar mon=(1+dt.getMonth()).toString().padStart(2,\"0\")\nflow.set('today',d)\nvar hr = dt.getHours().toString().padStart(2, \"0\")\nvar m=dt.getMinutes()\nmsg.payload=mon+d+hr\nif (m < 30){\n msg.payload=msg.payload+'0'\n}else{\n msg.payload=msg.payload+'3' \n}\nmsg.mon=mon\nmsg.hour=parseInt(hr)\nmsg.min=m\n\nreturn msg;","outputs":1,"timeout":"","noerr":0,"initialize":"","finalize":"","libs":[],"x":570,"y":1960,"wires":[["3a1240b2ad4ea7cc"]]},{"id":"3a1240b2ad4ea7cc","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"check","pt":"global","to":"payload","tot":"msg"},{"t":"set","p":"hour","pt":"flow","to":"hour","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":760,"y":1960,"wires":[["5dfa7b95b43fdc65"]]},{"id":"5dfa7b95b43fdc65","type":"rbe","z":"85649f36539075da","name":"","func":"rbe","gap":"","start":"","inout":"out","septopics":false,"property":"payload","topi":"topic","x":950,"y":1960,"wires":[["cb3ab5010380524f"]]},{"id":"cb3ab5010380524f","type":"switch","z":"85649f36539075da","name":"Savings Session","property":"savingssession","propertyType":"global","rules":[{"t":"eq","v":"off","vt":"str"},{"t":"eq","v":"on","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":1140,"y":1960,"wires":[["29826d3c3ffefb58"],[]]},{"id":"29826d3c3ffefb58","type":"change","z":"85649f36539075da","name":"timeblocks","rules":[{"t":"set","p":"payload","pt":"msg","to":"timeblocks","tot":"global"}],"action":"","property":"","from":"","to":"","reg":false,"x":130,"y":2020,"wires":[["b5f88d141050f97f"]]},{"id":"b5f88d141050f97f","type":"split","z":"85649f36539075da","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":290,"y":2020,"wires":[["591464b07cf0104c"]]},{"id":"591464b07cf0104c","type":"function","z":"85649f36539075da","name":"function 158","func":"//03071530,1,1,14.97,15\nvar str=msg.payload.split(',')\nmsg.timestamp=str[0]\nmsg.rating=str[1]\nmsg.hour=str[4]\nreturn msg \n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":210,"y":2080,"wires":[["f7ac0e1b1feda067"]]},{"id":"f7ac0e1b1feda067","type":"switch","z":"85649f36539075da","name":"","property":"timestamp","propertyType":"msg","rules":[{"t":"cont","v":"check","vt":"global"}],"checkall":"true","repair":false,"outputs":1,"x":370,"y":2080,"wires":[["dab4ffe1a13c87bf"]]},{"id":"dab4ffe1a13c87bf","type":"change","z":"85649f36539075da","name":"","rules":[{"t":"set","p":"latest","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":520,"y":2080,"wires":[["37d9c0bb7655ff39"]]},{"id":"37d9c0bb7655ff39","type":"switch","z":"85649f36539075da","name":"","property":"rating","propertyType":"msg","rules":[{"t":"eq","v":"99","vt":"num"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":520,"y":2220,"wires":[["4b569843b822fbe9"],["01edc710ce0fb42b"]]},{"id":"4b569843b822fbe9","type":"change","z":"85649f36539075da","name":"Save Energy turn stuff off","rules":[{"t":"set","p":"payload","pt":"msg","to":"0","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":810,"y":2180,"wires":[["e7590d3a60b00ad9"]]},{"id":"01edc710ce0fb42b","type":"delay","z":"85649f36539075da","name":"","pauseType":"delay","timeout":"25","timeoutUnits":"seconds","rate":"1","nbRateUnits":"1","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":false,"allowrate":false,"outputs":1,"x":570,"y":2280,"wires":[["61753985252d8052"]]},{"id":"61753985252d8052","type":"change","z":"85649f36539075da","name":"Use Energy Turn Stuff On","rules":[{"t":"set","p":"payload","pt":"msg","to":"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":790,"y":2280,"wires":[["0e7244f32e0572c9"]]},{"id":"e7590d3a60b00ad9","type":"debug","z":"85649f36539075da","name":"debug 484","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1030,"y":2100,"wires":[]},{"id":"0e7244f32e0572c9","type":"debug","z":"85649f36539075da","name":"debug 485","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1050,"y":2280,"wires":[]},{"id":"112223dd8301e2f3","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"batday","payloadType":"global","x":750,"y":1820,"wires":[["45ae761cddc62061"]]},{"id":"7aee0b70e15a144b","type":"inject","z":"85649f36539075da","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"batnight","payloadType":"global","x":760,"y":1860,"wires":[["45ae761cddc62061"]]}]