diff --git a/lib/blootstrap/Readme.md b/lib/blootstrap/Readme.md index e69de29..017bab5 100644 --- a/lib/blootstrap/Readme.md +++ b/lib/blootstrap/Readme.md @@ -0,0 +1,6 @@ + + +## Blootstrap +Class representing the bluetooth interface + +**Kind**: global class diff --git a/lib/blootstrap/index.js b/lib/blootstrap/index.js index 33d9da0..445086b 100644 --- a/lib/blootstrap/index.js +++ b/lib/blootstrap/index.js @@ -6,6 +6,7 @@ function capitalize (s) { return s[0].toUpperCase() + s.slice(1) } +/** Class representing the bluetooth interface */ class Blootstrap { constructor () { this._onData = () => {} @@ -24,6 +25,13 @@ class Blootstrap { }) }) } + /** + * Blootstrap.on() - + * Binds functions to events that are triggered by BLE messages + * + * @param {string} eventName Name of the event to to bind + * @param {function} callback Invoked when the event is triggered + */ on (eventName, callback) { this[`_on${capitalize(eventName)}`] = callback } diff --git a/lib/intval/Readme.md b/lib/intval/Readme.md index e69de29..07e7198 100644 --- a/lib/intval/Readme.md +++ b/lib/intval/Readme.md @@ -0,0 +1,6 @@ + + +## Intval +Class representing the intval3 features + +**Kind**: global class