Generating a heartbeat

Discussions about Z-Way software and Z-Wave technology in general
Post Reply
ridewithstyle
Posts: 155
Joined: 02 Jan 2016 01:20

Generating a heartbeat

Post by ridewithstyle »

Hi there,

for kicks I was trying to generate a heartbeat as a periodic trigger for other actions. Since I didn't find a post about a clever way, I wanted to share what I came up with in the end in case somebody else might need something simliar.

I used the CodeDevice with a binary sensor that should only be active every 15 minutes.

Code: Select all

new Date().getMinutes() % 15 == 0 ? 'on' : 'off'
2021-02-01 12_35_56-Window.png
2021-02-01 12_35_56-Window.png (52.22 KiB) Viewed 4544 times
Most likely there are easier ways, but this was a quick solution someone might find helpful

regards,
rws
Post Reply