plugin: Allows DOMUSTO to send Pushbullet push messages to your devices
author: Bas van Dijk
category: system
version: 0.0.1
website: http://domusto.com
- none
- Pushbullet.com account
- RFXcom events
$ ./domusto.js plugin install basvdijk/domusto-pushbullet
The Pushbullet plugin need acces to the Pushbullet API. To grand DOMUSTO access you'll need an access token so the Pushbullet server knows who you are. You can get one from the Pushbullet Account Settings page.
The DOMUSTO Pushbullet plugin supports to broadcast to mutiple Pushbullet users. An use case could be a doorbell where multiple Pushbullet users need to be notified when pressed.
- Add the section below to your
config.ts
- Restart DOMUSTO
{
id: 'PUSHBULLET',
enabled: true,
settings: {
accessTokens: [
'<ACCESS TOKEN 1>',
'<ACCESS TOKEN 2>'
],
},
}
{
id: 'CHIME1',
screens: ['test'],
enabled: true,
role: 'output',
name: 'doorbell',
type: 'switch',
subType: 'momentary',
plugin: {
id: 'RFXCOM',
deviceId: 'Chime1/SELECT_PLUS-0x00123EF',
},
triggers: [
{
listenToEvents: ['trigger'],
pluginId: 'SHELL',
deviceId: 'shell',
data: {
shellCommand: 'aplay build/assets/audio/doorbell.wav'
}
},
{
listenToEvents: ['trigger'],
pluginId: 'PUSHBULLET',
deviceId: 'note',
data: {
title: 'Doorbell',
message: 'Ding Dong!'
}
},
],
},