Thank you—I was hoping to get a reply from "The Developer" with the monkey picture. :)
Trying to follow your advice and test it every 1 minute instead of 20 minutes to speed up testing, I set up:
- Flow beginning
- Await time
Proceed = Exact
- Time of day = time(dateFormat(Now, "H"), dateFormat(Now, "m") - (dateFormat(Now, "m") % 1) + 1)
- Is power source plugged
Proceed = Immediately
- N) Vibrate
Pattern = { "0": 0x9, "1": 0x4, "2": 0xC }[dateFormat(Now, "m")//1]
The result I get is the same buzz-BUZZ every minute. So two problems, (1) it doesn't seem to be cycling between patterns, and (2) that buzz-BUZZ doesn't even seem to match 0x9, 0x4, or 0xC.
Also, I should mention that I want to customize my pattern, e.g., [0, 500, 500, 1000].
I'll try switching it to 20 minutes but wanted to report back in case I'm doing anything obviously wrong.