[OBSOLETE] Smart Alarm is here

If you are using @625alex’s device type, to nee to change this line of code (both times it comes up):

if (settings.pushbulletAlarm && settings.pushbullet) {
     settings.pushbullet*.push(msg)
} 

to

if (settings.pushbulletAlarm && settings.pushbullet) {
     settings.pushbullet*.push(msg, msg)
} 

or something similar. If you use just one argument, it sends just the message. If you send two arguments, it would be push(title, message). The first argument would show up as the title.

2 Likes