Fork me on GitHub

pimatic-pushbullet by Jose Castro Leon (josecastroleon) | github | npm

pimatic-pushbullet

A plugin for sending pushbullet notifications in pimatic.

Configuration

You can load the backend by editing your config.json to include:

{
  "plugin": "pushbullet",
  "apikey": "xxxxxxxxxxxxxxxxxxxxxxxxxx"
}

in the plugins section. You can indicate which Device or Channel should be pushed to. For all configuration options see pushbullet-config-schema

Currently you can send pushbullet notifications via action handler within rules.

Example:

By default if the type is not specified it sends a note notification

if it is 08:00 push title:"Good morning!" message:"Good morning Dave!"

if you want to send a file you need to specify 'file' as type and in the message the location of the file like:

if it is 10:00 push title:"Good morning!" message:"/home/pi/photo.jpg" type:"file"

if you want to send a file or note to a specific channel you can add channel to your rule:

if it is 8:00 push title:"Good morning!" message:"Good morning to all of you" channel:"my_flatmates"

in general:

if X then push title: "title of the push notification" message: "message for the notification" type: "note|file"

Plugin Config Options

pushbullet config options
OptionDescriptionDefault
apikey
string
Pushbullet api key
device
string
device to send the notification to
""
title
string
Default title for notification
"title"
message
string
Default message or file for notification
"message"
type
string
Default type of notification
"note"
channeltag
string
channeltag to send the notification to
""
pimatic-pushbullet is written by Jose Castro Leon (josecastroleon)