Howto make lights (like night rider)?

I have a lamp with 5 hue bulbs, and want to make the lights (when on) to first go on 1 by one, and back, then all to normal on.
Is there an easy way to manage this in stead of ‘flash’ and pauze them…?/

Thnx

Don’t know exactly what you mean, but this is how I interpreted it:

  1. 1
  2. 1,2
  3. 1,2,3
  4. 1,2,3,4
  5. 1,2,3,4,5
  6. 1,2,3,4
  7. 1,2,3
  8. 1,2
  9. 1
  10. 1,2,3,4,5
[{"id":"254c6a7e.820056","type":"looptimer","z":"cc639dbb.119d5","duration":"1","units":"Second","maxloops":"4","maxtimeout":"1","maxtimeoutunits":"Hour","name":"","x":300,"y":100,"wires":[["64d8d49b.31954c"],["fc19a7a0.20baf8"]]},{"id":"1c89e42.15cf01c","type":"counter","z":"cc639dbb.119d5","name":"","init":"0","step":"1","lower":"","upper":"5","mode":"increment","outputs":2,"x":780,"y":100,"wires":[["fd747933.846ef8"],[]]},{"id":"fc19a7a0.20baf8","type":"change","z":"cc639dbb.119d5","name":"","rules":[{"t":"set","p":"reset","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":490,"y":140,"wires":[["64d8d49b.31954c"]]},{"id":"fd747933.846ef8","type":"switch","z":"cc639dbb.119d5","name":"","property":"payload","propertyType":"msg","rules":[{"t":"eq","v":"0","vt":"num"},{"t":"eq","v":"1","vt":"num"},{"t":"eq","v":"2","vt":"num"},{"t":"eq","v":"3","vt":"num"},{"t":"eq","v":"4","vt":"num"},{"t":"eq","v":"5","vt":"num"},{"t":"eq","v":"6","vt":"num"}],"checkall":"true","repair":false,"outputs":7,"x":930,"y":120,"wires":[["fcfe048a.667e18"],["18e61f68.c6a6e1"],["895237c7.d58c58"],["3b155956.075cb6"],["314d6506.e3580a"],["5aeba2a2.0c4bfc"],["18e61f68.c6a6e1","895237c7.d58c58","3b155956.075cb6","314d6506.e3580a","5aeba2a2.0c4bfc"]]},{"id":"18e61f68.c6a6e1","type":"debug","z":"cc639dbb.119d5","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1210,"y":100,"wires":[]},{"id":"895237c7.d58c58","type":"debug","z":"cc639dbb.119d5","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1210,"y":140,"wires":[]},{"id":"3b155956.075cb6","type":"debug","z":"cc639dbb.119d5","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1210,"y":180,"wires":[]},{"id":"314d6506.e3580a","type":"debug","z":"cc639dbb.119d5","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1210,"y":220,"wires":[]},{"id":"5aeba2a2.0c4bfc","type":"debug","z":"cc639dbb.119d5","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1210,"y":260,"wires":[]},{"id":"64d8d49b.31954c","type":"switch","z":"cc639dbb.119d5","name":"","property":"direction","propertyType":"msg","rules":[{"t":"eq","v":"up","vt":"str"},{"t":"eq","v":"down","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":650,"y":120,"wires":[["1c89e42.15cf01c"],["b03cc705.510d58"]]},{"id":"b03cc705.510d58","type":"counter","z":"cc639dbb.119d5","name":"","init":"6","step":"1","lower":"0","upper":"","mode":"decrement","outputs":2,"x":780,"y":140,"wires":[["fd747933.846ef8"],[]]},{"id":"2afad88d.3a6cb8","type":"inject","z":"cc639dbb.119d5","name":"start","props":[{"p":"direction","v":"up","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","x":110,"y":100,"wires":[["254c6a7e.820056"]]},{"id":"fcfe048a.667e18","type":"change","z":"cc639dbb.119d5","name":"","rules":[{"t":"set","p":"direction","pt":"msg","to":"down","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":1190,"y":60,"wires":[["254c6a7e.820056"]]}]
1 Like

Yes :pray: almost working, only when switching lights on this flow, bulb 5 switches on but not off in that flow (but gets triggert twice) I think it a timing issue , will figure this out . Thnx