diff --git a/ABOUT.md b/ABOUT.md deleted file mode 100644 index cc45000..0000000 --- a/ABOUT.md +++ /dev/null @@ -1,93 +0,0 @@ -[![CircleCI](https://circleci.com/gh/nathankellenicki/node-poweredup.svg?style=shield)](https://circleci.com/gh/nathankellenicki/node-poweredup) -[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/node-poweredup?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -![NPM Version](https://img.shields.io/npm/v/node-poweredup.svg?style=flat) - -# **node-poweredup** - A Node.js module to interface with LEGO Powered UP components. - -### Introduction - -LEGO Powered UP is the successor to Power Functions, the system for adding electronics to LEGO models. Powered UP is a collection of ranges - starting with LEGO WeDo 2.0 released in 2016, LEGO Boost released in 2017, and LEGO Powered UP released in 2018. It also includes the 2018 Duplo App-Controlled Train sets. - -Powered UP has a few improvements over Power Functions: - -1. The use of Bluetooth Low Energy makes it easy to control from a computer, and even write code for. - -2. The ability to use sensors to react to events happening in the real world opens up a whole new world of possibilities. - -3. As Powered UP hubs and remotes pair with each other, the system allows for a near unlimited number of independently controlled models in the same room. Power Functions was limited to 8 due to the use of infra-red for communication. - -### Installation - -Node.js v8.0 required. - -```javascript -npm install node-poweredup --save -``` - -node-poweredup uses the Noble BLE library by Sandeep Mistry. On macOS everything should function out of the box. On Linux and Windows there are [certain dependencies which may need installed first](https://github.com/noble/noble#prerequisites). - -Note: node-poweredup has been tested on macOS 10.13 and Debian/Raspbian on the Raspberry Pi 3 Model B. - -### Compatibility - -While most Powered UP components and Hubs are compatible with each other, there are exceptions. For example, there is limited backwards compatibility between newer components and the WeDo 2.0 Smart Hub. However WeDo 2.0 components are fully forwards compatible with newer Hubs. - -| Device Name | Product Code | Type | WeDo 2.0 Smart Hub | Boost Move Hub | Powered UP Hub | Availability | -| ------------------------------- | ------------ | ------------- | ------------------ | -------------- | -------------- | ------------ | -| WeDo 2.0 Tilt Sensor | 45305 | Sensor | Yes | Yes | Yes | 45300 | -| WeDo 2.0 Motion Sensor | 45304 | Sensor | Yes | Yes | Yes | 45300 | -| WeDo 2.0 Medium Motor | 45303 | Motor | Yes | Yes | Yes | 45300
76112 | -| Boost Color and Distance Sensor | 88007 | Sensor | *Partial* | Yes | Yes | 17101 | -| Boost Tacho Motor | 88008 | Motor/Sensor | *Partial* | Yes | *Partial* | 17101 | -| Powered UP Train Motor | 88011 | Motor | Yes | Yes | Yes | 60197
60198 | -| Powered UP LED Lights | 88005 | Light | Yes | Yes | Yes | 88005 | - -In addition, the Hubs themselves have certain built-in features which this library exposes. - -| Hub Name | Product Code | Built-In Features | Availability | -| ------------------ | ------------ | ---------------------- | ------------ | -| WeDo 2.0 Smart hub | 45301 | RGB LED
Piezo Buzzer
Button | 45300 | -| Boost Move Hub | 88006 | RGB LED
Tilt Sensor
2x Tacho Motors
Button | 17101 | -| Powered UP Hub | 88009 | RGB LED
Button | 60197
60198
76112 | -| Powered UP Remote | 88010 | RGB LED
Left and Right Control Buttons
Button | 60197
60198 | -| Duplo Train Base | 28743 | RGB LED/Headlights
Speaker
Speedometer
Motor
Color and Distance Sensor
Button | 10874
10875 | - - -### Known Issues and Limitations - -* The Boost Color and Distance sensor only works in color mode with the WeDo 2.0 Smart Hub. - -* When used with the WeDo 2.0 Smart Hub, the Boost Tacho Motor does not support rotating the motor by angle. - -* When used with the Powered UP Hub, the Boost Tacho Motor does not support rotating the motor by angle. It also does not support rotation detection. - -* Plugging two Boost Tacho Motors into the Powered UP Hub will crash the Hub (This requires a firmware update from LEGO to fix). - -### Usage - -```javascript -const PoweredUP = require("node-poweredup"); -const poweredUP = new PoweredUP.PoweredUP(); - -poweredUP.on("discover", async (hub) => { // Wait to discover a Hub - await hub.connect(); // Connect to the Hub - await hub.sleep(3000); // Sleep for 3 seconds before starting - - while (true) { // Repeat indefinitely - hub.setMotorSpeed("B", 75); // Start a motor attached to port B to run a 3/4 speed (75) indefinitely - await hub.setMotorSpeed("A", 100, 2000); // Run a motor attached to port A for 2 seconds at maximum speed (100) then stop - await hub.sleep(1000); // Do nothing for 1 second - await hub.setMotorSpeed("A", -50, 1000); // Run a motor attached to port A for 1 second at 1/2 speed in reverse (-50) then stop - await hub.sleep(1000); // Do nothing for 1 second - } -}); - -poweredUP.scan(); // Start scanning for Hubs -``` - -More examples are available in the "examples" directory. - -### Credits - -Thanks go to Jorge Pereira ([@JorgePe](https://github.com/JorgePe)), Sebastian Raff ([@hobbyquaker](https://github.com/hobbyquaker)), Valentin Heun ([@vheun](https://github.com/vheun)), Johan Korten ([@jakorten](https://github.com/jakorten)), and Andrey Pokhilko ([@undera](https://github.com/undera)) for their various works, contributions, and assistance on figuring out the LEGO Boost, WeDo 2.0, and Powered UP protocols. - diff --git a/DOCS.md b/DOCS.md deleted file mode 100644 index 62e6d0e..0000000 --- a/DOCS.md +++ /dev/null @@ -1,1969 +0,0 @@ -## Classes - -
-
PoweredUPEventEmitter
-
-
WeDo2SmartHubHub
-
-
BoostMoveHubLPF2Hub
-
-
PUPHubLPF2Hub
-
-
PUPRemoteLPF2Hub
-
-
DuploTrainBaseLPF2Hub
-
-
- -## Typedefs - -
-
HubType
-
-
DeviceType
-
-
Color
-
-
ButtonState
-
-
DuploTrainBaseSound
-
-
- - - -## PoweredUP ⇐ EventEmitter -**Kind**: global class -**Extends**: EventEmitter - -* [PoweredUP](#PoweredUP) ⇐ EventEmitter - * [.scan()](#PoweredUP+scan) - * [.stop()](#PoweredUP+stop) - * [.getConnectedHubByUUID(uuid)](#PoweredUP+getConnectedHubByUUID) ⇒ Hub \| null - * [.getConnectedHubs()](#PoweredUP+getConnectedHubs) ⇒ Array.<Hub> - * ["discover" (hub)](#PoweredUP+event_discover) - - - -### poweredUP.scan() -Begin scanning for Powered UP Hub devices. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - - -### poweredUP.stop() -Stop scanning for Powered UP Hub devices. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - - -### poweredUP.getConnectedHubByUUID(uuid) ⇒ Hub \| null -Retrieve a Powered UP Hub by UUID. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - -| Param | Type | -| --- | --- | -| uuid | string | - - - -### poweredUP.getConnectedHubs() ⇒ Array.<Hub> -Retrieve a list of Powered UP Hubs. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - - -### "discover" (hub) -Emits when a Powered UP Hub device is found. - -**Kind**: event emitted by [PoweredUP](#PoweredUP) - -| Param | Type | -| --- | --- | -| hub | [WeDo2SmartHub](#WeDo2SmartHub) \| [BoostMoveHub](#BoostMoveHub) \| [PUPHub](#PUPHub) \| [PUPRemote](#PUPRemote) \| [DuploTrainBase](#DuploTrainBase) | - - - -## WeDo2SmartHub ⇐ Hub -**Kind**: global class -**Extends**: Hub - -* [WeDo2SmartHub](#WeDo2SmartHub) ⇐ Hub - * [new WeDo2SmartHub()](#new_WeDo2SmartHub_new) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setName(name)](#WeDo2SmartHub+setName) ⇒ Promise - * [.setLEDColor(color)](#WeDo2SmartHub+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#WeDo2SmartHub+setLEDRGB) ⇒ Promise - * [.setMotorSpeed(port, speed, [time])](#WeDo2SmartHub+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#WeDo2SmartHub+rampMotorSpeed) ⇒ Promise - * [.hardStopMotor(port)](#WeDo2SmartHub+hardStopMotor) ⇒ Promise - * [.playTone(frequency, time)](#WeDo2SmartHub+playTone) ⇒ Promise - * [.setLightBrightness(port, brightness, [time])](#WeDo2SmartHub+setLightBrightness) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#WeDo2SmartHub+event_button) - * ["distance" (port, distance)](#WeDo2SmartHub+event_distance) - * ["color" (port, color)](#WeDo2SmartHub+event_color) - * ["tilt" (port, x, y)](#WeDo2SmartHub+event_tilt) - * ["rotate" (port, rotation)](#WeDo2SmartHub+event_rotate) - * ["attach" (port, type)](#Hub+event_attach) - * ["detach" (port)](#Hub+event_detach) - - - -### new WeDo2SmartHub() -The WeDo2SmartHub is emitted if the discovered device is a WeDo 2.0 Smart Hub. - - - -### weDo2SmartHub.name -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### weDo2SmartHub.firmwareVersion -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### weDo2SmartHub.uuid -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### weDo2SmartHub.rssi -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### weDo2SmartHub.batteryLevel -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### weDo2SmartHub.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### weDo2SmartHub.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Hub via a color value. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### weDo2SmartHub.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### weDo2SmartHub.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### weDo2SmartHub.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### weDo2SmartHub.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### weDo2SmartHub.playTone(frequency, time) ⇒ Promise -Play a tone on the Hub's in-built buzzer - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command (ie. once the tone has finished playing). - -| Param | Type | Description | -| --- | --- | --- | -| frequency | number | | -| time | number | How long the tone should play for (in milliseconds). | - - - -### weDo2SmartHub.setLightBrightness(port, brightness, [time]) ⇒ Promise -Set the light brightness on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the light is turned off. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| brightness | number | Brightness value between 0-100 (0 is off) | -| [time] | number | How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely. | - - - -### weDo2SmartHub.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### weDo2SmartHub.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful disconnect. - - -### weDo2SmartHub.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### weDo2SmartHub.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### weDo2SmartHub.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### weDo2SmartHub.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### weDo2SmartHub.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) - - -### weDo2SmartHub.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "distance" (port, distance) -Emits when a distance sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| distance | number | Distance, in millimeters. | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "tilt" (port, x, y) -Emits when a tilt sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| x | number | -| y | number | - - - -### "rotate" (port, rotation) -Emits when a rotation sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| rotation | number | - - - -### "attach" (port, type) -Emits when a motor or sensor is attached to the Hub. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| type | [DeviceType](#DeviceType) | - - - -### "detach" (port) -Emits when an attached motor or sensor is detached from the Hub. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | - - - -## BoostMoveHub ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [BoostMoveHub](#BoostMoveHub) ⇐ LPF2Hub - * [new BoostMoveHub()](#new_BoostMoveHub_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setMotorSpeed(port, speed, [time])](#BoostMoveHub+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#BoostMoveHub+rampMotorSpeed) ⇒ Promise - * [.setMotorAngle(port, angle, [speed])](#BoostMoveHub+setMotorAngle) ⇒ Promise - * [.hardStopMotor(port)](#BoostMoveHub+hardStopMotor) ⇒ Promise - * [.setLightBrightness(port, brightness, [time])](#BoostMoveHub+setLightBrightness) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.setLEDColor(color)](#LPF2Hub+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#LPF2Hub+setLEDRGB) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#LPF2Hub+event_button) - * ["distance" (port, distance)](#LPF2Hub+event_distance) - * ["color" (port, color)](#LPF2Hub+event_color) - * ["colorAndDistance" (port, color, distance)](#LPF2Hub+event_colorAndDistance) - * ["tilt" (port, x, y)](#LPF2Hub+event_tilt) - * ["rotate" (port, rotation)](#LPF2Hub+event_rotate) - * ["attach" (port, type)](#Hub+event_attach) - * ["detach" (port)](#Hub+event_detach) - - - -### new BoostMoveHub() -The BoostMoveHub is emitted if the discovered device is a Boost Move Hub. - - - -### boostMoveHub.voltage -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### boostMoveHub.current -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### boostMoveHub.name -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### boostMoveHub.firmwareVersion -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### boostMoveHub.uuid -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### boostMoveHub.rssi -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### boostMoveHub.batteryLevel -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### boostMoveHub.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number \| Array.<number> | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### boostMoveHub.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### boostMoveHub.setMotorAngle(port, angle, [speed]) ⇒ Promise -Rotate a motor by a given angle. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command (ie. once the motor is finished). - -| Param | Type | Default | Description | -| --- | --- | --- | --- | -| port | string | | | -| angle | number | | How much the motor should be rotated (in degrees). | -| [speed] | number \| Array.<number> | 100 | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | - - - -### boostMoveHub.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### boostMoveHub.setLightBrightness(port, brightness, [time]) ⇒ Promise -Set the light brightness on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the light is turned off. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| brightness | number | Brightness value between 0-100 (0 is off) | -| [time] | number | How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely. | - - - -### boostMoveHub.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### boostMoveHub.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Hub via a color value. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### boostMoveHub.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### boostMoveHub.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### boostMoveHub.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### boostMoveHub.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### boostMoveHub.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### boostMoveHub.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### boostMoveHub.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### boostMoveHub.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [getHubType](#Hub+getHubType) - - -### boostMoveHub.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "distance" (port, distance) -Emits when a distance sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| distance | number | Distance, in millimeters. | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "colorAndDistance" (port, color, distance) -A combined color and distance event, emits when the sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| color | [Color](#Color) | | -| distance | number | Distance, in millimeters. | - - - -### "tilt" (port, x, y) -Emits when a tilt sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used. | -| x | number | | -| y | number | | - - - -### "rotate" (port, rotation) -Emits when a rotation sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | -| --- | --- | -| port | string | -| rotation | number | - - - -### "attach" (port, type) -Emits when a motor or sensor is attached to the Hub. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) -**Overrides**: [attach](#Hub+event_attach) - -| Param | Type | -| --- | --- | -| port | string | -| type | [DeviceType](#DeviceType) | - - - -### "detach" (port) -Emits when an attached motor or sensor is detached from the Hub. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) -**Overrides**: [detach](#Hub+event_detach) - -| Param | Type | -| --- | --- | -| port | string | - - - -## PUPHub ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [PUPHub](#PUPHub) ⇐ LPF2Hub - * [new PUPHub()](#new_PUPHub_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setMotorSpeed(port, speed, [time])](#PUPHub+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#PUPHub+rampMotorSpeed) ⇒ Promise - * [.hardStopMotor(port)](#PUPHub+hardStopMotor) ⇒ Promise - * [.setLightBrightness(port, brightness, [time])](#PUPHub+setLightBrightness) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.setLEDColor(color)](#LPF2Hub+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#LPF2Hub+setLEDRGB) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#LPF2Hub+event_button) - * ["distance" (port, distance)](#LPF2Hub+event_distance) - * ["color" (port, color)](#LPF2Hub+event_color) - * ["colorAndDistance" (port, color, distance)](#LPF2Hub+event_colorAndDistance) - * ["tilt" (port, x, y)](#LPF2Hub+event_tilt) - * ["attach" (port, type)](#Hub+event_attach) - * ["detach" (port)](#Hub+event_detach) - - - -### new PUPHub() -The PUPHub is emitted if the discovered device is a Powered UP Hub. - - - -### pupHub.voltage -**Kind**: instance property of [PUPHub](#PUPHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### pupHub.current -**Kind**: instance property of [PUPHub](#PUPHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### pupHub.name -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### pupHub.firmwareVersion -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### pupHub.uuid -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### pupHub.rssi -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### pupHub.batteryLevel -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### pupHub.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number \| Array.<number> | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### pupHub.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### pupHub.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### pupHub.setLightBrightness(port, brightness, [time]) ⇒ Promise -Set the light brightness on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the light is turned off. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| brightness | number | Brightness value between 0-100 (0 is off) | -| [time] | number | How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely. | - - - -### pupHub.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### pupHub.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Hub via a color value. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### pupHub.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### pupHub.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### pupHub.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### pupHub.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### pupHub.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### pupHub.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### pupHub.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### pupHub.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [getHubType](#Hub+getHubType) - - -### pupHub.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "distance" (port, distance) -Emits when a distance sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| distance | number | Distance, in millimeters. | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "colorAndDistance" (port, color, distance) -A combined color and distance event, emits when the sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| color | [Color](#Color) | | -| distance | number | Distance, in millimeters. | - - - -### "tilt" (port, x, y) -Emits when a tilt sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used. | -| x | number | | -| y | number | | - - - -### "attach" (port, type) -Emits when a motor or sensor is attached to the Hub. - -**Kind**: event emitted by [PUPHub](#PUPHub) -**Overrides**: [attach](#Hub+event_attach) - -| Param | Type | -| --- | --- | -| port | string | -| type | [DeviceType](#DeviceType) | - - - -### "detach" (port) -Emits when an attached motor or sensor is detached from the Hub. - -**Kind**: event emitted by [PUPHub](#PUPHub) -**Overrides**: [detach](#Hub+event_detach) - -| Param | Type | -| --- | --- | -| port | string | - - - -## PUPRemote ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [PUPRemote](#PUPRemote) ⇐ LPF2Hub - * [new PUPRemote()](#new_PUPRemote_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setLEDColor(color)](#PUPRemote+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#PUPRemote+setLEDRGB) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#LPF2Hub+event_button) - * ["colorAndDistance" (port, color, distance)](#LPF2Hub+event_colorAndDistance) - - - -### new PUPRemote() -The PUPRemote is emitted if the discovered device is a Powered UP Remote. - - - -### pupRemote.voltage -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### pupRemote.current -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### pupRemote.name -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### pupRemote.firmwareVersion -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### pupRemote.uuid -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### pupRemote.rssi -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### pupRemote.batteryLevel -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### pupRemote.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Remote via a color value. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [setLEDColor](#LPF2Hub+setLEDColor) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### pupRemote.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [setLEDRGB](#LPF2Hub+setLEDRGB) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### pupRemote.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### pupRemote.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### pupRemote.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### pupRemote.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### pupRemote.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### pupRemote.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### pupRemote.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### pupRemote.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [getHubType](#Hub+getHubType) - - -### pupRemote.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [PUPRemote](#PUPRemote) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "colorAndDistance" (port, color, distance) -A combined color and distance event, emits when the sensor is activated. - -**Kind**: event emitted by [PUPRemote](#PUPRemote) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| color | [Color](#Color) | | -| distance | number | Distance, in millimeters. | - - - -## DuploTrainBase ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [DuploTrainBase](#DuploTrainBase) ⇐ LPF2Hub - * [new DuploTrainBase()](#new_DuploTrainBase_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setLEDColor(color)](#DuploTrainBase+setLEDColor) ⇒ Promise - * [.setMotorSpeed(port, speed, [time])](#DuploTrainBase+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#DuploTrainBase+rampMotorSpeed) ⇒ Promise - * [.hardStopMotor(port)](#DuploTrainBase+hardStopMotor) ⇒ Promise - * [.playSound(sound)](#DuploTrainBase+playSound) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#LPF2Hub+setLEDRGB) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["color" (port, color)](#LPF2Hub+event_color) - * ["speed" (port, speed)](#LPF2Hub+event_speed) - - - -### new DuploTrainBase() -The DuploTrainBase is emitted if the discovered device is a Duplo Train Base. - - - -### duploTrainBase.voltage -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### duploTrainBase.current -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### duploTrainBase.name -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### duploTrainBase.firmwareVersion -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### duploTrainBase.uuid -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### duploTrainBase.rssi -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### duploTrainBase.batteryLevel -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### duploTrainBase.setLEDColor(color) ⇒ Promise -Set the color of the LED on the train via a color value. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [setLEDColor](#LPF2Hub+setLEDColor) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### duploTrainBase.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number \| Array.<number> | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### duploTrainBase.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### duploTrainBase.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### duploTrainBase.playSound(sound) ⇒ Promise -Play a built-in train sound. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| sound | [DuploTrainBaseSound](#DuploTrainBaseSound) | - - - -### duploTrainBase.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### duploTrainBase.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### duploTrainBase.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### duploTrainBase.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### duploTrainBase.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### duploTrainBase.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### duploTrainBase.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### duploTrainBase.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### duploTrainBase.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [getHubType](#Hub+getHubType) - - -### duploTrainBase.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [DuploTrainBase](#DuploTrainBase) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "speed" (port, speed) -Emits on a speed change. - -**Kind**: event emitted by [DuploTrainBase](#DuploTrainBase) - -| Param | Type | -| --- | --- | -| port | string | -| speed | number | - - - -## HubType -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| UNKNOWN | number | 0 | -| WEDO2_SMART_HUB | number | 1 | -| BOOST_MOVE_HUB | number | 2 | -| POWERED_UP_HUB | number | 3 | -| POWERED_UP_REMOTE | number | 4 | -| DUPLO_TRAIN_HUB | number | 5 | - - - -## DeviceType -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| UNKNOWN | number | 0 | -| BASIC_MOTOR | number | 1 | -| TRAIN_MOTOR | number | 2 | -| LED_LIGHTS | number | 8 | -| BOOST_LED | number | 22 | -| WEDO2_TILT | number | 34 | -| WEDO2_DISTANCE | number | 35 | -| BOOST_DISTANCE | number | 37 | -| BOOST_TACHO_MOTOR | number | 38 | -| BOOST_MOVE_HUB_MOTOR | number | 39 | -| BOOST_TILT | number | 40 | -| DUPLO_TRAIN_BASE_MOTOR | number | 41 | -| DUPLO_TRAIN_BASE_SPEAKER | number | 42 | -| DUPLO_TRAIN_BASE_COLOR | number | 43 | -| DUPLO_TRAIN_BASE_SPEEDOMETER | number | 44 | -| POWERED_UP_REMOTE_BUTTON | number | 55 | - - - -## Color -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| BLACK | number | 0 | -| PINK | number | 1 | -| PURPLE | number | 2 | -| BLUE | number | 3 | -| LIGHT_BLUE | number | 4 | -| CYAN | number | 5 | -| GREEN | number | 6 | -| YELLOW | number | 7 | -| ORANGE | number | 8 | -| RED | number | 9 | -| WHITE | number | 10 | -| NONE | number | 255 | - - - -## ButtonState -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| PRESSED | number | 0 | -| RELEASED | number | 1 | -| UP | number | 2 | -| DOWN | number | 3 | -| STOP | number | 4 | - - - -## DuploTrainBaseSound -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| BRAKE | number | 3 | -| STATION_DEPARTURE | number | 5 | -| WATER_REFILL | number | 7 | -| HORN | number | 9 | -| STEAM | number | 10 | - diff --git a/README.md b/README.md index 99b8e98..cc45000 100644 --- a/README.md +++ b/README.md @@ -91,1972 +91,3 @@ More examples are available in the "examples" directory. Thanks go to Jorge Pereira ([@JorgePe](https://github.com/JorgePe)), Sebastian Raff ([@hobbyquaker](https://github.com/hobbyquaker)), Valentin Heun ([@vheun](https://github.com/vheun)), Johan Korten ([@jakorten](https://github.com/jakorten)), and Andrey Pokhilko ([@undera](https://github.com/undera)) for their various works, contributions, and assistance on figuring out the LEGO Boost, WeDo 2.0, and Powered UP protocols. -## Classes - -
-
PoweredUPEventEmitter
-
-
WeDo2SmartHubHub
-
-
BoostMoveHubLPF2Hub
-
-
PUPHubLPF2Hub
-
-
PUPRemoteLPF2Hub
-
-
DuploTrainBaseLPF2Hub
-
-
- -## Typedefs - -
-
HubType
-
-
DeviceType
-
-
Color
-
-
ButtonState
-
-
DuploTrainBaseSound
-
-
- - - -## PoweredUP ⇐ EventEmitter -**Kind**: global class -**Extends**: EventEmitter - -* [PoweredUP](#PoweredUP) ⇐ EventEmitter - * [.scan()](#PoweredUP+scan) - * [.stop()](#PoweredUP+stop) - * [.getConnectedHubByUUID(uuid)](#PoweredUP+getConnectedHubByUUID) ⇒ Hub \| null - * [.getConnectedHubs()](#PoweredUP+getConnectedHubs) ⇒ Array.<Hub> - * ["discover" (hub)](#PoweredUP+event_discover) - - - -### poweredUP.scan() -Begin scanning for Powered UP Hub devices. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - - -### poweredUP.stop() -Stop scanning for Powered UP Hub devices. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - - -### poweredUP.getConnectedHubByUUID(uuid) ⇒ Hub \| null -Retrieve a Powered UP Hub by UUID. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - -| Param | Type | -| --- | --- | -| uuid | string | - - - -### poweredUP.getConnectedHubs() ⇒ Array.<Hub> -Retrieve a list of Powered UP Hubs. - -**Kind**: instance method of [PoweredUP](#PoweredUP) - - -### "discover" (hub) -Emits when a Powered UP Hub device is found. - -**Kind**: event emitted by [PoweredUP](#PoweredUP) - -| Param | Type | -| --- | --- | -| hub | [WeDo2SmartHub](#WeDo2SmartHub) \| [BoostMoveHub](#BoostMoveHub) \| [PUPHub](#PUPHub) \| [PUPRemote](#PUPRemote) \| [DuploTrainBase](#DuploTrainBase) | - - - -## WeDo2SmartHub ⇐ Hub -**Kind**: global class -**Extends**: Hub - -* [WeDo2SmartHub](#WeDo2SmartHub) ⇐ Hub - * [new WeDo2SmartHub()](#new_WeDo2SmartHub_new) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setName(name)](#WeDo2SmartHub+setName) ⇒ Promise - * [.setLEDColor(color)](#WeDo2SmartHub+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#WeDo2SmartHub+setLEDRGB) ⇒ Promise - * [.setMotorSpeed(port, speed, [time])](#WeDo2SmartHub+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#WeDo2SmartHub+rampMotorSpeed) ⇒ Promise - * [.hardStopMotor(port)](#WeDo2SmartHub+hardStopMotor) ⇒ Promise - * [.playTone(frequency, time)](#WeDo2SmartHub+playTone) ⇒ Promise - * [.setLightBrightness(port, brightness, [time])](#WeDo2SmartHub+setLightBrightness) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#WeDo2SmartHub+event_button) - * ["distance" (port, distance)](#WeDo2SmartHub+event_distance) - * ["color" (port, color)](#WeDo2SmartHub+event_color) - * ["tilt" (port, x, y)](#WeDo2SmartHub+event_tilt) - * ["rotate" (port, rotation)](#WeDo2SmartHub+event_rotate) - * ["attach" (port, type)](#Hub+event_attach) - * ["detach" (port)](#Hub+event_detach) - - - -### new WeDo2SmartHub() -The WeDo2SmartHub is emitted if the discovered device is a WeDo 2.0 Smart Hub. - - - -### weDo2SmartHub.name -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### weDo2SmartHub.firmwareVersion -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### weDo2SmartHub.uuid -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### weDo2SmartHub.rssi -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### weDo2SmartHub.batteryLevel -**Kind**: instance property of [WeDo2SmartHub](#WeDo2SmartHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### weDo2SmartHub.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### weDo2SmartHub.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Hub via a color value. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### weDo2SmartHub.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### weDo2SmartHub.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### weDo2SmartHub.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### weDo2SmartHub.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### weDo2SmartHub.playTone(frequency, time) ⇒ Promise -Play a tone on the Hub's in-built buzzer - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command (ie. once the tone has finished playing). - -| Param | Type | Description | -| --- | --- | --- | -| frequency | number | | -| time | number | How long the tone should play for (in milliseconds). | - - - -### weDo2SmartHub.setLightBrightness(port, brightness, [time]) ⇒ Promise -Set the light brightness on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the light is turned off. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| brightness | number | Brightness value between 0-100 (0 is off) | -| [time] | number | How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely. | - - - -### weDo2SmartHub.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### weDo2SmartHub.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful disconnect. - - -### weDo2SmartHub.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### weDo2SmartHub.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### weDo2SmartHub.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### weDo2SmartHub.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### weDo2SmartHub.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) - - -### weDo2SmartHub.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "distance" (port, distance) -Emits when a distance sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| distance | number | Distance, in millimeters. | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "tilt" (port, x, y) -Emits when a tilt sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| x | number | -| y | number | - - - -### "rotate" (port, rotation) -Emits when a rotation sensor is activated. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| rotation | number | - - - -### "attach" (port, type) -Emits when a motor or sensor is attached to the Hub. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | -| type | [DeviceType](#DeviceType) | - - - -### "detach" (port) -Emits when an attached motor or sensor is detached from the Hub. - -**Kind**: event emitted by [WeDo2SmartHub](#WeDo2SmartHub) - -| Param | Type | -| --- | --- | -| port | string | - - - -## BoostMoveHub ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [BoostMoveHub](#BoostMoveHub) ⇐ LPF2Hub - * [new BoostMoveHub()](#new_BoostMoveHub_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setMotorSpeed(port, speed, [time])](#BoostMoveHub+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#BoostMoveHub+rampMotorSpeed) ⇒ Promise - * [.setMotorAngle(port, angle, [speed])](#BoostMoveHub+setMotorAngle) ⇒ Promise - * [.hardStopMotor(port)](#BoostMoveHub+hardStopMotor) ⇒ Promise - * [.setLightBrightness(port, brightness, [time])](#BoostMoveHub+setLightBrightness) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.setLEDColor(color)](#LPF2Hub+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#LPF2Hub+setLEDRGB) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#LPF2Hub+event_button) - * ["distance" (port, distance)](#LPF2Hub+event_distance) - * ["color" (port, color)](#LPF2Hub+event_color) - * ["colorAndDistance" (port, color, distance)](#LPF2Hub+event_colorAndDistance) - * ["tilt" (port, x, y)](#LPF2Hub+event_tilt) - * ["rotate" (port, rotation)](#LPF2Hub+event_rotate) - * ["attach" (port, type)](#Hub+event_attach) - * ["detach" (port)](#Hub+event_detach) - - - -### new BoostMoveHub() -The BoostMoveHub is emitted if the discovered device is a Boost Move Hub. - - - -### boostMoveHub.voltage -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### boostMoveHub.current -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### boostMoveHub.name -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### boostMoveHub.firmwareVersion -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### boostMoveHub.uuid -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### boostMoveHub.rssi -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### boostMoveHub.batteryLevel -**Kind**: instance property of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### boostMoveHub.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number \| Array.<number> | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### boostMoveHub.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### boostMoveHub.setMotorAngle(port, angle, [speed]) ⇒ Promise -Rotate a motor by a given angle. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command (ie. once the motor is finished). - -| Param | Type | Default | Description | -| --- | --- | --- | --- | -| port | string | | | -| angle | number | | How much the motor should be rotated (in degrees). | -| [speed] | number \| Array.<number> | 100 | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | - - - -### boostMoveHub.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### boostMoveHub.setLightBrightness(port, brightness, [time]) ⇒ Promise -Set the light brightness on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the light is turned off. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| brightness | number | Brightness value between 0-100 (0 is off) | -| [time] | number | How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely. | - - - -### boostMoveHub.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### boostMoveHub.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Hub via a color value. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### boostMoveHub.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### boostMoveHub.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### boostMoveHub.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### boostMoveHub.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### boostMoveHub.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### boostMoveHub.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### boostMoveHub.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### boostMoveHub.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [getHubType](#Hub+getHubType) - - -### boostMoveHub.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [BoostMoveHub](#BoostMoveHub) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "distance" (port, distance) -Emits when a distance sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| distance | number | Distance, in millimeters. | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "colorAndDistance" (port, color, distance) -A combined color and distance event, emits when the sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| color | [Color](#Color) | | -| distance | number | Distance, in millimeters. | - - - -### "tilt" (port, x, y) -Emits when a tilt sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used. | -| x | number | | -| y | number | | - - - -### "rotate" (port, rotation) -Emits when a rotation sensor is activated. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) - -| Param | Type | -| --- | --- | -| port | string | -| rotation | number | - - - -### "attach" (port, type) -Emits when a motor or sensor is attached to the Hub. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) -**Overrides**: [attach](#Hub+event_attach) - -| Param | Type | -| --- | --- | -| port | string | -| type | [DeviceType](#DeviceType) | - - - -### "detach" (port) -Emits when an attached motor or sensor is detached from the Hub. - -**Kind**: event emitted by [BoostMoveHub](#BoostMoveHub) -**Overrides**: [detach](#Hub+event_detach) - -| Param | Type | -| --- | --- | -| port | string | - - - -## PUPHub ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [PUPHub](#PUPHub) ⇐ LPF2Hub - * [new PUPHub()](#new_PUPHub_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setMotorSpeed(port, speed, [time])](#PUPHub+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#PUPHub+rampMotorSpeed) ⇒ Promise - * [.hardStopMotor(port)](#PUPHub+hardStopMotor) ⇒ Promise - * [.setLightBrightness(port, brightness, [time])](#PUPHub+setLightBrightness) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.setLEDColor(color)](#LPF2Hub+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#LPF2Hub+setLEDRGB) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#LPF2Hub+event_button) - * ["distance" (port, distance)](#LPF2Hub+event_distance) - * ["color" (port, color)](#LPF2Hub+event_color) - * ["colorAndDistance" (port, color, distance)](#LPF2Hub+event_colorAndDistance) - * ["tilt" (port, x, y)](#LPF2Hub+event_tilt) - * ["attach" (port, type)](#Hub+event_attach) - * ["detach" (port)](#Hub+event_detach) - - - -### new PUPHub() -The PUPHub is emitted if the discovered device is a Powered UP Hub. - - - -### pupHub.voltage -**Kind**: instance property of [PUPHub](#PUPHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### pupHub.current -**Kind**: instance property of [PUPHub](#PUPHub) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### pupHub.name -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### pupHub.firmwareVersion -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### pupHub.uuid -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### pupHub.rssi -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### pupHub.batteryLevel -**Kind**: instance property of [PUPHub](#PUPHub) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### pupHub.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number \| Array.<number> | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### pupHub.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### pupHub.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### pupHub.setLightBrightness(port, brightness, [time]) ⇒ Promise -Set the light brightness on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the light is turned off. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| brightness | number | Brightness value between 0-100 (0 is off) | -| [time] | number | How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely. | - - - -### pupHub.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### pupHub.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Hub via a color value. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### pupHub.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### pupHub.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### pupHub.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### pupHub.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### pupHub.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### pupHub.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### pupHub.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### pupHub.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [getHubType](#Hub+getHubType) - - -### pupHub.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [PUPHub](#PUPHub) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "distance" (port, distance) -Emits when a distance sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| distance | number | Distance, in millimeters. | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "colorAndDistance" (port, color, distance) -A combined color and distance event, emits when the sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| color | [Color](#Color) | | -| distance | number | Distance, in millimeters. | - - - -### "tilt" (port, x, y) -Emits when a tilt sensor is activated. - -**Kind**: event emitted by [PUPHub](#PUPHub) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used. | -| x | number | | -| y | number | | - - - -### "attach" (port, type) -Emits when a motor or sensor is attached to the Hub. - -**Kind**: event emitted by [PUPHub](#PUPHub) -**Overrides**: [attach](#Hub+event_attach) - -| Param | Type | -| --- | --- | -| port | string | -| type | [DeviceType](#DeviceType) | - - - -### "detach" (port) -Emits when an attached motor or sensor is detached from the Hub. - -**Kind**: event emitted by [PUPHub](#PUPHub) -**Overrides**: [detach](#Hub+event_detach) - -| Param | Type | -| --- | --- | -| port | string | - - - -## PUPRemote ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [PUPRemote](#PUPRemote) ⇐ LPF2Hub - * [new PUPRemote()](#new_PUPRemote_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setLEDColor(color)](#PUPRemote+setLEDColor) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#PUPRemote+setLEDRGB) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["button" (button, state)](#LPF2Hub+event_button) - * ["colorAndDistance" (port, color, distance)](#LPF2Hub+event_colorAndDistance) - - - -### new PUPRemote() -The PUPRemote is emitted if the discovered device is a Powered UP Remote. - - - -### pupRemote.voltage -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### pupRemote.current -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### pupRemote.name -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### pupRemote.firmwareVersion -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### pupRemote.uuid -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### pupRemote.rssi -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### pupRemote.batteryLevel -**Kind**: instance property of [PUPRemote](#PUPRemote) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### pupRemote.setLEDColor(color) ⇒ Promise -Set the color of the LED on the Remote via a color value. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [setLEDColor](#LPF2Hub+setLEDColor) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### pupRemote.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [setLEDRGB](#LPF2Hub+setLEDRGB) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### pupRemote.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### pupRemote.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### pupRemote.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### pupRemote.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### pupRemote.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### pupRemote.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### pupRemote.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### pupRemote.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [getHubType](#Hub+getHubType) - - -### pupRemote.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [PUPRemote](#PUPRemote) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "button" (button, state) -Emits when a button is pressed. - -**Kind**: event emitted by [PUPRemote](#PUPRemote) - -| Param | Type | -| --- | --- | -| button | string | -| state | [ButtonState](#ButtonState) | - - - -### "colorAndDistance" (port, color, distance) -A combined color and distance event, emits when the sensor is activated. - -**Kind**: event emitted by [PUPRemote](#PUPRemote) - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| color | [Color](#Color) | | -| distance | number | Distance, in millimeters. | - - - -## DuploTrainBase ⇐ LPF2Hub -**Kind**: global class -**Extends**: LPF2Hub, Hub - -* [DuploTrainBase](#DuploTrainBase) ⇐ LPF2Hub - * [new DuploTrainBase()](#new_DuploTrainBase_new) - * [.voltage](#LPF2Hub+voltage) - * [.current](#LPF2Hub+current) - * [.name](#Hub+name) - * [.firmwareVersion](#Hub+firmwareVersion) - * [.uuid](#Hub+uuid) - * [.rssi](#Hub+rssi) - * [.batteryLevel](#Hub+batteryLevel) - * [.setLEDColor(color)](#DuploTrainBase+setLEDColor) ⇒ Promise - * [.setMotorSpeed(port, speed, [time])](#DuploTrainBase+setMotorSpeed) ⇒ Promise - * [.rampMotorSpeed(port, fromSpeed, toSpeed, time)](#DuploTrainBase+rampMotorSpeed) ⇒ Promise - * [.hardStopMotor(port)](#DuploTrainBase+hardStopMotor) ⇒ Promise - * [.playSound(sound)](#DuploTrainBase+playSound) ⇒ Promise - * [.setName(name)](#LPF2Hub+setName) ⇒ Promise - * [.setLEDRGB(red, green, blue)](#LPF2Hub+setLEDRGB) ⇒ Promise - * [.connect()](#Hub+connect) ⇒ Promise - * [.disconnect()](#Hub+disconnect) ⇒ Promise - * [.subscribe(port, [mode])](#Hub+subscribe) ⇒ Promise - * [.unsubscribe(port)](#Hub+unsubscribe) ⇒ Promise - * [.sleep(delay)](#Hub+sleep) ⇒ Promise - * [.wait(commands)](#Hub+wait) ⇒ Promise - * [.getHubType()](#Hub+getHubType) ⇒ [HubType](#HubType) - * [.getPortDeviceType(port)](#Hub+getPortDeviceType) ⇒ [DeviceType](#DeviceType) - * ["color" (port, color)](#LPF2Hub+event_color) - * ["speed" (port, speed)](#LPF2Hub+event_speed) - - - -### new DuploTrainBase() -The DuploTrainBase is emitted if the discovered device is a Duplo Train Base. - - - -### duploTrainBase.voltage -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| voltage | number | Voltage of the hub (Volts) | - - - -### duploTrainBase.current -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| current | number | Current usage of the hub (Amps) | - - - -### duploTrainBase.name -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [name](#Hub+name) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| name | string | Name of the hub | - - - -### duploTrainBase.firmwareVersion -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [firmwareVersion](#Hub+firmwareVersion) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| firmwareVersion | string | Firmware version of the hub | - - - -### duploTrainBase.uuid -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [uuid](#Hub+uuid) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| uuid | string | UUID of the hub | - - - -### duploTrainBase.rssi -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [rssi](#Hub+rssi) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| rssi | number | Signal strength of the hub | - - - -### duploTrainBase.batteryLevel -**Kind**: instance property of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [batteryLevel](#Hub+batteryLevel) -**Read only**: true -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| batteryLevel | number | Battery level of the hub (Percentage between 0-100) | - - - -### duploTrainBase.setLEDColor(color) ⇒ Promise -Set the color of the LED on the train via a color value. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [setLEDColor](#LPF2Hub+setLEDColor) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| color | [Color](#Color) | - - - -### duploTrainBase.setMotorSpeed(port, speed, [time]) ⇒ Promise -Set the motor speed on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful completion of command. If time is specified, this is once the motor is finished. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| speed | number \| Array.<number> | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds. | -| [time] | number | How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely. | - - - -### duploTrainBase.rampMotorSpeed(port, fromSpeed, toSpeed, time) ⇒ Promise -Ramp the motor speed on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| fromSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| toSpeed | number | For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. | -| time | number | How long the ramp should last (in milliseconds). | - - - -### duploTrainBase.hardStopMotor(port) ⇒ Promise -Fully (hard) stop the motor on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful completion of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### duploTrainBase.playSound(sound) ⇒ Promise -Play a built-in train sound. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| sound | [DuploTrainBaseSound](#DuploTrainBaseSound) | - - - -### duploTrainBase.setName(name) ⇒ Promise -Set the name of the Hub. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| name | string | New name of the hub (14 characters or less, ASCII only). | - - - -### duploTrainBase.setLEDRGB(red, green, blue) ⇒ Promise -Set the color of the LED on the Hub via RGB values. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| red | number | -| green | number | -| blue | number | - - - -### duploTrainBase.connect() ⇒ Promise -Connect to the Hub. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [connect](#Hub+connect) -**Returns**: Promise - Resolved upon successful connect. - - -### duploTrainBase.disconnect() ⇒ Promise -Disconnect the Hub. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [disconnect](#Hub+disconnect) -**Returns**: Promise - Resolved upon successful disconnect. - - -### duploTrainBase.subscribe(port, [mode]) ⇒ Promise -Subscribe to sensor notifications on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [subscribe](#Hub+subscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | Description | -| --- | --- | --- | -| port | string | | -| [mode] | number | The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen. | - - - -### duploTrainBase.unsubscribe(port) ⇒ Promise -Unsubscribe to sensor notifications on a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [unsubscribe](#Hub+unsubscribe) -**Returns**: Promise - Resolved upon successful issuance of command. - -| Param | Type | -| --- | --- | -| port | string | - - - -### duploTrainBase.sleep(delay) ⇒ Promise -Sleep a given amount of time. - -This is a helper method to make it easier to add delays into a chain of commands. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [sleep](#Hub+sleep) -**Returns**: Promise - Resolved after the delay is finished. - -| Param | Type | Description | -| --- | --- | --- | -| delay | number | How long to sleep (in milliseconds). | - - - -### duploTrainBase.wait(commands) ⇒ Promise -Wait until a given list of concurrently running commands are complete. - -This is a helper method to make it easier to wait for concurrent commands to complete. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [wait](#Hub+wait) -**Returns**: Promise - Resolved after the commands are finished. - -| Param | Type | Description | -| --- | --- | --- | -| commands | Array.<Promise.<any>> | Array of executing commands. | - - - -### duploTrainBase.getHubType() ⇒ [HubType](#HubType) -Get the hub type. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [getHubType](#Hub+getHubType) - - -### duploTrainBase.getPortDeviceType(port) ⇒ [DeviceType](#DeviceType) -Get the device type for a given port. - -**Kind**: instance method of [DuploTrainBase](#DuploTrainBase) -**Overrides**: [getPortDeviceType](#Hub+getPortDeviceType) - -| Param | Type | -| --- | --- | -| port | string | - - - -### "color" (port, color) -Emits when a color sensor is activated. - -**Kind**: event emitted by [DuploTrainBase](#DuploTrainBase) - -| Param | Type | -| --- | --- | -| port | string | -| color | [Color](#Color) | - - - -### "speed" (port, speed) -Emits on a speed change. - -**Kind**: event emitted by [DuploTrainBase](#DuploTrainBase) - -| Param | Type | -| --- | --- | -| port | string | -| speed | number | - - - -## HubType -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| UNKNOWN | number | 0 | -| WEDO2_SMART_HUB | number | 1 | -| BOOST_MOVE_HUB | number | 2 | -| POWERED_UP_HUB | number | 3 | -| POWERED_UP_REMOTE | number | 4 | -| DUPLO_TRAIN_HUB | number | 5 | - - - -## DeviceType -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| UNKNOWN | number | 0 | -| BASIC_MOTOR | number | 1 | -| TRAIN_MOTOR | number | 2 | -| LED_LIGHTS | number | 8 | -| BOOST_LED | number | 22 | -| WEDO2_TILT | number | 34 | -| WEDO2_DISTANCE | number | 35 | -| BOOST_DISTANCE | number | 37 | -| BOOST_TACHO_MOTOR | number | 38 | -| BOOST_MOVE_HUB_MOTOR | number | 39 | -| BOOST_TILT | number | 40 | -| DUPLO_TRAIN_BASE_MOTOR | number | 41 | -| DUPLO_TRAIN_BASE_SPEAKER | number | 42 | -| DUPLO_TRAIN_BASE_COLOR | number | 43 | -| DUPLO_TRAIN_BASE_SPEEDOMETER | number | 44 | -| POWERED_UP_REMOTE_BUTTON | number | 55 | - - - -## Color -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| BLACK | number | 0 | -| PINK | number | 1 | -| PURPLE | number | 2 | -| BLUE | number | 3 | -| LIGHT_BLUE | number | 4 | -| CYAN | number | 5 | -| GREEN | number | 6 | -| YELLOW | number | 7 | -| ORANGE | number | 8 | -| RED | number | 9 | -| WHITE | number | 10 | -| NONE | number | 255 | - - - -## ButtonState -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| PRESSED | number | 0 | -| RELEASED | number | 1 | -| UP | number | 2 | -| DOWN | number | 3 | -| STOP | number | 4 | - - - -## DuploTrainBaseSound -**Kind**: global typedef -**Properties** - -| Name | Type | Description | -| --- | --- | --- | -| BRAKE | number | 3 | -| STATION_DEPARTURE | number | 5 | -| WATER_REFILL | number | 7 | -| HORN | number | 9 | -| STEAM | number | 10 | - diff --git a/docs/BoostMoveHub.html b/docs/BoostMoveHub.html new file mode 100644 index 0000000..abcc649 --- /dev/null +++ b/docs/BoostMoveHub.html @@ -0,0 +1,5143 @@ + + + + + JSDoc: Class: BoostMoveHub + + + + + + + + + + +
+ +

Class: BoostMoveHub

+ + + + + + +
+ +
+ +

BoostMoveHub()

+ + +
+ +
+
+ + + + + + +

new BoostMoveHub()

+ + + + + + +
+ The BoostMoveHub is emitted if the discovered device is a Boost Move Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + + + + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) current

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
current + + +number + + + + Current usage of the hub (Amps)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) voltage

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
voltage + + +number + + + + Voltage of the hub (Volts)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

hardStopMotor(port) → {Promise}

+ + + + + + +
+ Fully (hard) stop the motor on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

rampMotorSpeed(port, fromSpeed, toSpeed, time) → {Promise}

+ + + + + + +
+ Ramp the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
fromSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
toSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
time + + +number + + + + How long the ramp should last (in milliseconds).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDColor(color) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via a color value. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
color + + +Color + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDRGB(red, green, blue) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via RGB values. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
red + + +number + + + +
green + + +number + + + +
blue + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLightBrightness(port, brightness, timeopt) → {Promise}

+ + + + + + +
+ Set the light brightness on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
brightness + + +number + + + + + + + + + + Brightness value between 0-100 (0 is off)
time + + +number + + + + + + <optional>
+ + + + + +
How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the light is turned off. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setMotorAngle(port, angle, speedopt) → {Promise}

+ + + + + + +
+ Rotate a motor by a given angle. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDefaultDescription
port + + +string + + + + + + + + + + + +
angle + + +number + + + + + + + + + + + + How much the motor should be rotated (in degrees).
speed + + +number +| + +Array.<number> + + + + + + <optional>
+ + + + + +
+ + 100 + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command (ie. once the motor is finished). +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setMotorSpeed(port, speed, timeopt) → {Promise}

+ + + + + + +
+ Set the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
speed + + +number +| + +Array.<number> + + + + + + + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
time + + +number + + + + + + <optional>
+ + + + + +
How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the motor is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setName(name) → {Promise}

+ + + + + + +
+ Set the name of the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + New name of the hub (14 characters or less, ASCII only).
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

attach

+ + + + + + +
+ Emits when a motor or sensor is attached to the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
type + + +DeviceType + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

button

+ + + + + + +
+ Emits when a button is pressed. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
button + + +string + + + +
state + + +ButtonState + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

color

+ + + + + + +
+ Emits when a color sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

colorAndDistance

+ + + + + + +
+ A combined color and distance event, emits when the sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

detach

+ + + + + + +
+ Emits when an attached motor or sensor is detached from the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

distance

+ + + + + + +
+ Emits when a distance sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

rotate

+ + + + + + +
+ Emits when a rotation sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
rotation + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

tilt

+ + + + + + +
+ Emits when a tilt sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + + If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used.
x + + +number + + + +
y + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/DuploTrainBase.html b/docs/DuploTrainBase.html new file mode 100644 index 0000000..9eee670 --- /dev/null +++ b/docs/DuploTrainBase.html @@ -0,0 +1,3818 @@ + + + + + JSDoc: Class: DuploTrainBase + + + + + + + + + + +
+ +

Class: DuploTrainBase

+ + + + + + +
+ +
+ +

DuploTrainBase()

+ + +
+ +
+
+ + + + + + +

new DuploTrainBase()

+ + + + + + +
+ The DuploTrainBase is emitted if the discovered device is a Duplo Train Base. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + + + + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) current

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
current + + +number + + + + Current usage of the hub (Amps)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) voltage

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
voltage + + +number + + + + Voltage of the hub (Volts)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

hardStopMotor(port) → {Promise}

+ + + + + + +
+ Fully (hard) stop the motor on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

playSound(sound) → {Promise}

+ + + + + + +
+ Play a built-in train sound. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
sound + + +DuploTrainBaseSound + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

rampMotorSpeed(port, fromSpeed, toSpeed, time) → {Promise}

+ + + + + + +
+ Ramp the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
fromSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
toSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
time + + +number + + + + How long the ramp should last (in milliseconds).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDColor(color) → {Promise}

+ + + + + + +
+ Set the color of the LED on the train via a color value. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
color + + +Color + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDRGB(red, green, blue) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via RGB values. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
red + + +number + + + +
green + + +number + + + +
blue + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setMotorSpeed(port, speed, timeopt) → {Promise}

+ + + + + + +
+ Set the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
speed + + +number +| + +Array.<number> + + + + + + + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
time + + +number + + + + + + <optional>
+ + + + + +
How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the motor is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setName(name) → {Promise}

+ + + + + + +
+ Set the name of the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + New name of the hub (14 characters or less, ASCII only).
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

color

+ + + + + + +
+ Emits when a color sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

speed

+ + + + + + +
+ Emits on a speed change. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
speed + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/Hub.html b/docs/Hub.html new file mode 100644 index 0000000..c243e7c --- /dev/null +++ b/docs/Hub.html @@ -0,0 +1,2178 @@ + + + + + JSDoc: Class: Hub + + + + + + + + + + +
+ +

Class: Hub

+ + + + + + +
+ +
+ +

Hub()

+ + +
+ +
+
+ + + + + + +

new Hub()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + +
    +
  • EventEmitter
  • +
+ + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

attach

+ + + + + + +
+ Emits when a motor or sensor is attached to the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
type + + +DeviceType + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

detach

+ + + + + + +
+ Emits when an attached motor or sensor is detached from the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/LPF2Hub.html b/docs/LPF2Hub.html new file mode 100644 index 0000000..bff558e --- /dev/null +++ b/docs/LPF2Hub.html @@ -0,0 +1,4142 @@ + + + + + JSDoc: Class: LPF2Hub + + + + + + + + + + +
+ +

Class: LPF2Hub

+ + + + + + +
+ +
+ +

LPF2Hub()

+ + +
+ +
+
+ + + + + + +

new LPF2Hub()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + + + + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) current

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
current + + +number + + + + Current usage of the hub (Amps)
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) voltage

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
voltage + + +number + + + + Voltage of the hub (Volts)
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

setLEDColor(color) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via a color value. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
color + + +Color + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDRGB(red, green, blue) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via RGB values. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
red + + +number + + + +
green + + +number + + + +
blue + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setName(name) → {Promise}

+ + + + + + +
+ Set the name of the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + New name of the hub (14 characters or less, ASCII only).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

attach

+ + + + + + +
+ Emits when a motor or sensor is attached to the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
type + + +DeviceType + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

button

+ + + + + + +
+ Emits when a button is pressed. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
button + + +string + + + +
state + + +ButtonState + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

color

+ + + + + + +
+ Emits when a color sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

colorAndDistance

+ + + + + + +
+ A combined color and distance event, emits when the sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

detach

+ + + + + + +
+ Emits when an attached motor or sensor is detached from the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

distance

+ + + + + + +
+ Emits when a distance sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

rotate

+ + + + + + +
+ Emits when a rotation sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
rotation + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

speed

+ + + + + + +
+ Emits on a speed change. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
speed + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

tilt

+ + + + + + +
+ Emits when a tilt sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + + If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used.
x + + +number + + + +
y + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/PUPHub.html b/docs/PUPHub.html new file mode 100644 index 0000000..452be80 --- /dev/null +++ b/docs/PUPHub.html @@ -0,0 +1,4730 @@ + + + + + JSDoc: Class: PUPHub + + + + + + + + + + +
+ +

Class: PUPHub

+ + + + + + +
+ +
+ +

PUPHub()

+ + +
+ +
+
+ + + + + + +

new PUPHub()

+ + + + + + +
+ The PUPHub is emitted if the discovered device is a Powered UP Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + + + + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) current

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
current + + +number + + + + Current usage of the hub (Amps)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) voltage

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
voltage + + +number + + + + Voltage of the hub (Volts)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

hardStopMotor(port) → {Promise}

+ + + + + + +
+ Fully (hard) stop the motor on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

rampMotorSpeed(port, fromSpeed, toSpeed, time) → {Promise}

+ + + + + + +
+ Ramp the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
fromSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
toSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
time + + +number + + + + How long the ramp should last (in milliseconds).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDColor(color) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via a color value. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
color + + +Color + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDRGB(red, green, blue) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via RGB values. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
red + + +number + + + +
green + + +number + + + +
blue + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLightBrightness(port, brightness, timeopt) → {Promise}

+ + + + + + +
+ Set the light brightness on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
brightness + + +number + + + + + + + + + + Brightness value between 0-100 (0 is off)
time + + +number + + + + + + <optional>
+ + + + + +
How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the light is turned off. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setMotorSpeed(port, speed, timeopt) → {Promise}

+ + + + + + +
+ Set the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
speed + + +number +| + +Array.<number> + + + + + + + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
time + + +number + + + + + + <optional>
+ + + + + +
How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the motor is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setName(name) → {Promise}

+ + + + + + +
+ Set the name of the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + New name of the hub (14 characters or less, ASCII only).
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

attach

+ + + + + + +
+ Emits when a motor or sensor is attached to the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
type + + +DeviceType + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

button

+ + + + + + +
+ Emits when a button is pressed. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
button + + +string + + + +
state + + +ButtonState + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

color

+ + + + + + +
+ Emits when a color sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

colorAndDistance

+ + + + + + +
+ A combined color and distance event, emits when the sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

detach

+ + + + + + +
+ Emits when an attached motor or sensor is detached from the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

distance

+ + + + + + +
+ Emits when a distance sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

tilt

+ + + + + + +
+ Emits when a tilt sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + + If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used.
x + + +number + + + +
y + + +number + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/PUPRemote.html b/docs/PUPRemote.html new file mode 100644 index 0000000..28b4698 --- /dev/null +++ b/docs/PUPRemote.html @@ -0,0 +1,3067 @@ + + + + + JSDoc: Class: PUPRemote + + + + + + + + + + +
+ +

Class: PUPRemote

+ + + + + + +
+ +
+ +

PUPRemote()

+ + +
+ +
+
+ + + + + + +

new PUPRemote()

+ + + + + + +
+ The PUPRemote is emitted if the discovered device is a Powered UP Remote. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + + + + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) current

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
current + + +number + + + + Current usage of the hub (Amps)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) voltage

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
voltage + + +number + + + + Voltage of the hub (Volts)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

setLEDColor(color) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Remote via a color value. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
color + + +Color + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDRGB(red, green, blue) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via RGB values. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
red + + +number + + + +
green + + +number + + + +
blue + + +number + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setName(name) → {Promise}

+ + + + + + +
+ Set the name of the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + New name of the hub (14 characters or less, ASCII only).
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

button

+ + + + + + +
+ Emits when a button is pressed. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
button + + +string + + + +
state + + +ButtonState + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

colorAndDistance

+ + + + + + +
+ A combined color and distance event, emits when the sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/PoweredUP.html b/docs/PoweredUP.html new file mode 100644 index 0000000..e40ccad --- /dev/null +++ b/docs/PoweredUP.html @@ -0,0 +1,762 @@ + + + + + JSDoc: Class: PoweredUP + + + + + + + + + + +
+ +

Class: PoweredUP

+ + + + + + +
+ +
+ +

PoweredUP()

+ + +
+ +
+
+ + + + + + +

new PoweredUP()

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + +
    +
  • EventEmitter
  • +
+ + + + + + + + + + + + + + + + + +

Methods

+ + + + + + + +

getConnectedHubByUUID(uuid) → {Hub|null}

+ + + + + + +
+ Retrieve a Powered UP Hub by UUID. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +Hub +| + +null + + +
+
+ + + + + + + + + + + + + +

getConnectedHubs() → {Array.<Hub>}

+ + + + + + +
+ Retrieve a list of Powered UP Hubs. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +Array.<Hub> + + +
+
+ + + + + + + + + + + + + +

scan()

+ + + + + + +
+ Begin scanning for Powered UP Hub devices. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

stop()

+ + + + + + +
+ Stop scanning for Powered UP Hub devices. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

Events

+ + + + + + + +

discover

+ + + + + + +
+ Emits when a Powered UP Hub device is found. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
hub + + +WeDo2SmartHub +| + +BoostMoveHub +| + +PUPHub +| + +PUPRemote +| + +DuploTrainBase + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/WeDo2SmartHub.html b/docs/WeDo2SmartHub.html new file mode 100644 index 0000000..21fd70b --- /dev/null +++ b/docs/WeDo2SmartHub.html @@ -0,0 +1,4612 @@ + + + + + JSDoc: Class: WeDo2SmartHub + + + + + + + + + + +
+ +

Class: WeDo2SmartHub

+ + + + + + +
+ +
+ +

WeDo2SmartHub()

+ + +
+ +
+
+ + + + + + +

new WeDo2SmartHub()

+ + + + + + +
+ The WeDo2SmartHub is emitted if the discovered device is a WeDo 2.0 Smart Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + +

Extends

+ + + + + + + + + + + + + + + + + + + + +

Members

+ + + +

(readonly) batteryLevel

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
batteryLevel + + +number + + + + Battery level of the hub (Percentage between 0-100)
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) firmwareVersion

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
firmwareVersion + + +string + + + + Firmware version of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) name

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + Name of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) rssi

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
rssi + + +number + + + + Signal strength of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

(readonly) uuid

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
uuid + + +string + + + + UUID of the hub
+ + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +

Methods

+ + + + + + + +

connect() → {Promise}

+ + + + + + +
+ Connect to the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + + + +
Overrides:
+
+ + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful connect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

disconnect() → {Promise}

+ + + + + + +
+ Disconnect the Hub. +
+ + + + + + + + + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful disconnect. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

getHubType() → {HubType}

+ + + + + + +
+ Get the hub type. +
+ + + + + + + + + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +HubType + + +
+
+ + + + + + + + + + + + + +

getPortDeviceType(port) → {DeviceType}

+ + + + + + +
+ Get the device type for a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + + + +
+
+ Type +
+
+ +DeviceType + + +
+
+ + + + + + + + + + + + + +

hardStopMotor(port) → {Promise}

+ + + + + + +
+ Fully (hard) stop the motor on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

playTone(frequency, time) → {Promise}

+ + + + + + +
+ Play a tone on the Hub's in-built buzzer +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
frequency + + +number + + + +
time + + +number + + + + How long the tone should play for (in milliseconds).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command (ie. once the tone has finished playing). +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

rampMotorSpeed(port, fromSpeed, toSpeed, time) → {Promise}

+ + + + + + +
+ Ramp the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
fromSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
toSpeed + + +number + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
time + + +number + + + + How long the ramp should last (in milliseconds).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDColor(color) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via a color value. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
color + + +Color + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLEDRGB(red, green, blue) → {Promise}

+ + + + + + +
+ Set the color of the LED on the Hub via RGB values. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
red + + +number + + + +
green + + +number + + + +
blue + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setLightBrightness(port, brightness, timeopt) → {Promise}

+ + + + + + +
+ Set the light brightness on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
brightness + + +number + + + + + + + + + + Brightness value between 0-100 (0 is off)
time + + +number + + + + + + <optional>
+ + + + + +
How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the light is turned off. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setMotorSpeed(port, speed, timeopt) → {Promise}

+ + + + + + +
+ Set the motor speed on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
speed + + +number + + + + + + + + + + For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
time + + +number + + + + + + <optional>
+ + + + + +
How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful completion of command. If time is specified, this is once the motor is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

setName(name) → {Promise}

+ + + + + + +
+ Set the name of the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
name + + +string + + + + New name of the hub (14 characters or less, ASCII only).
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

sleep(delay) → {Promise}

+ + + + + + +
+ Sleep a given amount of time. + +This is a helper method to make it easier to add delays into a chain of commands. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
delay + + +number + + + + How long to sleep (in milliseconds).
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the delay is finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

subscribe(port, modeopt) → {Promise}

+ + + + + + +
+ Subscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
port + + +string + + + + + + + + + +
mode + + +number + + + + + + <optional>
+ + + + + +
The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

unsubscribe(port) → {Promise}

+ + + + + + +
+ Unsubscribe to sensor notifications on a given port. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved upon successful issuance of command. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

wait(commands) → {Promise}

+ + + + + + +
+ Wait until a given list of concurrently running commands are complete. + +This is a helper method to make it easier to wait for concurrent commands to complete. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
commands + + +Array.<Promise.<any>> + + + + Array of executing commands.
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + +
Returns:
+ + +
+ Resolved after the commands are finished. +
+ + + +
+
+ Type +
+
+ +Promise + + +
+
+ + + + + + + + + + + + + +

Events

+ + + + + + + +

attach

+ + + + + + +
+ Emits when a motor or sensor is attached to the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
type + + +DeviceType + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

button

+ + + + + + +
+ Emits when a button is pressed. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
button + + +string + + + +
state + + +ButtonState + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

color

+ + + + + + +
+ Emits when a color sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
color + + +Color + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

detach

+ + + + + + +
+ Emits when an attached motor or sensor is detached from the Hub. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
+ + + + + + +
+ + + + + + +
Inherited From:
+
+ + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

distance

+ + + + + + +
+ Emits when a distance sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
distance + + +number + + + + Distance, in millimeters.
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

rotate

+ + + + + + +
+ Emits when a rotation sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
rotation + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +

tilt

+ + + + + + +
+ Emits when a tilt sensor is activated. +
+ + + + + + + + + +
Parameters:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
port + + +string + + + +
x + + +number + + + +
y + + +number + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/boostmovehub.js.html b/docs/boostmovehub.js.html new file mode 100644 index 0000000..a28a7b3 --- /dev/null +++ b/docs/boostmovehub.js.html @@ -0,0 +1,271 @@ + + + + + JSDoc: Source: boostmovehub.js + + + + + + + + + + +
+ +

Source: boostmovehub.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const lpf2hub_1 = require("./lpf2hub");
+const port_1 = require("./port");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("boostmovehub");
+/**
+ * The BoostMoveHub is emitted if the discovered device is a Boost Move Hub.
+ * @class BoostMoveHub
+ * @extends LPF2Hub
+ * @extends Hub
+ */
+class BoostMoveHub extends lpf2hub_1.LPF2Hub {
+    // We set JSDoc to ignore these events as a Boost Move Hub will never emit them.
+    /**
+     * @event BoostMoveHub#speed
+     * @ignore
+     */
+    static IsBoostMoveHub(peripheral) {
+        return (peripheral.advertisement.serviceUuids.indexOf(Consts.BLEService.LPF2_HUB.replace(/-/g, "")) >= 0 && peripheral.advertisement.manufacturerData[3] === Consts.BLEManufacturerData.BOOST_MOVE_HUB_ID);
+    }
+    constructor(peripheral, autoSubscribe = true) {
+        super(peripheral, autoSubscribe);
+        this.type = Consts.HubType.BOOST_MOVE_HUB;
+        this._ports = {
+            "A": new port_1.Port("A", 55),
+            "B": new port_1.Port("B", 56),
+            "AB": new port_1.Port("AB", 57),
+            "TILT": new port_1.Port("TILT", 58),
+            "C": new port_1.Port("C", 1),
+            "D": new port_1.Port("D", 2)
+        };
+        debug("Discovered Boost Move Hub");
+    }
+    connect() {
+        return new Promise(async (resolve, reject) => {
+            debug("Connecting to Boost Move Hub");
+            await super.connect();
+            debug("Connect completed");
+            return resolve();
+        });
+    }
+    /**
+     * Set the motor speed on a given port.
+     * @method BoostMoveHub#setMotorSpeed
+     * @param {string} port
+     * @param {number | Array.<number>} speed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
+     * @param {number} [time] How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the motor is finished.
+     */
+    setMotorSpeed(port, speed, time) {
+        const portObj = this._portLookup(port);
+        if (portObj.id !== "AB" && speed instanceof Array) {
+            throw new Error(`Port ${portObj.id} can only accept a single speed`);
+        }
+        let cancelEventTimer = true;
+        if (typeof time === "boolean") {
+            if (time === true) {
+                cancelEventTimer = false;
+            }
+            time = undefined;
+        }
+        if (cancelEventTimer) {
+            portObj.cancelEventTimer();
+        }
+        return new Promise((resolve, reject) => {
+            if (time && typeof time === "number") {
+                if (portObj.type === Consts.DeviceType.BOOST_TACHO_MOTOR || portObj.type === Consts.DeviceType.BOOST_MOVE_HUB_MOTOR) {
+                    portObj.busy = true;
+                    let data = null;
+                    if (portObj.id === "AB") {
+                        data = Buffer.from([0x81, portObj.value, 0x11, 0x0a, 0x00, 0x00, this._mapSpeed(speed instanceof Array ? speed[0] : speed), this._mapSpeed(speed instanceof Array ? speed[1] : speed), 0x64, 0x7f, 0x03]);
+                    }
+                    else {
+                        // @ts-ignore: The type of speed is properly checked at the start
+                        data = Buffer.from([0x81, portObj.value, 0x11, 0x09, 0x00, 0x00, this._mapSpeed(speed), 0x64, 0x7f, 0x03]);
+                    }
+                    data.writeUInt16LE(time > 65535 ? 65535 : time, 4);
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    portObj.finished = () => {
+                        return resolve();
+                    };
+                }
+                else {
+                    // @ts-ignore: The type of speed is properly checked at the start
+                    const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, this._mapSpeed(speed)]);
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    const timeout = global.setTimeout(() => {
+                        const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, 0x00]);
+                        this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                        return resolve();
+                        // @ts-ignore: The type of time is properly checked at the start
+                    }, time);
+                    portObj.setEventTimer(timeout);
+                }
+            }
+            else {
+                if (portObj.type === Consts.DeviceType.BOOST_TACHO_MOTOR || portObj.type === Consts.DeviceType.BOOST_MOVE_HUB_MOTOR) {
+                    portObj.busy = true;
+                    let data = null;
+                    if (portObj.id === "AB") {
+                        data = Buffer.from([0x81, portObj.value, 0x11, 0x02, this._mapSpeed(speed instanceof Array ? speed[0] : speed), this._mapSpeed(speed instanceof Array ? speed[1] : speed), 0x64, 0x7f, 0x03]);
+                    }
+                    else {
+                        // @ts-ignore: The type of speed is properly checked at the start
+                        data = Buffer.from([0x81, portObj.value, 0x11, 0x01, this._mapSpeed(speed), 0x64, 0x7f, 0x03]);
+                    }
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    portObj.finished = () => {
+                        return resolve();
+                    };
+                }
+                else {
+                    // @ts-ignore: The type of speed is properly checked at the start
+                    const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, this._mapSpeed(speed)]);
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                }
+            }
+        });
+    }
+    /**
+     * Ramp the motor speed on a given port.
+     * @method BoostMoveHub#rampMotorSpeed
+     * @param {string} port
+     * @param {number} fromSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} toSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} time How long the ramp should last (in milliseconds).
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    rampMotorSpeed(port, fromSpeed, toSpeed, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            this._calculateRamp(fromSpeed, toSpeed, time, portObj)
+                .on("changeSpeed", (speed) => {
+                this.setMotorSpeed(port, speed, true);
+            })
+                .on("finished", resolve);
+        });
+    }
+    /**
+     * Rotate a motor by a given angle.
+     * @method BoostMoveHub#setMotorAngle
+     * @param {string} port
+     * @param {number} angle How much the motor should be rotated (in degrees).
+     * @param {number | Array.<number>} [speed=100] For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
+     * @returns {Promise} Resolved upon successful completion of command (ie. once the motor is finished).
+     */
+    setMotorAngle(port, angle, speed = 100) {
+        const portObj = this._portLookup(port);
+        if (!(portObj.type === Consts.DeviceType.BOOST_TACHO_MOTOR || portObj.type === Consts.DeviceType.BOOST_MOVE_HUB_MOTOR)) {
+            throw new Error("Angle rotation is only available when using a Boost Tacho Motor or Boost Move Hub Motor");
+        }
+        if (portObj.id !== "AB" && speed instanceof Array) {
+            throw new Error(`Port ${portObj.id} can only accept a single speed`);
+        }
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            portObj.busy = true;
+            let data = null;
+            if (portObj.id === "AB") {
+                data = Buffer.from([0x81, portObj.value, 0x11, 0x0c, 0x00, 0x00, 0x00, 0x00, this._mapSpeed(speed instanceof Array ? speed[0] : speed), this._mapSpeed(speed instanceof Array ? speed[1] : speed), 0x64, 0x7f, 0x03]);
+            }
+            else {
+                // @ts-ignore: The type of speed is properly checked at the start
+                data = Buffer.from([0x81, portObj.value, 0x11, 0x0b, 0x00, 0x00, 0x00, 0x00, this._mapSpeed(speed), 0x64, 0x7f, 0x03]);
+            }
+            data.writeUInt32LE(angle, 4);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            portObj.finished = () => {
+                return resolve();
+            };
+        });
+    }
+    /**
+     * Fully (hard) stop the motor on a given port.
+     * @method BoostMoveHub#hardStopMotor
+     * @param {string} port
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    hardStopMotor(port) {
+        return this.setMotorSpeed(port, 127);
+    }
+    /**
+     * Set the light brightness on a given port.
+     * @method BoostMoveHub#setLightBrightness
+     * @param {string} port
+     * @param {number} brightness Brightness value between 0-100 (0 is off)
+     * @param {number} [time] How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the light is turned off.
+     */
+    setLightBrightness(port, brightness, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, brightness]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            if (time) {
+                const timeout = global.setTimeout(() => {
+                    const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, 0x00]);
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    return resolve();
+                }, time);
+                portObj.setEventTimer(timeout);
+            }
+            else {
+                return resolve();
+            }
+        });
+    }
+}
+exports.BoostMoveHub = BoostMoveHub;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/consts.js.html b/docs/consts.js.html new file mode 100644 index 0000000..c3b01bb --- /dev/null +++ b/docs/consts.js.html @@ -0,0 +1,199 @@ + + + + + JSDoc: Source: consts.js + + + + + + + + + + +
+ +

Source: consts.js

+ + + + + + +
+
+
"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+ * @typedef HubType
+ * @property {number} UNKNOWN 0
+ * @property {number} WEDO2_SMART_HUB 1
+ * @property {number} BOOST_MOVE_HUB 2
+ * @property {number} POWERED_UP_HUB 3
+ * @property {number} POWERED_UP_REMOTE 4
+ * @property {number} DUPLO_TRAIN_HUB 5
+ */
+var HubType;
+(function (HubType) {
+    HubType[HubType["UNKNOWN"] = 0] = "UNKNOWN";
+    HubType[HubType["WEDO2_SMART_HUB"] = 1] = "WEDO2_SMART_HUB";
+    HubType[HubType["BOOST_MOVE_HUB"] = 2] = "BOOST_MOVE_HUB";
+    HubType[HubType["POWERED_UP_HUB"] = 3] = "POWERED_UP_HUB";
+    HubType[HubType["POWERED_UP_REMOTE"] = 4] = "POWERED_UP_REMOTE";
+    HubType[HubType["DUPLO_TRAIN_HUB"] = 5] = "DUPLO_TRAIN_HUB";
+})(HubType = exports.HubType || (exports.HubType = {}));
+/**
+ * @typedef DeviceType
+ * @property {number} UNKNOWN 0
+ * @property {number} BASIC_MOTOR 1
+ * @property {number} TRAIN_MOTOR 2
+ * @property {number} LED_LIGHTS 8
+ * @property {number} BOOST_LED 22
+ * @property {number} WEDO2_TILT 34
+ * @property {number} WEDO2_DISTANCE 35
+ * @property {number} BOOST_DISTANCE 37
+ * @property {number} BOOST_TACHO_MOTOR 38
+ * @property {number} BOOST_MOVE_HUB_MOTOR 39
+ * @property {number} BOOST_TILT 40
+ * @property {number} DUPLO_TRAIN_BASE_MOTOR 41
+ * @property {number} DUPLO_TRAIN_BASE_SPEAKER 42
+ * @property {number} DUPLO_TRAIN_BASE_COLOR 43
+ * @property {number} DUPLO_TRAIN_BASE_SPEEDOMETER 44
+ * @property {number} POWERED_UP_REMOTE_BUTTON 55
+ */
+var DeviceType;
+(function (DeviceType) {
+    DeviceType[DeviceType["UNKNOWN"] = 0] = "UNKNOWN";
+    DeviceType[DeviceType["BASIC_MOTOR"] = 1] = "BASIC_MOTOR";
+    DeviceType[DeviceType["TRAIN_MOTOR"] = 2] = "TRAIN_MOTOR";
+    DeviceType[DeviceType["LED_LIGHTS"] = 8] = "LED_LIGHTS";
+    DeviceType[DeviceType["BOOST_LED"] = 22] = "BOOST_LED";
+    DeviceType[DeviceType["WEDO2_TILT"] = 34] = "WEDO2_TILT";
+    DeviceType[DeviceType["WEDO2_DISTANCE"] = 35] = "WEDO2_DISTANCE";
+    DeviceType[DeviceType["BOOST_DISTANCE"] = 37] = "BOOST_DISTANCE";
+    DeviceType[DeviceType["BOOST_TACHO_MOTOR"] = 38] = "BOOST_TACHO_MOTOR";
+    DeviceType[DeviceType["BOOST_MOVE_HUB_MOTOR"] = 39] = "BOOST_MOVE_HUB_MOTOR";
+    DeviceType[DeviceType["BOOST_TILT"] = 40] = "BOOST_TILT";
+    DeviceType[DeviceType["DUPLO_TRAIN_BASE_MOTOR"] = 41] = "DUPLO_TRAIN_BASE_MOTOR";
+    DeviceType[DeviceType["DUPLO_TRAIN_BASE_SPEAKER"] = 42] = "DUPLO_TRAIN_BASE_SPEAKER";
+    DeviceType[DeviceType["DUPLO_TRAIN_BASE_COLOR"] = 43] = "DUPLO_TRAIN_BASE_COLOR";
+    DeviceType[DeviceType["DUPLO_TRAIN_BASE_SPEEDOMETER"] = 44] = "DUPLO_TRAIN_BASE_SPEEDOMETER";
+    DeviceType[DeviceType["POWERED_UP_REMOTE_BUTTON"] = 55] = "POWERED_UP_REMOTE_BUTTON";
+})(DeviceType = exports.DeviceType || (exports.DeviceType = {}));
+/**
+ * @typedef Color
+ * @property {number} BLACK 0
+ * @property {number} PINK 1
+ * @property {number} PURPLE 2
+ * @property {number} BLUE 3
+ * @property {number} LIGHT_BLUE 4
+ * @property {number} CYAN 5
+ * @property {number} GREEN 6
+ * @property {number} YELLOW 7
+ * @property {number} ORANGE 8
+ * @property {number} RED 9
+ * @property {number} WHITE 10
+ * @property {number} NONE 255
+ */
+var Color;
+(function (Color) {
+    Color[Color["BLACK"] = 0] = "BLACK";
+    Color[Color["PINK"] = 1] = "PINK";
+    Color[Color["PURPLE"] = 2] = "PURPLE";
+    Color[Color["BLUE"] = 3] = "BLUE";
+    Color[Color["LIGHT_BLUE"] = 4] = "LIGHT_BLUE";
+    Color[Color["CYAN"] = 5] = "CYAN";
+    Color[Color["GREEN"] = 6] = "GREEN";
+    Color[Color["YELLOW"] = 7] = "YELLOW";
+    Color[Color["ORANGE"] = 8] = "ORANGE";
+    Color[Color["RED"] = 9] = "RED";
+    Color[Color["WHITE"] = 10] = "WHITE";
+    Color[Color["NONE"] = 255] = "NONE";
+})(Color = exports.Color || (exports.Color = {}));
+/**
+ * @typedef ButtonState
+ * @property {number} PRESSED 0
+ * @property {number} RELEASED 1
+ * @property {number} UP 2
+ * @property {number} DOWN 3
+ * @property {number} STOP 4
+ */
+var ButtonState;
+(function (ButtonState) {
+    ButtonState[ButtonState["PRESSED"] = 0] = "PRESSED";
+    ButtonState[ButtonState["RELEASED"] = 1] = "RELEASED";
+    ButtonState[ButtonState["UP"] = 2] = "UP";
+    ButtonState[ButtonState["DOWN"] = 3] = "DOWN";
+    ButtonState[ButtonState["STOP"] = 4] = "STOP";
+})(ButtonState = exports.ButtonState || (exports.ButtonState = {}));
+/**
+ * @typedef DuploTrainBaseSound
+ * @property {number} BRAKE 3
+ * @property {number} STATION_DEPARTURE 5
+ * @property {number} WATER_REFILL 7
+ * @property {number} HORN 9
+ * @property {number} STEAM 10
+ */
+var DuploTrainBaseSound;
+(function (DuploTrainBaseSound) {
+    DuploTrainBaseSound[DuploTrainBaseSound["BRAKE"] = 3] = "BRAKE";
+    DuploTrainBaseSound[DuploTrainBaseSound["STATION_DEPARTURE"] = 5] = "STATION_DEPARTURE";
+    DuploTrainBaseSound[DuploTrainBaseSound["WATER_REFILL"] = 7] = "WATER_REFILL";
+    DuploTrainBaseSound[DuploTrainBaseSound["HORN"] = 9] = "HORN";
+    DuploTrainBaseSound[DuploTrainBaseSound["STEAM"] = 10] = "STEAM";
+})(DuploTrainBaseSound = exports.DuploTrainBaseSound || (exports.DuploTrainBaseSound = {}));
+var BLEManufacturerData;
+(function (BLEManufacturerData) {
+    BLEManufacturerData[BLEManufacturerData["BOOST_MOVE_HUB_ID"] = 64] = "BOOST_MOVE_HUB_ID";
+    BLEManufacturerData[BLEManufacturerData["POWERED_UP_HUB_ID"] = 65] = "POWERED_UP_HUB_ID";
+    BLEManufacturerData[BLEManufacturerData["POWERED_UP_REMOTE_ID"] = 66] = "POWERED_UP_REMOTE_ID";
+    BLEManufacturerData[BLEManufacturerData["DUPLO_TRAIN_HUB_ID"] = 32] = "DUPLO_TRAIN_HUB_ID";
+})(BLEManufacturerData = exports.BLEManufacturerData || (exports.BLEManufacturerData = {}));
+var BLEService;
+(function (BLEService) {
+    BLEService["WEDO2_SMART_HUB"] = "00001523-1212-efde-1523-785feabcd123";
+    BLEService["LPF2_HUB"] = "00001623-1212-efde-1623-785feabcd123";
+})(BLEService = exports.BLEService || (exports.BLEService = {}));
+var BLECharacteristic;
+(function (BLECharacteristic) {
+    BLECharacteristic["WEDO2_BATTERY"] = "2a19";
+    BLECharacteristic["WEDO2_FIRMWARE_REVISION"] = "2a26";
+    BLECharacteristic["WEDO2_BUTTON"] = "00001526-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_PORT_TYPE"] = "00001527-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_LOW_VOLTAGE_ALERT"] = "00001528-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_HIGH_CURRENT_ALERT"] = "00001529-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_LOW_SIGNAL_ALERT"] = "0000152a-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_SENSOR_VALUE"] = "00001560-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_VALUE_FORMAT"] = "00001561-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_PORT_TYPE_WRITE"] = "00001563-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_MOTOR_VALUE_WRITE"] = "00001565-1212-efde-1523-785feabcd123";
+    BLECharacteristic["WEDO2_NAME_ID"] = "00001524-1212-efde-1523-785feabcd123";
+    BLECharacteristic["LPF2_ALL"] = "00001624-1212-efde-1623-785feabcd123";
+})(BLECharacteristic = exports.BLECharacteristic || (exports.BLECharacteristic = {}));
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/duplotrainbase.js.html b/docs/duplotrainbase.js.html new file mode 100644 index 0000000..4110cef --- /dev/null +++ b/docs/duplotrainbase.js.html @@ -0,0 +1,220 @@ + + + + + JSDoc: Source: duplotrainbase.js + + + + + + + + + + +
+ +

Source: duplotrainbase.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const lpf2hub_1 = require("./lpf2hub");
+const port_1 = require("./port");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("duploTrainBase");
+/**
+ * The DuploTrainBase is emitted if the discovered device is a Duplo Train Base.
+ * @class DuploTrainBase
+ * @extends LPF2Hub
+ * @extends Hub
+ */
+class DuploTrainBase extends lpf2hub_1.LPF2Hub {
+    // We set JSDoc to ignore these events as a Duplo Train Base will never emit them.
+    /**
+     * @event DuploTrainBase#distance
+     * @ignore
+     */
+    /**
+     * @event DuploTrainBase#colorAndDistance
+     * @ignore
+     */
+    /**
+     * @event DuploTrainBase#tilt
+     * @ignore
+     */
+    /**
+     * @event DuploTrainBase#rotate
+     * @ignore
+     */
+    /**
+     * @event DuploTrainBase#button
+     * @ignore
+     */
+    /**
+     * @event DuploTrainBase#attach
+     * @ignore
+     */
+    /**
+     * @event DuploTrainBase#detach
+     * @ignore
+     */
+    static IsDuploTrainBase(peripheral) {
+        return (peripheral.advertisement.serviceUuids.indexOf(Consts.BLEService.LPF2_HUB.replace(/-/g, "")) >= 0 && peripheral.advertisement.manufacturerData[3] === Consts.BLEManufacturerData.DUPLO_TRAIN_HUB_ID);
+    }
+    constructor(peripheral, autoSubscribe = true) {
+        super(peripheral, autoSubscribe);
+        this.type = Consts.HubType.DUPLO_TRAIN_HUB;
+        this._ports = {
+            "MOTOR": new port_1.Port("MOTOR", 0),
+            "COLOR": new port_1.Port("COLOR", 18),
+            "SPEEDOMETER": new port_1.Port("SPEEDOMETER", 19)
+        };
+        debug("Discovered Duplo Train Base");
+    }
+    connect() {
+        return new Promise(async (resolve, reject) => {
+            debug("Connecting to Duplo Train Base");
+            await super.connect();
+            debug("Connect completed");
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the train via a color value.
+     * @method DuploTrainBase#setLEDColor
+     * @param {Color} color
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDColor(color) {
+        return new Promise((resolve, reject) => {
+            if (color === false) {
+                color = 0;
+            }
+            const data = Buffer.from([0x81, 0x11, 0x11, 0x51, 0x00, color]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            return resolve();
+        });
+    }
+    /**
+     * Set the motor speed on a given port.
+     * @method DuploTrainBase#setMotorSpeed
+     * @param {string} port
+     * @param {number | Array.<number>} speed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
+     * @param {number} [time] How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the motor is finished.
+     */
+    setMotorSpeed(port, speed, time) {
+        const portObj = this._portLookup(port);
+        let cancelEventTimer = true;
+        if (typeof time === "boolean") {
+            if (time === true) {
+                cancelEventTimer = false;
+            }
+            time = undefined;
+        }
+        if (cancelEventTimer) {
+            portObj.cancelEventTimer();
+        }
+        return new Promise((resolve, reject) => {
+            if (time && typeof time === "number") {
+                const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, this._mapSpeed(speed)]);
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                const timeout = global.setTimeout(() => {
+                    const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, 0x00]);
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    return resolve();
+                }, time);
+                portObj.setEventTimer(timeout);
+            }
+            else {
+                const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, this._mapSpeed(speed)]);
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                return resolve();
+            }
+        });
+    }
+    /**
+     * Ramp the motor speed on a given port.
+     * @method DuploTrainBase#rampMotorSpeed
+     * @param {string} port
+     * @param {number} fromSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} toSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} time How long the ramp should last (in milliseconds).
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    rampMotorSpeed(port, fromSpeed, toSpeed, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            this._calculateRamp(fromSpeed, toSpeed, time, portObj)
+                .on("changeSpeed", (speed) => {
+                this.setMotorSpeed(port, speed, true);
+            })
+                .on("finished", resolve);
+        });
+    }
+    /**
+     * Fully (hard) stop the motor on a given port.
+     * @method DuploTrainBase#hardStopMotor
+     * @param {string} port
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    hardStopMotor(port) {
+        return this.setMotorSpeed(port, 127);
+    }
+    /**
+     * Play a built-in train sound.
+     * @method DuploTrainBase#playSound
+     * @param {DuploTrainBaseSound} sound
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    playSound(sound) {
+        return new Promise((resolve, reject) => {
+            const data = Buffer.from([0x81, 0x01, 0x11, 0x51, 0x01, sound]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            return resolve();
+        });
+    }
+}
+exports.DuploTrainBase = DuploTrainBase;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/fonts/OpenSans-Bold-webfont.eot b/docs/fonts/OpenSans-Bold-webfont.eot new file mode 100644 index 0000000..5d20d91 Binary files /dev/null and b/docs/fonts/OpenSans-Bold-webfont.eot differ diff --git a/docs/fonts/OpenSans-Bold-webfont.svg b/docs/fonts/OpenSans-Bold-webfont.svg new file mode 100644 index 0000000..3ed7be4 --- /dev/null +++ b/docs/fonts/OpenSans-Bold-webfont.svg @@ -0,0 +1,1830 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/OpenSans-Bold-webfont.woff b/docs/fonts/OpenSans-Bold-webfont.woff new file mode 100644 index 0000000..1205787 Binary files /dev/null and b/docs/fonts/OpenSans-Bold-webfont.woff differ diff --git a/docs/fonts/OpenSans-BoldItalic-webfont.eot b/docs/fonts/OpenSans-BoldItalic-webfont.eot new file mode 100644 index 0000000..1f639a1 Binary files /dev/null and b/docs/fonts/OpenSans-BoldItalic-webfont.eot differ diff --git a/docs/fonts/OpenSans-BoldItalic-webfont.svg b/docs/fonts/OpenSans-BoldItalic-webfont.svg new file mode 100644 index 0000000..6a2607b --- /dev/null +++ b/docs/fonts/OpenSans-BoldItalic-webfont.svg @@ -0,0 +1,1830 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/OpenSans-BoldItalic-webfont.woff b/docs/fonts/OpenSans-BoldItalic-webfont.woff new file mode 100644 index 0000000..ed760c0 Binary files /dev/null and b/docs/fonts/OpenSans-BoldItalic-webfont.woff differ diff --git a/docs/fonts/OpenSans-Italic-webfont.eot b/docs/fonts/OpenSans-Italic-webfont.eot new file mode 100644 index 0000000..0c8a0ae Binary files /dev/null and b/docs/fonts/OpenSans-Italic-webfont.eot differ diff --git a/docs/fonts/OpenSans-Italic-webfont.svg b/docs/fonts/OpenSans-Italic-webfont.svg new file mode 100644 index 0000000..e1075dc --- /dev/null +++ b/docs/fonts/OpenSans-Italic-webfont.svg @@ -0,0 +1,1830 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/OpenSans-Italic-webfont.woff b/docs/fonts/OpenSans-Italic-webfont.woff new file mode 100644 index 0000000..ff652e6 Binary files /dev/null and b/docs/fonts/OpenSans-Italic-webfont.woff differ diff --git a/docs/fonts/OpenSans-Light-webfont.eot b/docs/fonts/OpenSans-Light-webfont.eot new file mode 100644 index 0000000..1486840 Binary files /dev/null and b/docs/fonts/OpenSans-Light-webfont.eot differ diff --git a/docs/fonts/OpenSans-Light-webfont.svg b/docs/fonts/OpenSans-Light-webfont.svg new file mode 100644 index 0000000..11a472c --- /dev/null +++ b/docs/fonts/OpenSans-Light-webfont.svg @@ -0,0 +1,1831 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/OpenSans-Light-webfont.woff b/docs/fonts/OpenSans-Light-webfont.woff new file mode 100644 index 0000000..e786074 Binary files /dev/null and b/docs/fonts/OpenSans-Light-webfont.woff differ diff --git a/docs/fonts/OpenSans-LightItalic-webfont.eot b/docs/fonts/OpenSans-LightItalic-webfont.eot new file mode 100644 index 0000000..8f44592 Binary files /dev/null and b/docs/fonts/OpenSans-LightItalic-webfont.eot differ diff --git a/docs/fonts/OpenSans-LightItalic-webfont.svg b/docs/fonts/OpenSans-LightItalic-webfont.svg new file mode 100644 index 0000000..431d7e3 --- /dev/null +++ b/docs/fonts/OpenSans-LightItalic-webfont.svg @@ -0,0 +1,1835 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/OpenSans-LightItalic-webfont.woff b/docs/fonts/OpenSans-LightItalic-webfont.woff new file mode 100644 index 0000000..43e8b9e Binary files /dev/null and b/docs/fonts/OpenSans-LightItalic-webfont.woff differ diff --git a/docs/fonts/OpenSans-Regular-webfont.eot b/docs/fonts/OpenSans-Regular-webfont.eot new file mode 100644 index 0000000..6bbc3cf Binary files /dev/null and b/docs/fonts/OpenSans-Regular-webfont.eot differ diff --git a/docs/fonts/OpenSans-Regular-webfont.svg b/docs/fonts/OpenSans-Regular-webfont.svg new file mode 100644 index 0000000..25a3952 --- /dev/null +++ b/docs/fonts/OpenSans-Regular-webfont.svg @@ -0,0 +1,1831 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/OpenSans-Regular-webfont.woff b/docs/fonts/OpenSans-Regular-webfont.woff new file mode 100644 index 0000000..e231183 Binary files /dev/null and b/docs/fonts/OpenSans-Regular-webfont.woff differ diff --git a/docs/global.html b/docs/global.html new file mode 100644 index 0000000..1918166 --- /dev/null +++ b/docs/global.html @@ -0,0 +1,3023 @@ + + + + + JSDoc: Global + + + + + + + + + + +
+ +

Global

+ + + + + + +
+ +
+ +

+ + +
+ +
+
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + +

Type Definitions

+ + + +

ButtonState

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
PRESSED + + +number + + + + 0
RELEASED + + +number + + + + 1
UP + + +number + + + + 2
DOWN + + +number + + + + 3
STOP + + +number + + + + 4
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

ButtonState

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
PRESSED + + +number + + + + 0
RELEASED + + +number + + + + 1
UP + + +number + + + + 2
DOWN + + +number + + + + 3
STOP + + +number + + + + 4
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

Color

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
BLACK + + +number + + + + 0
PINK + + +number + + + + 1
PURPLE + + +number + + + + 2
BLUE + + +number + + + + 3
LIGHT_BLUE + + +number + + + + 4
CYAN + + +number + + + + 5
GREEN + + +number + + + + 6
YELLOW + + +number + + + + 7
ORANGE + + +number + + + + 8
RED + + +number + + + + 9
WHITE + + +number + + + + 10
NONE + + +number + + + + 255
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

Color

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
BLACK + + +number + + + + 0
PINK + + +number + + + + 1
PURPLE + + +number + + + + 2
BLUE + + +number + + + + 3
LIGHT_BLUE + + +number + + + + 4
CYAN + + +number + + + + 5
GREEN + + +number + + + + 6
YELLOW + + +number + + + + 7
ORANGE + + +number + + + + 8
RED + + +number + + + + 9
WHITE + + +number + + + + 10
NONE + + +number + + + + 255
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

DeviceType

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
UNKNOWN + + +number + + + + 0
BASIC_MOTOR + + +number + + + + 1
TRAIN_MOTOR + + +number + + + + 2
LED_LIGHTS + + +number + + + + 8
BOOST_LED + + +number + + + + 22
WEDO2_TILT + + +number + + + + 34
WEDO2_DISTANCE + + +number + + + + 35
BOOST_DISTANCE + + +number + + + + 37
BOOST_TACHO_MOTOR + + +number + + + + 38
BOOST_MOVE_HUB_MOTOR + + +number + + + + 39
BOOST_TILT + + +number + + + + 40
DUPLO_TRAIN_BASE_MOTOR + + +number + + + + 41
DUPLO_TRAIN_BASE_SPEAKER + + +number + + + + 42
DUPLO_TRAIN_BASE_COLOR + + +number + + + + 43
DUPLO_TRAIN_BASE_SPEEDOMETER + + +number + + + + 44
POWERED_UP_REMOTE_BUTTON + + +number + + + + 55
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

DeviceType

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
UNKNOWN + + +number + + + + 0
BASIC_MOTOR + + +number + + + + 1
TRAIN_MOTOR + + +number + + + + 2
LED_LIGHTS + + +number + + + + 8
BOOST_LED + + +number + + + + 22
WEDO2_TILT + + +number + + + + 34
WEDO2_DISTANCE + + +number + + + + 35
BOOST_DISTANCE + + +number + + + + 37
BOOST_TACHO_MOTOR + + +number + + + + 38
BOOST_MOVE_HUB_MOTOR + + +number + + + + 39
BOOST_TILT + + +number + + + + 40
DUPLO_TRAIN_BASE_MOTOR + + +number + + + + 41
DUPLO_TRAIN_BASE_SPEAKER + + +number + + + + 42
DUPLO_TRAIN_BASE_COLOR + + +number + + + + 43
DUPLO_TRAIN_BASE_SPEEDOMETER + + +number + + + + 44
POWERED_UP_REMOTE_BUTTON + + +number + + + + 55
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

DuploTrainBaseSound

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
BRAKE + + +number + + + + 3
STATION_DEPARTURE + + +number + + + + 5
WATER_REFILL + + +number + + + + 7
HORN + + +number + + + + 9
STEAM + + +number + + + + 10
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

DuploTrainBaseSound

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
BRAKE + + +number + + + + 3
STATION_DEPARTURE + + +number + + + + 5
WATER_REFILL + + +number + + + + 7
HORN + + +number + + + + 9
STEAM + + +number + + + + 10
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

HubType

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
UNKNOWN + + +number + + + + 0
WEDO2_SMART_HUB + + +number + + + + 1
BOOST_MOVE_HUB + + +number + + + + 2
POWERED_UP_HUB + + +number + + + + 3
POWERED_UP_REMOTE + + +number + + + + 4
DUPLO_TRAIN_HUB + + +number + + + + 5
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + +

HubType

+ + + + + + + + + + +
Properties:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
UNKNOWN + + +number + + + + 0
WEDO2_SMART_HUB + + +number + + + + 1
BOOST_MOVE_HUB + + +number + + + + 2
POWERED_UP_HUB + + +number + + + + 3
POWERED_UP_REMOTE + + +number + + + + 4
DUPLO_TRAIN_HUB + + +number + + + + 5
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Source:
+
+ + + + + + + +
+ + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/hub.js.html b/docs/hub.js.html new file mode 100644 index 0000000..0362500 --- /dev/null +++ b/docs/hub.js.html @@ -0,0 +1,386 @@ + + + + + JSDoc: Source: hub.js + + + + + + + + + + +
+ +

Source: hub.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const events_1 = require("events");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("hub");
+/**
+ * @class Hub
+ * @extends EventEmitter
+ */
+class Hub extends events_1.EventEmitter {
+    constructor(peripheral, autoSubscribe = true) {
+        super();
+        this.autoSubscribe = true;
+        this.useSpeedMap = true;
+        this.type = Consts.HubType.UNKNOWN;
+        this._ports = {};
+        this._characteristics = {};
+        this._firmwareInfo = { major: 0, minor: 0, bugFix: 0, build: 0 };
+        this._batteryLevel = 100;
+        this._rssi = -100;
+        this.autoSubscribe = !!autoSubscribe;
+        this._peripheral = peripheral;
+        this._uuid = peripheral.uuid;
+        this._name = peripheral.advertisement.localName;
+    }
+    /**
+     * @readonly
+     * @property {string} name Name of the hub
+     */
+    get name() {
+        return this._name;
+    }
+    /**
+     * @readonly
+     * @property {string} firmwareVersion Firmware version of the hub
+     */
+    get firmwareVersion() {
+        return `${this._firmwareInfo.major}.${this._firmwareInfo.minor}.${this._lpad(this._firmwareInfo.bugFix.toString(), 2)}.${this._lpad(this._firmwareInfo.build.toString(), 4)}`;
+    }
+    /**
+     * @readonly
+     * @property {string} uuid UUID of the hub
+     */
+    get uuid() {
+        return this._uuid;
+    }
+    /**
+     * @readonly
+     * @property {number} rssi Signal strength of the hub
+     */
+    get rssi() {
+        return this._rssi;
+    }
+    /**
+     * @readonly
+     * @property {number} batteryLevel Battery level of the hub (Percentage between 0-100)
+     */
+    get batteryLevel() {
+        return this._batteryLevel;
+    }
+    /**
+     * Connect to the Hub.
+     * @method Hub#connect
+     * @returns {Promise} Resolved upon successful connect.
+     */
+    connect() {
+        return new Promise((connectResolve, connectReject) => {
+            const self = this;
+            this._peripheral.connect((err) => {
+                this._rssi = this._peripheral.rssi;
+                const rssiUpdateInterval = setInterval(() => {
+                    this._peripheral.updateRssi((err, rssi) => {
+                        if (!err) {
+                            if (this._rssi !== rssi) {
+                                this._rssi = rssi;
+                            }
+                        }
+                    });
+                }, 2000);
+                self._peripheral.on("disconnect", () => {
+                    clearInterval(rssiUpdateInterval);
+                    this.emit("disconnect");
+                });
+                self._peripheral.discoverServices([], (err, services) => {
+                    if (err) {
+                        this.emit("error", err);
+                        return;
+                    }
+                    debug("Service/characteristic discovery started");
+                    const servicePromises = [];
+                    services.forEach((service) => {
+                        servicePromises.push(new Promise((resolve, reject) => {
+                            service.discoverCharacteristics([], (err, characteristics) => {
+                                characteristics.forEach((characteristic) => {
+                                    this._characteristics[characteristic.uuid] = characteristic;
+                                });
+                                return resolve();
+                            });
+                        }));
+                    });
+                    Promise.all(servicePromises).then(() => {
+                        debug("Service/characteristic discovery finished");
+                        this.emit("connect");
+                        return connectResolve();
+                    });
+                });
+            });
+        });
+    }
+    /**
+     * Disconnect the Hub.
+     * @method Hub#disconnect
+     * @returns {Promise} Resolved upon successful disconnect.
+     */
+    disconnect() {
+        return new Promise((resolve, reject) => {
+            this._peripheral.disconnect(() => {
+                return resolve();
+            });
+        });
+    }
+    /**
+     * Subscribe to sensor notifications on a given port.
+     * @method Hub#subscribe
+     * @param {string} port
+     * @param {number} [mode] The sensor mode to activate. If no mode is provided, the default for that sensor will be chosen.
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    subscribe(port, mode) {
+        return new Promise((resolve, reject) => {
+            let newMode = this._getModeForDeviceType(this._portLookup(port).type);
+            if (mode) {
+                newMode = mode;
+            }
+            this._activatePortDevice(this._portLookup(port).value, this._portLookup(port).type, newMode, 0x00, () => {
+                return resolve();
+            });
+        });
+    }
+    /**
+     * Unsubscribe to sensor notifications on a given port.
+     * @method Hub#unsubscribe
+     * @param {string} port
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    unsubscribe(port) {
+        return new Promise((resolve, reject) => {
+            const mode = this._getModeForDeviceType(this._portLookup(port).type);
+            this._deactivatePortDevice(this._portLookup(port).value, this._portLookup(port).type, mode, 0x00, () => {
+                return resolve();
+            });
+        });
+    }
+    /**
+     * Sleep a given amount of time.
+     *
+     * This is a helper method to make it easier to add delays into a chain of commands.
+     * @method Hub#sleep
+     * @param {number} delay How long to sleep (in milliseconds).
+     * @returns {Promise} Resolved after the delay is finished.
+     */
+    sleep(delay) {
+        return new Promise((resolve) => {
+            global.setTimeout(resolve, delay);
+        });
+    }
+    /**
+     * Wait until a given list of concurrently running commands are complete.
+     *
+     * This is a helper method to make it easier to wait for concurrent commands to complete.
+     * @method Hub#wait
+     * @param {Array<Promise<any>>} commands Array of executing commands.
+     * @returns {Promise} Resolved after the commands are finished.
+     */
+    wait(commands) {
+        return Promise.all(commands);
+    }
+    /**
+     * Get the hub type.
+     * @method Hub#getHubType
+     * @returns {HubType}
+     */
+    getHubType() {
+        return this.type;
+    }
+    /**
+     * Get the device type for a given port.
+     * @method Hub#getPortDeviceType
+     * @param {string} port
+     * @returns {DeviceType}
+     */
+    getPortDeviceType(port) {
+        return this._portLookup(port).type;
+    }
+    _getCharacteristic(uuid) {
+        return this._characteristics[uuid.replace(/-/g, "")];
+    }
+    _subscribeToCharacteristic(characteristic, callback) {
+        characteristic.on("data", (data) => {
+            return callback(data);
+        });
+        characteristic.subscribe((err) => {
+            if (err) {
+                this.emit("error", err);
+            }
+        });
+    }
+    _activatePortDevice(port, type, mode, format, callback) {
+        if (callback) {
+            callback();
+        }
+    }
+    _deactivatePortDevice(port, type, mode, format, callback) {
+        if (callback) {
+            callback();
+        }
+    }
+    _registerDeviceAttachment(port, type) {
+        if (port.connected) {
+            port.type = type;
+            if (this.autoSubscribe) {
+                this._activatePortDevice(port.value, type, this._getModeForDeviceType(type), 0x00);
+                /**
+                 * Emits when a motor or sensor is attached to the Hub.
+                 * @event Hub#attach
+                 * @param {string} port
+                 * @param {DeviceType} type
+                 */
+                this.emit("attach", port.id, type);
+            }
+        }
+        else {
+            port.type = Consts.DeviceType.UNKNOWN;
+            debug(`Port ${port.id} disconnected`);
+            /**
+             * Emits when an attached motor or sensor is detached from the Hub.
+             * @event Hub#detach
+             * @param {string} port
+             */
+            this.emit("detach", port.id);
+        }
+    }
+    _getPortForPortNumber(num) {
+        for (const key of Object.keys(this._ports)) {
+            if (this._ports[key].value === num) {
+                return this._ports[key];
+            }
+        }
+        return false;
+    }
+    _mapSpeed(speed) {
+        if (!this.useSpeedMap) {
+            return speed;
+        }
+        if (speed === 127) {
+            return 127; // Hard stop
+        }
+        if (speed > 100) {
+            speed = 100;
+        }
+        else if (speed < -100) {
+            speed = -100;
+        }
+        return speed;
+    }
+    _calculateRamp(fromSpeed, toSpeed, time, port) {
+        const emitter = new events_1.EventEmitter();
+        const steps = Math.abs(toSpeed - fromSpeed);
+        let delay = time / steps;
+        let increment = 1;
+        if (delay < 50 && steps > 0) {
+            increment = 50 / delay;
+            delay = 50;
+        }
+        if (fromSpeed > toSpeed) {
+            increment = -increment;
+        }
+        let i = 0;
+        const interval = setInterval(() => {
+            let speed = Math.round(fromSpeed + (++i * increment));
+            if (toSpeed > fromSpeed && speed > toSpeed) {
+                speed = toSpeed;
+            }
+            else if (fromSpeed > toSpeed && speed < toSpeed) {
+                speed = toSpeed;
+            }
+            emitter.emit("changeSpeed", speed);
+            if (speed === toSpeed) {
+                clearInterval(interval);
+                emitter.emit("finished");
+            }
+        }, delay);
+        port.setEventTimer(interval);
+        return emitter;
+    }
+    _portLookup(port) {
+        if (!this._ports[port.toUpperCase()]) {
+            throw new Error(`Port ${port.toUpperCase()} does not exist on this Hub type`);
+        }
+        return this._ports[port];
+    }
+    _lpad(str, length) {
+        while (str.length < length) {
+            str = "0" + str;
+        }
+        return str;
+    }
+    _getModeForDeviceType(type) {
+        switch (type) {
+            case Consts.DeviceType.BASIC_MOTOR:
+                return 0x02;
+            case Consts.DeviceType.TRAIN_MOTOR:
+                return 0x02;
+            case Consts.DeviceType.BOOST_TACHO_MOTOR:
+                return 0x02;
+            case Consts.DeviceType.BOOST_MOVE_HUB_MOTOR:
+                return 0x02;
+            case Consts.DeviceType.BOOST_DISTANCE:
+                return (this.type === Consts.HubType.WEDO2_SMART_HUB ? 0x00 : 0x08);
+            case Consts.DeviceType.BOOST_TILT:
+                return 0x04;
+            default:
+                return 0x00;
+        }
+    }
+}
+exports.Hub = Hub;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..68609c8 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,234 @@ + + + + + JSDoc: Home + + + + + + + + + + +
+ +

Home

+ + + + + + + + +

+ + + + + + + + + + + + + + + +
+

CircleCI +Gitter +NPM Version

+

node-poweredup - A Node.js module to interface with LEGO Powered UP components.

Introduction

LEGO Powered UP is the successor to Power Functions, the system for adding electronics to LEGO models. Powered UP is a collection of ranges - starting with LEGO WeDo 2.0 released in 2016, LEGO Boost released in 2017, and LEGO Powered UP released in 2018. It also includes the 2018 Duplo App-Controlled Train sets.

+

Powered UP has a few improvements over Power Functions:

+
    +
  1. The use of Bluetooth Low Energy makes it easy to control from a computer, and even write code for.

    +
  2. +
  3. The ability to use sensors to react to events happening in the real world opens up a whole new world of possibilities.

    +
  4. +
  5. As Powered UP hubs and remotes pair with each other, the system allows for a near unlimited number of independently controlled models in the same room. Power Functions was limited to 8 due to the use of infra-red for communication.

    +
  6. +
+

Installation

Node.js v8.0 required.

+
npm install node-poweredup --save

node-poweredup uses the Noble BLE library by Sandeep Mistry. On macOS everything should function out of the box. On Linux and Windows there are certain dependencies which may need installed first.

+

Note: node-poweredup has been tested on macOS 10.13 and Debian/Raspbian on the Raspberry Pi 3 Model B.

+

Compatibility

While most Powered UP components and Hubs are compatible with each other, there are exceptions. For example, there is limited backwards compatibility between newer components and the WeDo 2.0 Smart Hub. However WeDo 2.0 components are fully forwards compatible with newer Hubs.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Device NameProduct CodeTypeWeDo 2.0 Smart HubBoost Move HubPowered UP HubAvailability
WeDo 2.0 Tilt Sensor45305SensorYesYesYes45300
WeDo 2.0 Motion Sensor45304SensorYesYesYes45300
WeDo 2.0 Medium Motor45303MotorYesYesYes45300
76112
Boost Color and Distance Sensor88007SensorPartialYesYes17101
Boost Tacho Motor88008Motor/SensorPartialYesPartial17101
Powered UP Train Motor88011MotorYesYesYes60197
60198
Powered UP LED Lights88005LightYesYesYes88005
+

In addition, the Hubs themselves have certain built-in features which this library exposes.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Hub NameProduct CodeBuilt-In FeaturesAvailability
WeDo 2.0 Smart hub45301RGB LED
Piezo Buzzer
Button
45300
Boost Move Hub88006RGB LED
Tilt Sensor
2x Tacho Motors
Button
17101
Powered UP Hub88009RGB LED
Button
60197
60198
76112
Powered UP Remote88010RGB LED
Left and Right Control Buttons
Button
60197
60198
Duplo Train Base28743RGB LED/Headlights
Speaker
Speedometer
Motor
Color and Distance Sensor
Button
10874
10875
+

Known Issues and Limitations

    +
  • The Boost Color and Distance sensor only works in color mode with the WeDo 2.0 Smart Hub.

    +
  • +
  • When used with the WeDo 2.0 Smart Hub, the Boost Tacho Motor does not support rotating the motor by angle.

    +
  • +
  • When used with the Powered UP Hub, the Boost Tacho Motor does not support rotating the motor by angle. It also does not support rotation detection.

    +
  • +
  • Plugging two Boost Tacho Motors into the Powered UP Hub will crash the Hub (This requires a firmware update from LEGO to fix).

    +
  • +
+

Usage

const PoweredUP = require("node-poweredup");
+const poweredUP = new PoweredUP.PoweredUP();
+
+poweredUP.on("discover", async (hub) => { // Wait to discover a Hub
+    await hub.connect(); // Connect to the Hub
+    await hub.sleep(3000); // Sleep for 3 seconds before starting
+
+    while (true) { // Repeat indefinitely
+        hub.setMotorSpeed("B", 75); // Start a motor attached to port B to run a 3/4 speed (75) indefinitely
+        await hub.setMotorSpeed("A", 100,  2000); // Run a motor attached to port A for 2 seconds at maximum speed (100) then stop
+        await hub.sleep(1000); // Do nothing for 1 second
+        await hub.setMotorSpeed("A", -50,  1000); // Run a motor attached to port A for 1 second at 1/2 speed in reverse (-50) then stop
+        await hub.sleep(1000); // Do nothing for 1 second
+    }
+});
+
+poweredUP.scan(); // Start scanning for Hubs

More examples are available in the "examples" directory.

+

Credits

Thanks go to Jorge Pereira (@JorgePe), Sebastian Raff (@hobbyquaker), Valentin Heun (@vheun), Johan Korten (@jakorten), and Andrey Pokhilko (@undera) for their various works, contributions, and assistance on figuring out the LEGO Boost, WeDo 2.0, and Powered UP protocols.

+
+ + + + + + +
+ + + +
+ + + + + + + \ No newline at end of file diff --git a/docs/lpf2hub.js.html b/docs/lpf2hub.js.html new file mode 100644 index 0000000..d365a80 --- /dev/null +++ b/docs/lpf2hub.js.html @@ -0,0 +1,431 @@ + + + + + JSDoc: Source: lpf2hub.js + + + + + + + + + + +
+ +

Source: lpf2hub.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const hub_1 = require("./hub");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("lpf2hub");
+/**
+ * @class LPF2Hub
+ * @extends Hub
+ */
+class LPF2Hub extends hub_1.Hub {
+    constructor() {
+        super(...arguments);
+        this._voltage = 0;
+        this._current = 0;
+        this._lastTiltX = 0;
+        this._lastTiltY = 0;
+        this._messageBuffer = Buffer.alloc(0);
+    }
+    /**
+     * @readonly
+     * @property {number} voltage Voltage of the hub (Volts)
+     */
+    get voltage() {
+        return this._voltage;
+    }
+    /**
+     * @readonly
+     * @property {number} current Current usage of the hub (Amps)
+     */
+    get current() {
+        return this._current;
+    }
+    connect() {
+        return new Promise(async (resolve, reject) => {
+            await super.connect();
+            const characteristic = this._getCharacteristic(Consts.BLECharacteristic.LPF2_ALL);
+            this._subscribeToCharacteristic(characteristic, this._parseMessage.bind(this));
+            setTimeout(() => {
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x01, 0x02, 0x02])); // Activate button reports
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x01, 0x03, 0x05])); // Request firmware version
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x01, 0x06, 0x02])); // Activate battery level reports
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x41, 0x3b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01])); // Activate current reports
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x41, 0x3c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01])); // Activate voltage reports
+                if (this.type === Consts.HubType.DUPLO_TRAIN_HUB) {
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x41, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01]));
+                }
+            }, 1000);
+            return resolve();
+        });
+    }
+    /**
+     * Set the name of the Hub.
+     * @method LPF2Hub#setName
+     * @param {string} name New name of the hub (14 characters or less, ASCII only).
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setName(name) {
+        if (name.length > 14) {
+            throw new Error("Name must be 14 characters or less");
+        }
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x01, 0x01, 0x01]);
+            data = Buffer.concat([data, Buffer.from(name, "ascii")]);
+            // Send this twice, as sometimes the first time doesn't take
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            this._name = name;
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the Hub via a color value.
+     * @method LPF2Hub#setLEDColor
+     * @param {Color} color
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDColor(color) {
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x41, 0x32, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            if (color === false) {
+                color = 0;
+            }
+            data = Buffer.from([0x81, 0x32, 0x11, 0x51, 0x00, color]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the Hub via RGB values.
+     * @method LPF2Hub#setLEDRGB
+     * @param {number} red
+     * @param {number} green
+     * @param {number} blue
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDRGB(red, green, blue) {
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x41, 0x32, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            data = Buffer.from([0x81, 0x32, 0x11, 0x51, 0x01, red, green, blue]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            return resolve();
+        });
+    }
+    sendRaw(message) {
+        return new Promise((resolve, reject) => {
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, message, () => {
+                return resolve();
+            });
+        });
+    }
+    _activatePortDevice(port, type, mode, format, callback) {
+        this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x41, port, mode, 0x01, 0x00, 0x00, 0x00, 0x01]), callback);
+    }
+    _deactivatePortDevice(port, type, mode, format, callback) {
+        this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, Buffer.from([0x41, port, mode, 0x01, 0x00, 0x00, 0x00, 0x00]), callback);
+    }
+    _writeMessage(uuid, message, callback) {
+        const characteristic = this._getCharacteristic(uuid);
+        if (characteristic) {
+            message = Buffer.concat([Buffer.alloc(2), message]);
+            message[0] = message.length;
+            characteristic.write(message, false, callback);
+        }
+    }
+    _parseMessage(data) {
+        if (data) {
+            this._messageBuffer = Buffer.concat([this._messageBuffer, data]);
+        }
+        if (this._messageBuffer.length <= 0) {
+            return;
+        }
+        const len = this._messageBuffer[0];
+        if (len >= this._messageBuffer.length) {
+            const message = this._messageBuffer.slice(0, len);
+            this._messageBuffer = this._messageBuffer.slice(len);
+            switch (message[2]) {
+                case 0x01: {
+                    this._parseDeviceInfo(message);
+                    break;
+                }
+                case 0x04: {
+                    this._parsePortMessage(message);
+                    break;
+                }
+                case 0x45: {
+                    this._parseSensorMessage(message);
+                    break;
+                }
+                case 0x82: {
+                    this._parsePortAction(message);
+                    break;
+                }
+            }
+            if (this._messageBuffer.length > 0) {
+                this._parseMessage();
+            }
+        }
+    }
+    _parseDeviceInfo(data) {
+        // Button press reports
+        if (data[3] === 0x02) {
+            if (data[5] === 1) {
+                /**
+                 * Emits when a button is pressed.
+                 * @event LPF2Hub#button
+                 * @param {string} button
+                 * @param {ButtonState} state
+                 */
+                this.emit("button", "GREEN", Consts.ButtonState.PRESSED);
+                return;
+            }
+            else if (data[5] === 0) {
+                this.emit("button", "GREEN", Consts.ButtonState.RELEASED);
+                return;
+            }
+            // Firmware version
+        }
+        else if (data[3] === 0x03) {
+            const build = data.readUInt16LE(5);
+            const bugFix = data.readUInt8(7);
+            const major = data.readUInt8(8) >>> 4;
+            const minor = data.readUInt8(8) & 0xf;
+            this._firmwareInfo = { major, minor, bugFix, build };
+            // Battery level reports
+        }
+        else if (data[3] === 0x06) {
+            this._batteryLevel = data[5];
+        }
+    }
+    _parsePortMessage(data) {
+        const port = this._getPortForPortNumber(data[3]);
+        if (!port) {
+            return;
+        }
+        port.connected = (data[4] === 1 || data[4] === 2) ? true : false;
+        this._registerDeviceAttachment(port, data[5]);
+    }
+    _parsePortAction(data) {
+        const port = this._getPortForPortNumber(data[3]);
+        if (!port) {
+            return;
+        }
+        if (data[4] === 0x0a) {
+            port.busy = false;
+            if (port.finished) {
+                port.finished();
+                port.finished = null;
+            }
+        }
+    }
+    _padMessage(data, len) {
+        if (data.length < len) {
+            data = Buffer.concat([data, Buffer.alloc(len - data.length)]);
+        }
+        return data;
+    }
+    _parseSensorMessage(data) {
+        if ((data[3] === 0x3b && this.type === Consts.HubType.POWERED_UP_REMOTE)) { // Voltage (PUP Remote)
+            data = this._padMessage(data, 6);
+            const voltage = data.readUInt16LE(4) / 500;
+            this._voltage = Math.floor(voltage);
+            return;
+        }
+        else if (data[3] === 0x3c && this.type === Consts.HubType.POWERED_UP_REMOTE) { // Current (PUP Remote)
+            data = this._padMessage(data, 6);
+            const current = data.readUInt16LE(4) / 1000;
+            this._current = current;
+            return;
+        }
+        else if (data[3] === 0x3c && this.type !== Consts.HubType.POWERED_UP_REMOTE) { // Voltage (Non-PUP Remote)
+            data = this._padMessage(data, 6);
+            const voltage = data.readUInt16LE(4) / 400;
+            this._voltage = Math.floor(voltage);
+            return;
+        }
+        else if (data[3] === 0x3b && this.type !== Consts.HubType.POWERED_UP_REMOTE) { // Current (Non-PUP Remote)
+            data = this._padMessage(data, 6);
+            const current = data.readUInt16LE(4) / 4096;
+            this._current = current * 100;
+            return;
+        }
+        const port = this._getPortForPortNumber(data[3]);
+        if (!port) {
+            return;
+        }
+        if (port && port.connected) {
+            switch (port.type) {
+                case Consts.DeviceType.WEDO2_DISTANCE: {
+                    let distance = data[4];
+                    if (data[5] === 1) {
+                        distance = data[4] + 255;
+                    }
+                    /**
+                     * Emits when a distance sensor is activated.
+                     * @event LPF2Hub#distance
+                     * @param {string} port
+                     * @param {number} distance Distance, in millimeters.
+                     */
+                    this.emit("distance", port.id, distance * 10);
+                    break;
+                }
+                case Consts.DeviceType.BOOST_DISTANCE: {
+                    /**
+                     * Emits when a color sensor is activated.
+                     * @event LPF2Hub#color
+                     * @param {string} port
+                     * @param {Color} color
+                     */
+                    if (data[4] <= 10) {
+                        this.emit("color", port.id, data[4]);
+                    }
+                    let distance = data[5];
+                    const partial = data[7];
+                    if (partial > 0) {
+                        distance += 1.0 / partial;
+                    }
+                    distance = Math.floor(distance * 25.4) - 20;
+                    this.emit("distance", port.id, distance);
+                    /**
+                     * A combined color and distance event, emits when the sensor is activated.
+                     * @event LPF2Hub#colorAndDistance
+                     * @param {string} port
+                     * @param {Color} color
+                     * @param {number} distance Distance, in millimeters.
+                     */
+                    if (data[4] <= 10) {
+                        this.emit("colorAndDistance", port.id, data[4], distance);
+                    }
+                    break;
+                }
+                case Consts.DeviceType.WEDO2_TILT: {
+                    const tiltX = data[4] > 160 ? data[4] - 255 : data[4] - (data[4] * 2);
+                    const tiltY = data[5] > 160 ? 255 - data[5] : data[5] - (data[5] * 2);
+                    this._lastTiltX = tiltX;
+                    this._lastTiltY = tiltY;
+                    /**
+                     * Emits when a tilt sensor is activated.
+                     * @event LPF2Hub#tilt
+                     * @param {string} port If the event is fired from the Move Hub's in-built tilt sensor, the special port "TILT" is used.
+                     * @param {number} x
+                     * @param {number} y
+                     */
+                    this.emit("tilt", port.id, this._lastTiltX, this._lastTiltY);
+                    break;
+                }
+                case Consts.DeviceType.BOOST_TACHO_MOTOR: {
+                    const rotation = data.readInt32LE(4);
+                    /**
+                     * Emits when a rotation sensor is activated.
+                     * @event LPF2Hub#rotate
+                     * @param {string} port
+                     * @param {number} rotation
+                     */
+                    this.emit("rotate", port.id, rotation);
+                    break;
+                }
+                case Consts.DeviceType.BOOST_MOVE_HUB_MOTOR: {
+                    const rotation = data.readInt32LE(4);
+                    this.emit("rotate", port.id, rotation);
+                    break;
+                }
+                case Consts.DeviceType.BOOST_TILT: {
+                    const tiltX = data[4] > 160 ? data[4] - 255 : data[4];
+                    const tiltY = data[5] > 160 ? 255 - data[5] : data[5] - (data[5] * 2);
+                    this.emit("tilt", port.id, tiltX, tiltY);
+                    break;
+                }
+                case Consts.DeviceType.POWERED_UP_REMOTE_BUTTON: {
+                    switch (data[4]) {
+                        case 0x01: {
+                            this.emit("button", port.id, Consts.ButtonState.UP);
+                            break;
+                        }
+                        case 0xff: {
+                            this.emit("button", port.id, Consts.ButtonState.DOWN);
+                            break;
+                        }
+                        case 0x7f: {
+                            this.emit("button", port.id, Consts.ButtonState.STOP);
+                            break;
+                        }
+                        case 0x00: {
+                            this.emit("button", port.id, Consts.ButtonState.RELEASED);
+                            break;
+                        }
+                    }
+                    break;
+                }
+                case Consts.DeviceType.DUPLO_TRAIN_BASE_COLOR: {
+                    if (data[4] <= 10) {
+                        this.emit("color", port.id, data[4]);
+                    }
+                    break;
+                }
+                case Consts.DeviceType.DUPLO_TRAIN_BASE_SPEEDOMETER: {
+                    /**
+                     * Emits on a speed change.
+                     * @event LPF2Hub#speed
+                     * @param {string} port
+                     * @param {number} speed
+                     */
+                    const speed = data.readInt16LE(4);
+                    this.emit("speed", port.id, speed);
+                    break;
+                }
+            }
+        }
+    }
+}
+exports.LPF2Hub = LPF2Hub;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/poweredup.js.html b/docs/poweredup.js.html new file mode 100644 index 0000000..3f10fb9 --- /dev/null +++ b/docs/poweredup.js.html @@ -0,0 +1,195 @@ + + + + + JSDoc: Source: poweredup.js + + + + + + + + + + +
+ +

Source: poweredup.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const boostmovehub_1 = require("./boostmovehub");
+const duplotrainbase_1 = require("./duplotrainbase");
+const puphub_1 = require("./puphub");
+const pupremote_1 = require("./pupremote");
+const wedo2smarthub_1 = require("./wedo2smarthub");
+const utils_1 = require("./utils");
+const Consts = __importStar(require("./consts"));
+const events_1 = require("events");
+const Debug = require("debug");
+const debug = Debug("PoweredUP");
+const noble = require("noble-mac");
+let ready = false;
+let wantScan = false;
+let discoveryEventAttached = false;
+const startScanning = () => {
+    if (utils_1.isBrowserContext) {
+        noble.startScanning([Consts.BLEService.WEDO2_SMART_HUB, Consts.BLEService.LPF2_HUB]);
+    }
+    else {
+        noble.startScanning();
+    }
+};
+noble.on("stateChange", (state) => {
+    ready = (state === "poweredOn");
+    if (ready) {
+        if (wantScan) {
+            debug("Scanning started");
+            startScanning();
+        }
+    }
+    else {
+        noble.stopScanning();
+    }
+});
+/**
+ * @class PoweredUP
+ * @extends EventEmitter
+ */
+class PoweredUP extends events_1.EventEmitter {
+    constructor() {
+        super();
+        this.autoSubscribe = true;
+        this._connectedHubs = {};
+        this._discoveryEventHandler = this._discoveryEventHandler.bind(this);
+    }
+    /**
+     * Begin scanning for Powered UP Hub devices.
+     * @method PoweredUP#scan
+     */
+    scan() {
+        wantScan = true;
+        if (!discoveryEventAttached) {
+            noble.on("discover", this._discoveryEventHandler);
+            discoveryEventAttached = true;
+        }
+        if (ready) {
+            debug("Scanning started");
+            startScanning();
+        }
+    }
+    /**
+     * Stop scanning for Powered UP Hub devices.
+     * @method PoweredUP#stop
+     */
+    stop() {
+        wantScan = false;
+        if (discoveryEventAttached) {
+            noble.removeListener("discover", this._discoveryEventHandler);
+            discoveryEventAttached = false;
+        }
+        noble.stopScanning();
+    }
+    /**
+     * Retrieve a Powered UP Hub by UUID.
+     * @method PoweredUP#getConnectedHubByUUID
+     * @param {string} uuid
+     * @returns {Hub | null}
+     */
+    getConnectedHubByUUID(uuid) {
+        return this._connectedHubs[uuid];
+    }
+    /**
+     * Retrieve a list of Powered UP Hubs.
+     * @method PoweredUP#getConnectedHubs
+     * @returns {Hub[]}
+     */
+    getConnectedHubs() {
+        return Object.keys(this._connectedHubs).map((uuid) => this._connectedHubs[uuid]);
+    }
+    async _discoveryEventHandler(peripheral) {
+        let hub;
+        if (await wedo2smarthub_1.WeDo2SmartHub.IsWeDo2SmartHub(peripheral)) {
+            hub = new wedo2smarthub_1.WeDo2SmartHub(peripheral, this.autoSubscribe);
+        }
+        else if (await boostmovehub_1.BoostMoveHub.IsBoostMoveHub(peripheral)) {
+            hub = new boostmovehub_1.BoostMoveHub(peripheral, this.autoSubscribe);
+        }
+        else if (await puphub_1.PUPHub.IsPUPHub(peripheral)) {
+            hub = new puphub_1.PUPHub(peripheral, this.autoSubscribe);
+        }
+        else if (await pupremote_1.PUPRemote.IsPUPRemote(peripheral)) {
+            hub = new pupremote_1.PUPRemote(peripheral, this.autoSubscribe);
+        }
+        else if (await duplotrainbase_1.DuploTrainBase.IsDuploTrainBase(peripheral)) {
+            hub = new duplotrainbase_1.DuploTrainBase(peripheral, this.autoSubscribe);
+        }
+        else {
+            return;
+        }
+        peripheral.removeAllListeners();
+        noble.stopScanning();
+        if (!utils_1.isBrowserContext) {
+            startScanning();
+        }
+        hub.on("connect", () => {
+            debug(`Hub ${hub.uuid} connected`);
+            this._connectedHubs[hub.uuid] = hub;
+        });
+        hub.on("disconnect", () => {
+            debug(`Hub ${hub.uuid} disconnected`);
+            delete this._connectedHubs[hub.uuid];
+            if (wantScan) {
+                startScanning();
+            }
+        });
+        debug(`Hub ${hub.uuid} discovered`);
+        /**
+         * Emits when a Powered UP Hub device is found.
+         * @event PoweredUP#discover
+         * @param {WeDo2SmartHub | BoostMoveHub | PUPHub | PUPRemote | DuploTrainBase} hub
+         */
+        this.emit("discover", hub);
+    }
+}
+exports.PoweredUP = PoweredUP;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/puphub.js.html b/docs/puphub.js.html new file mode 100644 index 0000000..306a506 --- /dev/null +++ b/docs/puphub.js.html @@ -0,0 +1,228 @@ + + + + + JSDoc: Source: puphub.js + + + + + + + + + + +
+ +

Source: puphub.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const lpf2hub_1 = require("./lpf2hub");
+const port_1 = require("./port");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("puphub");
+/**
+ * The PUPHub is emitted if the discovered device is a Powered UP Hub.
+ * @class PUPHub
+ * @extends LPF2Hub
+ * @extends Hub
+ */
+class PUPHub extends lpf2hub_1.LPF2Hub {
+    // We set JSDoc to ignore these events as a Powered UP Remote will never emit them.
+    /**
+     * @event PUPHub#rotate
+     * @ignore
+     */
+    /**
+     * @event PUPHub#speed
+     * @ignore
+     */
+    static IsPUPHub(peripheral) {
+        return (peripheral.advertisement.serviceUuids.indexOf(Consts.BLEService.LPF2_HUB.replace(/-/g, "")) >= 0 && peripheral.advertisement.manufacturerData[3] === Consts.BLEManufacturerData.POWERED_UP_HUB_ID);
+    }
+    constructor(peripheral, autoSubscribe = true) {
+        super(peripheral, autoSubscribe);
+        this.type = Consts.HubType.POWERED_UP_HUB;
+        this._ports = {
+            "A": new port_1.Port("A", 0),
+            "B": new port_1.Port("B", 1),
+            "AB": new port_1.Port("AB", 57)
+        };
+        debug("Discovered Powered UP Hub");
+    }
+    connect() {
+        return new Promise(async (resolve, reject) => {
+            debug("Connecting to Powered UP Hub");
+            await super.connect();
+            debug("Connect completed");
+            return resolve();
+        });
+    }
+    /**
+     * Set the motor speed on a given port.
+     * @method PUPHub#setMotorSpeed
+     * @param {string} port
+     * @param {number | Array.<number>} speed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0. If you are specifying port AB to control both motors, you can optionally supply a tuple of speeds.
+     * @param {number} [time] How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the motor is finished.
+     */
+    setMotorSpeed(port, speed, time) {
+        const portObj = this._portLookup(port);
+        if (portObj.id !== "AB" && speed instanceof Array) {
+            throw new Error(`Port ${portObj.id} can only accept a single speed`);
+        }
+        if (portObj.id === "AB") {
+            const portObjA = this._portLookup("A");
+            const portObjB = this._portLookup("B");
+            if (portObjA.type !== portObjB.type) {
+                throw new Error(`Port ${portObj.id} requires both motors be of the same type`);
+            }
+        }
+        let cancelEventTimer = true;
+        if (typeof time === "boolean") {
+            if (time === true) {
+                cancelEventTimer = false;
+            }
+            time = undefined;
+        }
+        if (cancelEventTimer) {
+            portObj.cancelEventTimer();
+        }
+        return new Promise((resolve, reject) => {
+            if (time && typeof time === "number") {
+                let data = null;
+                if (portObj.id === "AB") {
+                    data = Buffer.from([0x81, portObj.value, 0x11, 0x02, this._mapSpeed(speed instanceof Array ? speed[0] : speed), this._mapSpeed(speed instanceof Array ? speed[1] : speed)]);
+                }
+                else {
+                    // @ts-ignore: The type of speed is properly checked at the start
+                    data = Buffer.from([0x81, portObj.value, 0x11, 0x60, 0x00, this._mapSpeed(speed), 0x00, 0x00]);
+                }
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                const timeout = global.setTimeout(() => {
+                    let data = null;
+                    if (portObj.id === "AB") {
+                        data = Buffer.from([0x81, portObj.value, 0x11, 0x02, 0x00, 0x00]);
+                    }
+                    else {
+                        data = Buffer.from([0x81, portObj.value, 0x11, 0x60, 0x00, 0x00, 0x00, 0x00]);
+                    }
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    return resolve();
+                }, time);
+                portObj.setEventTimer(timeout);
+            }
+            else {
+                let data = null;
+                if (portObj.id === "AB") {
+                    data = Buffer.from([0x81, portObj.value, 0x11, 0x02, this._mapSpeed(speed instanceof Array ? speed[0] : speed), this._mapSpeed(speed instanceof Array ? speed[1] : speed)]);
+                }
+                else {
+                    // @ts-ignore: The type of speed is properly checked at the start
+                    data = Buffer.from([0x81, portObj.value, 0x11, 0x60, 0x00, this._mapSpeed(speed), 0x00, 0x00]);
+                }
+                this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                return resolve();
+            }
+        });
+    }
+    /**
+     * Ramp the motor speed on a given port.
+     * @method PUPHub#rampMotorSpeed
+     * @param {string} port
+     * @param {number} fromSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} toSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} time How long the ramp should last (in milliseconds).
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    rampMotorSpeed(port, fromSpeed, toSpeed, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            this._calculateRamp(fromSpeed, toSpeed, time, portObj)
+                .on("changeSpeed", (speed) => {
+                this.setMotorSpeed(port, speed, true);
+            })
+                .on("finished", resolve);
+        });
+    }
+    /**
+     * Fully (hard) stop the motor on a given port.
+     * @method PUPHub#hardStopMotor
+     * @param {string} port
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    hardStopMotor(port) {
+        return this.setMotorSpeed(port, 127);
+    }
+    /**
+     * Set the light brightness on a given port.
+     * @method PUPHub#setLightBrightness
+     * @param {string} port
+     * @param {number} brightness Brightness value between 0-100 (0 is off)
+     * @param {number} [time] How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the light is turned off.
+     */
+    setLightBrightness(port, brightness, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, brightness]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            if (time) {
+                const timeout = global.setTimeout(() => {
+                    const data = Buffer.from([0x81, portObj.value, 0x11, 0x51, 0x00, 0x00]);
+                    this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+                    return resolve();
+                }, time);
+                portObj.setEventTimer(timeout);
+            }
+            else {
+                return resolve();
+            }
+        });
+    }
+}
+exports.PUPHub = PUPHub;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/pupremote.js.html b/docs/pupremote.js.html new file mode 100644 index 0000000..bf6d2e5 --- /dev/null +++ b/docs/pupremote.js.html @@ -0,0 +1,158 @@ + + + + + JSDoc: Source: pupremote.js + + + + + + + + + + +
+ +

Source: pupremote.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const lpf2hub_1 = require("./lpf2hub");
+const port_1 = require("./port");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("pupremote");
+/**
+ * The PUPRemote is emitted if the discovered device is a Powered UP Remote.
+ * @class PUPRemote
+ * @extends LPF2Hub
+ * @extends Hub
+ */
+class PUPRemote extends lpf2hub_1.LPF2Hub {
+    // We set JSDoc to ignore these events as a Powered UP Remote will never emit them.
+    /**
+     * @event PUPRemote#distance
+     * @ignore
+     */
+    /**
+     * @event PUPRemote#color
+     * @ignore
+     */
+    /**
+     * @event PUPRemote#tilt
+     * @ignore
+     */
+    /**
+     * @event PUPRemote#rotate
+     * @ignore
+     */
+    /**
+     * @event PUPRemote#speed
+     * @ignore
+     */
+    /**
+     * @event PUPRemote#attach
+     * @ignore
+     */
+    /**
+     * @event PUPRemote#detach
+     * @ignore
+     */
+    static IsPUPRemote(peripheral) {
+        return (peripheral.advertisement.serviceUuids.indexOf(Consts.BLEService.LPF2_HUB.replace(/-/g, "")) >= 0 && peripheral.advertisement.manufacturerData[3] === Consts.BLEManufacturerData.POWERED_UP_REMOTE_ID);
+    }
+    constructor(peripheral, autoSubscribe = true) {
+        super(peripheral, autoSubscribe);
+        this.type = Consts.HubType.POWERED_UP_REMOTE;
+        this._ports = {
+            "LEFT": new port_1.Port("LEFT", 0),
+            "RIGHT": new port_1.Port("RIGHT", 1)
+        };
+        debug("Discovered Powered UP Remote");
+    }
+    connect() {
+        return new Promise(async (resolve, reject) => {
+            debug("Connecting to Powered UP Remote");
+            await super.connect();
+            debug("Connect completed");
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the Remote via a color value.
+     * @method PUPRemote#setLEDColor
+     * @param {Color} color
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDColor(color) {
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x41, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            if (color === false) {
+                color = 0;
+            }
+            data = Buffer.from([0x81, 0x34, 0x11, 0x51, 0x00, color]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the Hub via RGB values.
+     * @method PUPRemote#setLEDRGB
+     * @param {number} red
+     * @param {number} green
+     * @param {number} blue
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDRGB(red, green, blue) {
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x41, 0x34, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            data = Buffer.from([0x81, 0x34, 0x11, 0x51, 0x01, red, green, blue]);
+            this._writeMessage(Consts.BLECharacteristic.LPF2_ALL, data);
+            return resolve();
+        });
+    }
+}
+exports.PUPRemote = PUPRemote;
+
+
+
+ + + + +
+ + + +
+ + + + + + + diff --git a/docs/scripts/linenumber.js b/docs/scripts/linenumber.js new file mode 100644 index 0000000..8d52f7e --- /dev/null +++ b/docs/scripts/linenumber.js @@ -0,0 +1,25 @@ +/*global document */ +(function() { + var source = document.getElementsByClassName('prettyprint source linenums'); + var i = 0; + var lineNumber = 0; + var lineId; + var lines; + var totalLines; + var anchorHash; + + if (source && source[0]) { + anchorHash = document.location.hash.substring(1); + lines = source[0].getElementsByTagName('li'); + totalLines = lines.length; + + for (; i < totalLines; i++) { + lineNumber++; + lineId = 'line' + lineNumber; + lines[i].id = lineId; + if (lineId === anchorHash) { + lines[i].className += ' selected'; + } + } + } +})(); diff --git a/docs/scripts/prettify/Apache-License-2.0.txt b/docs/scripts/prettify/Apache-License-2.0.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/docs/scripts/prettify/Apache-License-2.0.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/docs/scripts/prettify/lang-css.js b/docs/scripts/prettify/lang-css.js new file mode 100644 index 0000000..041e1f5 --- /dev/null +++ b/docs/scripts/prettify/lang-css.js @@ -0,0 +1,2 @@ +PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", +/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); diff --git a/docs/scripts/prettify/prettify.js b/docs/scripts/prettify/prettify.js new file mode 100644 index 0000000..eef5ad7 --- /dev/null +++ b/docs/scripts/prettify/prettify.js @@ -0,0 +1,28 @@ +var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; +(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= +[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), +l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, +q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, +q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, +"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), +a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} +for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], +"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], +H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], +J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ +I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), +["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", +/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), +["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", +hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b= +!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p th:last-child { border-right: 1px solid #ddd; } + +.ancestors, .attribs { color: #999; } +.ancestors a, .attribs a +{ + color: #999 !important; + text-decoration: none; +} + +.clear +{ + clear: both; +} + +.important +{ + font-weight: bold; + color: #950B02; +} + +.yes-def { + text-indent: -1000px; +} + +.type-signature { + color: #aaa; +} + +.name, .signature { + font-family: Consolas, Monaco, 'Andale Mono', monospace; +} + +.details { margin-top: 14px; border-left: 2px solid #DDD; } +.details dt { width: 120px; float: left; padding-left: 10px; padding-top: 6px; } +.details dd { margin-left: 70px; } +.details ul { margin: 0; } +.details ul { list-style-type: none; } +.details li { margin-left: 30px; padding-top: 6px; } +.details pre.prettyprint { margin: 0 } +.details .object-value { padding-top: 0; } + +.description { + margin-bottom: 1em; + margin-top: 1em; +} + +.code-caption +{ + font-style: italic; + font-size: 107%; + margin: 0; +} + +.prettyprint +{ + border: 1px solid #ddd; + width: 80%; + overflow: auto; +} + +.prettyprint.source { + width: inherit; +} + +.prettyprint code +{ + font-size: 100%; + line-height: 18px; + display: block; + padding: 4px 12px; + margin: 0; + background-color: #fff; + color: #4D4E53; +} + +.prettyprint code span.line +{ + display: inline-block; +} + +.prettyprint.linenums +{ + padding-left: 70px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.prettyprint.linenums ol +{ + padding-left: 0; +} + +.prettyprint.linenums li +{ + border-left: 3px #ddd solid; +} + +.prettyprint.linenums li.selected, +.prettyprint.linenums li.selected * +{ + background-color: lightyellow; +} + +.prettyprint.linenums li * +{ + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} + +.params .name, .props .name, .name code { + color: #4D4E53; + font-family: Consolas, Monaco, 'Andale Mono', monospace; + font-size: 100%; +} + +.params td.description > p:first-child, +.props td.description > p:first-child +{ + margin-top: 0; + padding-top: 0; +} + +.params td.description > p:last-child, +.props td.description > p:last-child +{ + margin-bottom: 0; + padding-bottom: 0; +} + +.disabled { + color: #454545; +} diff --git a/docs/styles/prettify-jsdoc.css b/docs/styles/prettify-jsdoc.css new file mode 100644 index 0000000..5a2526e --- /dev/null +++ b/docs/styles/prettify-jsdoc.css @@ -0,0 +1,111 @@ +/* JSDoc prettify.js theme */ + +/* plain text */ +.pln { + color: #000000; + font-weight: normal; + font-style: normal; +} + +/* string content */ +.str { + color: #006400; + font-weight: normal; + font-style: normal; +} + +/* a keyword */ +.kwd { + color: #000000; + font-weight: bold; + font-style: normal; +} + +/* a comment */ +.com { + font-weight: normal; + font-style: italic; +} + +/* a type name */ +.typ { + color: #000000; + font-weight: normal; + font-style: normal; +} + +/* a literal value */ +.lit { + color: #006400; + font-weight: normal; + font-style: normal; +} + +/* punctuation */ +.pun { + color: #000000; + font-weight: bold; + font-style: normal; +} + +/* lisp open bracket */ +.opn { + color: #000000; + font-weight: bold; + font-style: normal; +} + +/* lisp close bracket */ +.clo { + color: #000000; + font-weight: bold; + font-style: normal; +} + +/* a markup tag name */ +.tag { + color: #006400; + font-weight: normal; + font-style: normal; +} + +/* a markup attribute name */ +.atn { + color: #006400; + font-weight: normal; + font-style: normal; +} + +/* a markup attribute value */ +.atv { + color: #006400; + font-weight: normal; + font-style: normal; +} + +/* a declaration */ +.dec { + color: #000000; + font-weight: bold; + font-style: normal; +} + +/* a variable name */ +.var { + color: #000000; + font-weight: normal; + font-style: normal; +} + +/* a function name */ +.fun { + color: #000000; + font-weight: bold; + font-style: normal; +} + +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} diff --git a/docs/styles/prettify-tomorrow.css b/docs/styles/prettify-tomorrow.css new file mode 100644 index 0000000..b6f92a7 --- /dev/null +++ b/docs/styles/prettify-tomorrow.css @@ -0,0 +1,132 @@ +/* Tomorrow Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* Pretty printing styles. Used with prettify.js. */ +/* SPAN elements with the classes below are added by prettyprint. */ +/* plain text */ +.pln { + color: #4d4d4c; } + +@media screen { + /* string content */ + .str { + color: #718c00; } + + /* a keyword */ + .kwd { + color: #8959a8; } + + /* a comment */ + .com { + color: #8e908c; } + + /* a type name */ + .typ { + color: #4271ae; } + + /* a literal value */ + .lit { + color: #f5871f; } + + /* punctuation */ + .pun { + color: #4d4d4c; } + + /* lisp open bracket */ + .opn { + color: #4d4d4c; } + + /* lisp close bracket */ + .clo { + color: #4d4d4c; } + + /* a markup tag name */ + .tag { + color: #c82829; } + + /* a markup attribute name */ + .atn { + color: #f5871f; } + + /* a markup attribute value */ + .atv { + color: #3e999f; } + + /* a declaration */ + .dec { + color: #f5871f; } + + /* a variable name */ + .var { + color: #c82829; } + + /* a function name */ + .fun { + color: #4271ae; } } +/* Use higher contrast and text-weight for printable form. */ +@media print, projection { + .str { + color: #060; } + + .kwd { + color: #006; + font-weight: bold; } + + .com { + color: #600; + font-style: italic; } + + .typ { + color: #404; + font-weight: bold; } + + .lit { + color: #044; } + + .pun, .opn, .clo { + color: #440; } + + .tag { + color: #006; + font-weight: bold; } + + .atn { + color: #404; } + + .atv { + color: #060; } } +/* Style */ +/* +pre.prettyprint { + background: white; + font-family: Consolas, Monaco, 'Andale Mono', monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; } +*/ + +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; } + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ } + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ } diff --git a/docs/wedo2smarthub.js.html b/docs/wedo2smarthub.js.html new file mode 100644 index 0000000..b86d895 --- /dev/null +++ b/docs/wedo2smarthub.js.html @@ -0,0 +1,386 @@ + + + + + JSDoc: Source: wedo2smarthub.js + + + + + + + + + + +
+ +

Source: wedo2smarthub.js

+ + + + + + +
+
+
"use strict";
+var __importStar = (this && this.__importStar) || function (mod) {
+    if (mod && mod.__esModule) return mod;
+    var result = {};
+    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
+    result["default"] = mod;
+    return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const hub_1 = require("./hub");
+const port_1 = require("./port");
+const Consts = __importStar(require("./consts"));
+const Debug = require("debug");
+const debug = Debug("wedo2smarthub");
+/**
+ * The WeDo2SmartHub is emitted if the discovered device is a WeDo 2.0 Smart Hub.
+ * @class WeDo2SmartHub
+ * @extends Hub
+ */
+class WeDo2SmartHub extends hub_1.Hub {
+    constructor(peripheral, autoSubscribe = true) {
+        super(peripheral, autoSubscribe);
+        this._lastTiltX = 0;
+        this._lastTiltY = 0;
+        this.type = Consts.HubType.WEDO2_SMART_HUB;
+        this._ports = {
+            "A": new port_1.Port("A", 1),
+            "B": new port_1.Port("B", 2)
+        };
+        debug("Discovered WeDo 2.0 Smart Hub");
+    }
+    // We set JSDoc to ignore these events as a WeDo 2.0 Smart Hub will never emit them.
+    /**
+     * @event WeDo2SmartHub#speed
+     * @ignore
+     */
+    static IsWeDo2SmartHub(peripheral) {
+        return (peripheral.advertisement.serviceUuids.indexOf(Consts.BLEService.WEDO2_SMART_HUB.replace(/-/g, "")) >= 0);
+    }
+    connect() {
+        return new Promise(async (resolve, reject) => {
+            debug("Connecting to WeDo 2.0 Smart Hub");
+            await super.connect();
+            this._subscribeToCharacteristic(this._getCharacteristic(Consts.BLECharacteristic.WEDO2_PORT_TYPE), this._parsePortMessage.bind(this));
+            this._subscribeToCharacteristic(this._getCharacteristic(Consts.BLECharacteristic.WEDO2_SENSOR_VALUE), this._parseSensorMessage.bind(this));
+            this._subscribeToCharacteristic(this._getCharacteristic(Consts.BLECharacteristic.WEDO2_BUTTON), this._parseSensorMessage.bind(this));
+            this._subscribeToCharacteristic(this._getCharacteristic(Consts.BLECharacteristic.WEDO2_BATTERY), this._parseBatteryMessage.bind(this));
+            this._subscribeToCharacteristic(this._getCharacteristic(Consts.BLECharacteristic.WEDO2_HIGH_CURRENT_ALERT), this._parseHighCurrentAlert.bind(this));
+            this._getCharacteristic(Consts.BLECharacteristic.WEDO2_BATTERY).read((err, data) => {
+                this._parseBatteryMessage(data);
+            });
+            this._getCharacteristic(Consts.BLECharacteristic.WEDO2_FIRMWARE_REVISION).read((err, data) => {
+                this._parseFirmwareRevisionString(data);
+            });
+            debug("Connect completed");
+            return resolve();
+        });
+    }
+    /**
+     * Set the name of the Hub.
+     * @method WeDo2SmartHub#setName
+     * @param {string} name New name of the hub (14 characters or less, ASCII only).
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setName(name) {
+        if (name.length > 14) {
+            throw new Error("Name must be 14 characters or less");
+        }
+        return new Promise((resolve, reject) => {
+            const data = Buffer.from(name, "ascii");
+            // Send this twice, as sometimes the first time doesn't take
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_NAME_ID, data);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_NAME_ID, data);
+            this._name = name;
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the Hub via a color value.
+     * @method WeDo2SmartHub#setLEDColor
+     * @param {Color} color
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDColor(color) {
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x06, 0x17, 0x01, 0x01]);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_PORT_TYPE_WRITE, data);
+            if (color === false) {
+                color = 0;
+            }
+            data = Buffer.from([0x06, 0x04, 0x01, color]);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, data);
+            return resolve();
+        });
+    }
+    /**
+     * Set the color of the LED on the Hub via RGB values.
+     * @method WeDo2SmartHub#setLEDRGB
+     * @param {number} red
+     * @param {number} green
+     * @param {number} blue
+     * @returns {Promise} Resolved upon successful issuance of command.
+     */
+    setLEDRGB(red, green, blue) {
+        return new Promise((resolve, reject) => {
+            let data = Buffer.from([0x06, 0x17, 0x01, 0x02]);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_PORT_TYPE_WRITE, data);
+            data = Buffer.from([0x06, 0x04, 0x03, red, green, blue]);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, data);
+            return resolve();
+        });
+    }
+    /**
+     * Set the motor speed on a given port.
+     * @method WeDo2SmartHub#setMotorSpeed
+     * @param {string} port
+     * @param {number} speed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} [time] How long to activate the motor for (in milliseconds). Leave empty to turn the motor on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the motor is finished.
+     */
+    setMotorSpeed(port, speed, time) {
+        const portObj = this._portLookup(port);
+        let cancelEventTimer = true;
+        if (typeof time === "boolean") {
+            if (time === true) {
+                cancelEventTimer = false;
+            }
+            time = undefined;
+        }
+        if (cancelEventTimer) {
+            portObj.cancelEventTimer();
+        }
+        return new Promise((resolve, reject) => {
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, Buffer.from([portObj.value, 0x01, 0x02, this._mapSpeed(speed)]));
+            if (time && typeof time === "number") {
+                const timeout = global.setTimeout(() => {
+                    this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, Buffer.from([portObj.value, 0x01, 0x02, 0x00]));
+                    return resolve();
+                }, time);
+                portObj.setEventTimer(timeout);
+            }
+            else {
+                return resolve();
+            }
+        });
+    }
+    /**
+     * Ramp the motor speed on a given port.
+     * @method WeDo2SmartHub#rampMotorSpeed
+     * @param {string} port
+     * @param {number} fromSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} toSpeed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
+     * @param {number} time How long the ramp should last (in milliseconds).
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    rampMotorSpeed(port, fromSpeed, toSpeed, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            this._calculateRamp(fromSpeed, toSpeed, time, portObj)
+                .on("changeSpeed", (speed) => {
+                this.setMotorSpeed(port, speed, true);
+            })
+                .on("finished", resolve);
+        });
+    }
+    /**
+     * Fully (hard) stop the motor on a given port.
+     * @method WeDo2SmartHub#hardStopMotor
+     * @param {string} port
+     * @returns {Promise} Resolved upon successful completion of command.
+     */
+    hardStopMotor(port) {
+        return this.setMotorSpeed(port, 127);
+    }
+    /**
+     * Play a tone on the Hub's in-built buzzer
+     * @method WeDo2SmartHub#playTone
+     * @param {number} frequency
+     * @param {number} time How long the tone should play for (in milliseconds).
+     * @returns {Promise} Resolved upon successful completion of command (ie. once the tone has finished playing).
+     */
+    playTone(frequency, time) {
+        return new Promise((resolve, reject) => {
+            const data = Buffer.from([0x05, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00]);
+            data.writeUInt16LE(frequency, 3);
+            data.writeUInt16LE(time, 5);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, data);
+            global.setTimeout(resolve, time);
+        });
+    }
+    /**
+     * Set the light brightness on a given port.
+     * @method WeDo2SmartHub#setLightBrightness
+     * @param {string} port
+     * @param {number} brightness Brightness value between 0-100 (0 is off)
+     * @param {number} [time] How long to turn the light on (in milliseconds). Leave empty to turn the light on indefinitely.
+     * @returns {Promise} Resolved upon successful completion of command. If time is specified, this is once the light is turned off.
+     */
+    setLightBrightness(port, brightness, time) {
+        const portObj = this._portLookup(port);
+        portObj.cancelEventTimer();
+        return new Promise((resolve, reject) => {
+            const data = Buffer.from([portObj.value, 0x01, 0x02, brightness]);
+            this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, data);
+            if (time) {
+                const timeout = global.setTimeout(() => {
+                    const data = Buffer.from([portObj.value, 0x01, 0x02, 0x00]);
+                    this._writeMessage(Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE, data);
+                    return resolve();
+                }, time);
+                portObj.setEventTimer(timeout);
+            }
+            else {
+                return resolve();
+            }
+        });
+    }
+    sendRaw(message, characteristic = Consts.BLECharacteristic.WEDO2_MOTOR_VALUE_WRITE) {
+        return new Promise((resolve, reject) => {
+            this._writeMessage(characteristic, message, () => {
+                return resolve();
+            });
+        });
+    }
+    _activatePortDevice(port, type, mode, format, callback) {
+        this._writeMessage(Consts.BLECharacteristic.WEDO2_PORT_TYPE_WRITE, Buffer.from([0x01, 0x02, port, type, mode, 0x01, 0x00, 0x00, 0x00, format, 0x01]), callback);
+    }
+    _deactivatePortDevice(port, type, mode, format, callback) {
+        this._writeMessage(Consts.BLECharacteristic.WEDO2_PORT_TYPE_WRITE, Buffer.from([0x01, 0x02, port, type, mode, 0x01, 0x00, 0x00, 0x00, format, 0x00]), callback);
+    }
+    _writeMessage(uuid, message, callback) {
+        const characteristic = this._getCharacteristic(uuid);
+        if (characteristic) {
+            characteristic.write(message, false, callback);
+        }
+    }
+    _parseHighCurrentAlert(data) {
+        // console.log(data);
+    }
+    _parseBatteryMessage(data) {
+        this._batteryLevel = data[0];
+    }
+    _parseFirmwareRevisionString(data) {
+        const parts = data.toString().split(".");
+        this._firmwareInfo = { major: parseInt(parts[0], 10), minor: parseInt(parts[1], 10), bugFix: parseInt(parts[2], 10), build: parseInt(parts[3], 10) };
+    }
+    _parsePortMessage(data) {
+        const port = this._getPortForPortNumber(data[0]);
+        if (!port) {
+            return;
+        }
+        port.connected = data[1] === 1 ? true : false;
+        this._registerDeviceAttachment(port, data[3]);
+    }
+    _parseSensorMessage(data) {
+        if (data[0] === 0x01) {
+            /**
+             * Emits when a button is pressed.
+             * @event WeDo2SmartHub#button
+             * @param {string} button
+             * @param {ButtonState} state
+             */
+            this.emit("button", "GREEN", Consts.ButtonState.PRESSED);
+            return;
+        }
+        else if (data[0] === 0x00) {
+            this.emit("button", "GREEN", Consts.ButtonState.RELEASED);
+            return;
+        }
+        const port = this._getPortForPortNumber(data[1]);
+        if (!port) {
+            return;
+        }
+        if (port && port.connected) {
+            switch (port.type) {
+                case Consts.DeviceType.WEDO2_DISTANCE: {
+                    let distance = data[2];
+                    if (data[3] === 1) {
+                        distance = data[2] + 255;
+                    }
+                    /**
+                     * Emits when a distance sensor is activated.
+                     * @event WeDo2SmartHub#distance
+                     * @param {string} port
+                     * @param {number} distance Distance, in millimeters.
+                     */
+                    this.emit("distance", port.id, distance * 10);
+                    break;
+                }
+                case Consts.DeviceType.BOOST_DISTANCE: {
+                    const distance = data[2];
+                    /**
+                     * Emits when a color sensor is activated.
+                     * @event WeDo2SmartHub#color
+                     * @param {string} port
+                     * @param {Color} color
+                     */
+                    this.emit("color", port.id, distance);
+                    break;
+                }
+                case Consts.DeviceType.WEDO2_TILT: {
+                    this._lastTiltX = data[2];
+                    if (this._lastTiltX > 100) {
+                        this._lastTiltX = -(255 - this._lastTiltX);
+                    }
+                    this._lastTiltY = data[3];
+                    if (this._lastTiltY > 100) {
+                        this._lastTiltY = -(255 - this._lastTiltY);
+                    }
+                    /**
+                     * Emits when a tilt sensor is activated.
+                     * @event WeDo2SmartHub#tilt
+                     * @param {string} port
+                     * @param {number} x
+                     * @param {number} y
+                     */
+                    this.emit("tilt", port.id, this._lastTiltX, this._lastTiltY);
+                    break;
+                }
+                case Consts.DeviceType.BOOST_TACHO_MOTOR: {
+                    const rotation = data.readInt32LE(2);
+                    /**
+                     * Emits when a rotation sensor is activated.
+                     * @event WeDo2SmartHub#rotate
+                     * @param {string} port
+                     * @param {number} rotation
+                     */
+                    this.emit("rotate", port.id, rotation);
+                }
+            }
+        }
+    }
+}
+exports.WeDo2SmartHub = WeDo2SmartHub;
+
+
+
+ + + + +
+ + + +
+ +
+ Documentation generated by JSDoc 3.5.5 on Fri Jan 18 2019 16:10:38 GMT-0800 (Pacific Standard Time) +
+ + + + + diff --git a/package-lock.json b/package-lock.json index 22fc8ee..1662391 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "node-poweredup", - "version": "1.5.1", + "version": "1.6.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -114,7 +114,7 @@ "dependencies": { "chalk": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { @@ -780,7 +780,7 @@ }, "ms": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "resolved": "https://npm-registry.rancher.sie.sony.com/m/ms/_attachments/ms-2.1.1.tgz", "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" }, "nan": { @@ -1208,7 +1208,7 @@ }, "sprintf-js": { "version": "1.0.3", - "resolved": "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, @@ -1271,7 +1271,7 @@ }, "supports-color": { "version": "2.0.0", - "resolved": "http://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true }, diff --git a/package.json b/package.json index e2b9e9a..ab2072f 100644 --- a/package.json +++ b/package.json @@ -7,9 +7,8 @@ "types": "dist/index.d.ts", "scripts": { "build": "tslint -c tslint.json \"src/*.ts\" && tsc", - "docs": "jsdoc2md dist/consts.js dist/poweredup.js dist/lpf2hub.js dist/wedo2smarthub.js dist/boostmovehub.js dist/puphub.js dist/pupremote.js dist/duplotrainbase.js dist/hub.js dist/consts.js > DOCS.md", - "readme": "cat ABOUT.md DOCS.md > README.md", - "all": "npm run build && npm run docs && npm run readme", + "docs": "jsdoc README.md dist/consts.js dist/poweredup.js dist/lpf2hub.js dist/wedo2smarthub.js dist/boostmovehub.js dist/puphub.js dist/pupremote.js dist/duplotrainbase.js dist/hub.js dist/consts.js -d docs", + "all": "npm run build && npm run docs", "prepublishOnly": "npm run build" }, "author": "Nathan Kellenicki ", @@ -20,12 +19,13 @@ "noble-mac": "https://github.com/Timeular/noble-mac.git#af4418e" }, "devDependencies": { - "jsdoc-to-markdown": "^4.0.1", - "typescript": "^3.2.2", - "tslint": "^5.12.0", "@types/debug": "0.0.31", "@types/noble": "0.0.38", - "@types/node": "^10.12.18" + "@types/node": "^10.12.18", + "jsdoc": "^3.5.5", + "jsdoc-to-markdown": "^4.0.1", + "tslint": "^5.12.0", + "typescript": "^3.2.2" }, "resolutions": { "xpc-connection": "sandeepmistry/node-xpc-connection#pull/26/head" diff --git a/src/hub.ts b/src/hub.ts index 2b6a147..5f55236 100644 --- a/src/hub.ts +++ b/src/hub.ts @@ -19,7 +19,6 @@ export interface IFirmwareInfo { /** * @class Hub - * @ignore * @extends EventEmitter */ export class Hub extends EventEmitter { diff --git a/src/lpf2hub.ts b/src/lpf2hub.ts index b4a9849..10bf52e 100644 --- a/src/lpf2hub.ts +++ b/src/lpf2hub.ts @@ -11,7 +11,6 @@ const debug = Debug("lpf2hub"); /** * @class LPF2Hub - * @ignore * @extends Hub */ export class LPF2Hub extends Hub {