Turn on or off? #102
-
Hi, I connected a shelly gen. 1 node to my shelly but how can I turn that shelly on? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Just have a look at the examples |
Beta Was this translation helpful? Give feedback.
-
@Fr3d3rick83 I assume that you are not familiar with node-red yet? Please read the manual: Here is a sample flow where you can see how a switch works [{"id":"2d791f81ae6dfa2c","type":"debug","z":"b1246db37f9d2f38","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","x":730,"y":300,"wires":[]},{"id":"ae7595966f77f53a","type":"function","z":"b1246db37f9d2f38","name":"0 on","func":"msg.payload = {\n relay:0,\n on:true\n};\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":230,"y":280,"wires":[["b1ddcf9f17392251"]]},{"id":"19b506322a9c08e7","type":"function","z":"b1246db37f9d2f38","name":"0 off","func":"msg.payload = {\n relay:0, \n on:false\n};\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":230,"y":320,"wires":[["b1ddcf9f17392251"]]},{"id":"53a377c30f3b4de8","type":"inject","z":"b1246db37f9d2f38","name":"Turn On","repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":80,"y":280,"wires":[["ae7595966f77f53a"]]},{"id":"c4914622404b741f","type":"inject","z":"b1246db37f9d2f38","name":"Turn Off","repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":90,"y":320,"wires":[["19b506322a9c08e7"]]},{"id":"d89e5b66446a7e72","type":"inject","z":"b1246db37f9d2f38","name":"Poll Status","repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":80,"y":220,"wires":[["b1ddcf9f17392251"]]},{"id":"0bf0ad05d6e49371","type":"function","z":"b1246db37f9d2f38","name":"0 toggle","func":"msg.payload = {\n relay:0, \n turn:"toggle"\n};\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":240,"y":360,"wires":[["b1ddcf9f17392251"]]},{"id":"ae8d0da801ed9715","type":"inject","z":"b1246db37f9d2f38","name":"Toggle","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":90,"y":360,"wires":[["0bf0ad05d6e49371"]]},{"id":"b1ddcf9f17392251","type":"shelly-gen1","z":"b1246db37f9d2f38","hostname":"192.168.178.189","description":"","mode":"polling","server":"033a6e9acf499057","uploadretryinterval":"5000","pollinginterval":5000,"pollstatus":false,"getstatusoncommand":true,"devicetype":"Relay","outputs":1,"credentials":{"username":"","password":""},"x":530,"y":300,"wires":[["2d791f81ae6dfa2c"]]},{"id":"033a6e9acf499057","type":"shelly-gen1-server","port":"20001","hostname":""}] |
Beta Was this translation helpful? Give feedback.
-
You can directly import the examples from the sidebar-->Import: |
Beta Was this translation helpful? Give feedback.
-
@Fr3d3rick83 any success? |
Beta Was this translation helpful? Give feedback.
@Fr3d3rick83 any success?