Advertisement
Guest User

Untitled

a guest
Nov 11th, 2017
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. [{"id":"5d48d39.1b9b42c","type":"inject","z":"4016a27c.947bac","name":"","topic":"","payload":"rain","payloadType":"str","repeat":"","crontab":"","once":false,"x":190,"y":200,"wires":[["84a5f9bc.9191c"]]},{"id":"85c21ed1.bf6158","type":"switch","z":"4016a27c.947bac","name":"","property":"payload","propertyType":"msg","rules":[{"t":"eq","v":"1","vt":"num"},{"t":"eq","v":"2","vt":"num"},{"t":"eq","v":"3","vt":"num"}],"checkall":"false","outputs":3,"x":670,"y":240,"wires":[["f3cdc388.0cfd38"],["2f2fe411.875cec"],["7e103316.c9080c"]]},{"id":"f3cdc388.0cfd38","type":"debug","z":"4016a27c.947bac","name":"","active":true,"console":"false","complete":"false","x":890,"y":200,"wires":[]},{"id":"e908869.60e3bf8","type":"inject","z":"4016a27c.947bac","name":"","topic":"","payload":"clear","payloadType":"str","repeat":"","crontab":"","once":false,"x":190,"y":240,"wires":[["84a5f9bc.9191c"]]},{"id":"8d3b90fe.004458","type":"inject","z":"4016a27c.947bac","name":"","topic":"","payload":"cloudy","payloadType":"str","repeat":"","crontab":"","once":false,"x":190,"y":280,"wires":[["84a5f9bc.9191c"]]},{"id":"2f2fe411.875cec","type":"debug","z":"4016a27c.947bac","name":"","active":true,"console":"false","complete":"false","x":890,"y":240,"wires":[]},{"id":"7e103316.c9080c","type":"debug","z":"4016a27c.947bac","name":"","active":true,"console":"false","complete":"false","x":890,"y":280,"wires":[]},{"id":"499e08bd.8d746","type":"function","z":"4016a27c.947bac","name":"","func":"if (msg.payload.current_observation.icon === \"rain\") {\n var test = 1 ;\nmsg.payload = test;\nreturn msg;\n} \n\nelse if (msg.payload.current_observation.icon === \"clear\") {\n var test = 2 ;\nmsg.payload = test;\nreturn msg;\n} \n\nelse if (msg.payload.current_observation.icon === \"cloudy\") {\n var test = 3 ;\nmsg.payload = test;\nreturn msg;\n} ","outputs":1,"noerr":0,"x":550,"y":240,"wires":[["85c21ed1.bf6158"]]},{"id":"84a5f9bc.9191c","type":"change","z":"4016a27c.947bac","name":"","rules":[{"t":"move","p":"payload","pt":"msg","to":"payload.current_observation.icon","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":380,"y":240,"wires":[["499e08bd.8d746"]]}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement