GermanBluefox / ioBroker.pushbullet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo

ioBroker pushbullet Adapter

Number of Installations Number of Installations

Send pushbullet notifications from ioBroker. This Adapter is mostly based on bluefox's Pushover Adapter for ioBroker.

Usage

To send notification from ScriptEngine just write:

// send note
sendTo("pushbullet", "message body");

//OR

sendTo("pushbullet", {
    message: "message body",    //The Message you want to send
    title: "title",             //The Title of your message
    type: "note"                //Type Note
});

// send link
sendTo("pushbullet", {
    link: "http://www.example.com", //The Link you want to send
    title: "Title",             //The Title of your link
    type: "link"                //Type link
});

// send file

sendTo("pushbullet", {
    file: "/path/to/file",  //The file you want to send
    title: "Title",         //The Title of your file
    type: "file"            //Type file
});

Changelog

0.1.0 (2021-10-15)

  • (bluefox) Refactoring

0.0.11 (2015-10-11)

  • (Jens1809) Man kann nun Pushnachrichten an bestimmte Geräte schicken indem man die GeräteID mit angibt.
  • sendTo("pushbullet", { message: "message body", //The Message you want to send title: "title", //The Title of your message type: "note", //Type Note receiver: "ID hier einsetzen" //GeräteID });

0.0.8 (2015-09-26)

  • (Jens1809) Adapter empfängt nun Push Nachrichten und schreibt die Daten der Nachricht in die Objekte:
    • pushbullet.0.push.type
  • pushbullet.0.push.title
  • pushbullet.0.push.message
  • pushbullet.0.push.payload

0.0.7 (2015-09-24)

  • (Jens1809) Möglichkeit an ausgewählte Geräte zu senden ohne an den kompletten Account zu senden.

0.0.6 (2015-07-25)

  • (Jens1809) Publish on NPM

License

The MIT License (MIT)

Copyright (c) 2015-2021 Jens1809

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About


Languages

Language:JavaScript 53.5%Language:HTML 46.5%