node-poweredup/DOCS.md
2018-08-01 11:10:09 +01:00

16 KiB

Classes

LPF2EventEmitter
WeDo2HubHub
BoostMoveHubLPF2Hub
PUPHubLPF2Hub
PUPRemoteLPF2Hub

LPF2 ⇐ EventEmitter

Kind: global class
Extends: EventEmitter

lpF2.scan()

Begin scanning for LPF2 Hub devices.

Kind: instance method of LPF2

lpF2.stop()

Stop scanning for LPF2 Hub devices.

Kind: instance method of LPF2

lpF2.getConnectedHubByUUID(uuid) ⇒ Hub | null

Retrieve a LPF2 Hub by UUID.

Kind: instance method of LPF2

Param Type
uuid string

lpF2.getConnectedHubs() ⇒ Array.<Hub>

Retrieve a list of LPF2 Hubs.

Kind: instance method of LPF2

"discover" (hub)

Emits when a LPF2 Hub device is found.

Kind: event emitted by LPF2

Param Type
hub WeDo2Hub | LPF2Hub

WeDo2Hub ⇐ Hub

Kind: global class
Extends: Hub

new WeDo2Hub()

The WeDo2Hub is emitted if the discovered device is a WeDo 2.0 Smart Hub.

weDo2Hub.name

Kind: instance property of WeDo2Hub
Read only: true
Properties

Name Type Description
name string Name of the hub

weDo2Hub.uuid

Kind: instance property of WeDo2Hub
Read only: true
Properties

Name Type Description
uuid string UUID of the hub

weDo2Hub.rssi

Kind: instance property of WeDo2Hub
Read only: true
Properties

Name Type Description
rssi number Signal strength of the hub

weDo2Hub.batteryLevel

Kind: instance property of WeDo2Hub
Read only: true
Properties

Name Type Description
batteryLevel number Battery level of the hub (Percentage between 0-100)

weDo2Hub.setLEDColor(color) ⇒ Promise

Set the color of the LED on the Hub via a color value.

Kind: instance method of WeDo2Hub
Returns: Promise - Resolved upon successful issuance of command.

Param Type Description
color number A number representing one of the LED color consts.

weDo2Hub.setLEDRGB(red, green, blue) ⇒ Promise

Set the color of the LED on the Hub via RGB values.

Kind: instance method of WeDo2Hub
Returns: Promise - Resolved upon successful issuance of command.

Param Type
red number
green number
blue number

weDo2Hub.setMotorSpeed(port, speed, [time]) ⇒ Promise

Set the motor speed on a given port.

Kind: instance method of WeDo2Hub
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.

weDo2Hub.playSound(frequency, time) ⇒ Promise

Play a sound on the Hub's in-built buzzer

Kind: instance method of WeDo2Hub
Returns: Promise - Resolved upon successful completion of command (ie. once the sound has finished playing).

Param Type Description
frequency number
time number How long the sound should play for (in milliseconds).

weDo2Hub.connect() ⇒ Promise

Connect to the Hub.

Kind: instance method of WeDo2Hub
Overrides: connect
Returns: Promise - Resolved upon successful connect.

weDo2Hub.disconnect() ⇒ Promise

Disconnect the Hub.

Kind: instance method of WeDo2Hub
Returns: Promise - Resolved upon successful disconnect.

weDo2Hub.subscribe(port, [mode]) ⇒ Promise

Subscribe to sensor notifications on a given port.

Kind: instance method of WeDo2Hub
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.

weDo2Hub.unsubscribe(port) ⇒ Promise

Unsubscribe to sensor notifications on a given port.

Kind: instance method of WeDo2Hub
Returns: Promise - Resolved upon successful issuance of command.

Param Type
port string

weDo2Hub.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 WeDo2Hub
Returns: Promise - Resolved after the delay is finished.

Param Type Description
delay number How long to sleep (in milliseconds).

weDo2Hub.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 WeDo2Hub
Returns: Promise - Resolved after the commands are finished.

Param Type Description
commands Array.<Promise.<any>> Array of executing commands.

"button" (button, state)

Emits when a button is pressed.

Kind: event emitted by WeDo2Hub

Param Type Description
button string
state number A number representing one of the button state consts.

"distance" (port, distance)

Emits when a distance sensor is activated.

Kind: event emitted by WeDo2Hub

Param Type Description
port string
distance number Distance, in millimeters.

"color" (port, color)

Emits when a color sensor is activated.

Kind: event emitted by WeDo2Hub

Param Type Description
port string
color number A number representing one of the LED color consts.

"tilt" (port, x, y)

Emits when a tilt sensor is activated.

Kind: event emitted by WeDo2Hub

Param Type
port string
x number
y number

"rotate" (port, rotation)

Emits when a rotation sensor is activated.

Kind: event emitted by WeDo2Hub

Param Type
port string
rotation number

"attach" (port, type)

Emits when a motor or sensor is attached to the Hub.

Kind: event emitted by WeDo2Hub

Param Type Description
port string
type number A number representing one of the peripheral consts.

"detach" (port)

Emits when an attached motor or sensor is detached from the Hub.

Kind: event emitted by WeDo2Hub

Param Type
port string

BoostMoveHub ⇐ LPF2Hub

Kind: global class
Extends: LPF2Hub

new BoostMoveHub()

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

boostMoveHub.setLEDColor(color) ⇒ Promise

Set the color of the LED on the Hub via a color value.

Kind: instance method of BoostMoveHub
Returns: Promise - Resolved upon successful issuance of command.

Param Type Description
color number A number representing one of the LED color consts.

boostMoveHub.setMotorSpeed(port, speed, [time]) ⇒ Promise

Set the motor speed on a given port.

Kind: instance method of 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 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.

boostMoveHub.setMotorAngle(port, angle, [speed]) ⇒ Promise

Rotate a motor by a given angle.

Kind: instance method of 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 100 How fast the motor should be rotated.

PUPHub ⇐ LPF2Hub

Kind: global class
Extends: LPF2Hub

new PUPHub()

The PUPHub is emitted if the discovered device is a Powered Up Hub.

pupHub.setLEDColor(color) ⇒ Promise

Set the color of the LED on the Hub via a color value.

Kind: instance method of PUPHub
Returns: Promise - Resolved upon successful issuance of command.

Param Type Description
color number A number representing one of the LED color consts.

pupHub.setMotorSpeed(port, speed, [time]) ⇒ Promise

Set the motor speed on a given port.

Kind: instance method of 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 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.

PUPRemote ⇐ LPF2Hub

Kind: global class
Extends: LPF2Hub

new PUPRemote()

The PUPRemote is emitted if the discovered device is a Powered Up Remote.

pupRemote.setLEDColor(color) ⇒ Promise

Set the color of the LED on the Remote via a color value.

Kind: instance method of PUPRemote
Returns: Promise - Resolved upon successful issuance of command.

Param Type Description
color number A number representing one of the LED color consts.