UNPKG

ble-ancs

Version:

An Apple ANCS reciever from Linux. It is a combination of the Bleno, Noble and ANCS projects from Sandeep Mistry

13 lines (9 loc) 262 B
var BleAncs = require('./index'); var ancs = new BleAncs(); ancs.on('notification', function(notification) { notification.readTitle( function(title) { notification.readMessage( function(message) { console.log("Notification: " + notification); }); }); });