UNPKG

@s89/ble-ancs

Version:

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

12 lines (9 loc) 267 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); }); }); });