Skip to content

DOMUSTO Home Automation plugin for sending push messages via Pushbullet

Notifications You must be signed in to change notification settings

basvdijk/domusto-pushbullet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pushbullet

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

Hardware needed

  • none

Software needed

  • Pushbullet.com account

Tested with

  • RFXcom events

Installation

$ ./domusto.js plugin install basvdijk/domusto-pushbullet

Get Pushbullet access token

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.

Configuration

  1. Add the section below to your config.ts
  2. Restart DOMUSTO
{
    id: 'PUSHBULLET',
    enabled: true,
    settings: {
        accessTokens: [
            '<ACCESS TOKEN 1>',
            '<ACCESS TOKEN 2>'
        ],
    },

}

Example device

{
    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!'
            }
        },
    ],
},

About

DOMUSTO Home Automation plugin for sending push messages via Pushbullet

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published