mcopy/app/lib/arduino
mmcwilliams aa5bbfc9fd Port shared modules to typescript. Migrate shared modules first, then look at individual needs of sub-projects. 2019-03-04 22:09:12 -05:00
..
Readme.md Feeble first attempt at documenting code 2019-02-23 12:25:47 -05:00
index.js Add additional cases to the arduino filter when looking for devices to connect with. 2019-03-01 18:01:16 -05:00
index.js.map Port shared modules to typescript. Migrate shared modules first, then look at individual needs of sub-projects. 2019-03-04 22:09:12 -05:00
package.json Install libs from intval_go_node project 2019-02-08 12:46:58 -05:00

Readme.md

Functions

delay(ms)Promise

Pause the process for X milliseconds in async/await functions

send(device, cmd)Promise

Send a command to an Arduino using async/await

write(device, str)Promise

Send a string to an Arduino using async/await

open(device)Promise

Connect to an Arduino using async/await

close(device)Promise

Close a connection to an Arduino using async/await

delay(ms) ⇒ Promise

Pause the process for X milliseconds in async/await functions

Kind: global function
Returns: Promise - Resolves after wait

Param Type Description
ms integer milliseconds

send(device, cmd) ⇒ Promise

Send a command to an Arduino using async/await

Kind: global function
Returns: Promise - Resolves after sending

Param Type Description
device string Arduino identifier
cmd string Single character command to send

write(device, str) ⇒ Promise

Send a string to an Arduino using async/await

Kind: global function
Returns: Promise - Resolves after sending

Param Type Description
device string Arduino identifier
str string String to send

open(device) ⇒ Promise

Connect to an Arduino using async/await

Kind: global function
Returns: Promise - Resolves after opening

Param Type Description
device string Arduino identifier

close(device) ⇒ Promise

Close a connection to an Arduino using async/await

Kind: global function
Returns: Promise - Resolves after closing

Param Type Description
device string Arduino identifier