2024-05-24 03:36:51 +00:00
## Classes
< dl >
< dt > < a href = "#Arduino" > Arduino< / a > < / dt >
< dd > < p > Class representing the arduino communication features< / p >
< / dd >
< / dl >
## Constants
< dl >
< dt > < a href = "#delay_1" > delay_1< / a > < / dt >
< dd > < p > 2023-07-16 Clarification< / p >
< p > Previous versions of this script intermingled and even
swapped the usage of the terms ' serial' and ' device' .
From here on out, the terms will be used as such:< / p >
< p > serial - a hardware address of a serial port
device - common name of a type of mcopy device (eg. camera,
projector, light) that is aliased to a serial port< / p >
< / dd >
< / dl >
2019-03-30 21:56:31 +00:00
< a name = "Arduino" > < / a >
2019-02-22 21:31:53 +00:00
2019-03-30 21:56:31 +00:00
## Arduino
Class representing the arduino communication features
**Kind**: global class
* [Arduino ](#Arduino )
* [.enumerate() ](#Arduino+enumerate ) ⇒ < code > Promise</ code >
* [.sendAsync(device, cmd) ](#Arduino+sendAsync ) ⇒ < code > Promise</ code >
2024-05-24 03:36:51 +00:00
* [.send(device, cmd) ](#Arduino+send ) ⇒ < code > Promise.< (boolean\|string)> </ code >
* [.sendString(device, str) ](#Arduino+sendString ) ⇒ < code > Promise.< (boolean\|string)> </ code >
* [.stateAsync() ](#Arduino+stateAsync )
* [.state() ](#Arduino+state )
2019-03-30 21:56:31 +00:00
* [.writeAsync(device, str) ](#Arduino+writeAsync ) ⇒ < code > Promise</ code >
2024-05-24 03:36:51 +00:00
* [.end(serial, data) ](#Arduino+end ) ⇒ < code > any</ code >
* [.aliasSerial(device, serial) ](#Arduino+aliasSerial )
* [.connect(device, serial, confirm) ](#Arduino+connect ) ⇒ < code > Promise.< string> </ code >
* [.confirmEnd(data) ](#Arduino+confirmEnd )
* [.verify() ](#Arduino+verify ) ⇒ < code > Promise.< boolean> </ code >
* [.distinguish() ](#Arduino+distinguish ) ⇒ < code > Promise.< string> </ code >
* [.close() ](#Arduino+close ) ⇒ < code > Promise.< boolean> </ code >
* [.fakeConnect(serial) ](#Arduino+fakeConnect ) ⇒ < code > Promise.< boolean> </ code >
2019-03-30 21:56:31 +00:00
* [.openArduino(device) ](#Arduino+openArduino ) ⇒ < code > Promise</ code >
* [.closeArduino(device) ](#Arduino+closeArduino ) ⇒ < code > Promise</ code >
< a name = "Arduino+enumerate" > < / a >
### arduino.enumerate() ⇒ <code>Promise</code>
Enumerate all connected devices that might be Arduinos
2019-02-22 21:31:53 +00:00
2019-03-30 21:56:31 +00:00
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise< / code > - Resolves after enumerating
< a name = "Arduino+sendAsync" > < / a >
2019-02-22 21:31:53 +00:00
2019-03-30 21:56:31 +00:00
### arduino.sendAsync(device, cmd) ⇒ <code>Promise</code>
2019-02-22 21:31:53 +00:00
Send a command to an Arduino using async/await
2019-03-30 21:56:31 +00:00
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
2019-02-22 21:31:53 +00:00
**Returns**: < code > Promise< / code > - Resolves after sending
| Param | Type | Description |
| --- | --- | --- |
2024-05-24 03:36:51 +00:00
| device | < code > string< / code > | The Arduino device identifier |
2019-02-22 21:31:53 +00:00
| cmd | < code > string< / code > | Single character command to send |
2024-05-24 03:36:51 +00:00
< a name = "Arduino+send" > < / a >
### arduino.send(device, cmd) ⇒ <code>Promise.<(boolean\|string)></code>
Sends a command to the specified Arduino and waits for a response.
Handles the communication lock to prevent sending multiple commands simultaneously.
Emits an 'arduino_send' event after successfully sending the command.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< (boolean\|string)> </ code > - Returns 'false' if the communication is locked, otherwise returns the response from the device.
**Throws**:
- < code > Error</ code > Throws an error if the sendAsync method encounters an error.
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | The Arduino device identifier. |
| cmd | < code > string< / code > | The command to be sent to the Arduino. |
< a name = "Arduino+sendString" > < / a >
### arduino.sendString(device, str) ⇒ <code>Promise.<(boolean\|string)></code>
Sends a string to the specified Arduino.
Handles different types of devices, including fake devices for testing purposes.
Waits for a specified delay before sending the string.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< (boolean\|string)> </ code > - Returns 'true' if the string is sent successfully, otherwise returns an error message.
**Throws**:
- < code > Error</ code > Throws an error if the writeAsync method encounters an error.
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | The Arduino device identifier. |
| str | < code > string< / code > | The string to be sent to the Arduino. |
< a name = "Arduino+stateAsync" > < / a >
### arduino.stateAsync()
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
< a name = "Arduino+state" > < / a >
### arduino.state()
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
2019-03-30 21:56:31 +00:00
< a name = "Arduino+writeAsync" > < / a >
2019-02-22 21:31:53 +00:00
2019-03-30 21:56:31 +00:00
### arduino.writeAsync(device, str) ⇒ <code>Promise</code>
2019-02-22 21:31:53 +00:00
Send a string to an Arduino using async/await
2019-03-30 21:56:31 +00:00
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
2019-02-22 21:31:53 +00:00
**Returns**: < code > Promise< / code > - Resolves after sending
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | Arduino identifier |
| str | < code > string< / code > | String to send |
2024-05-24 03:36:51 +00:00
< a name = "Arduino+end" > < / a >
### arduino.end(serial, data) ⇒ <code>any</code>
Handles the end of communication with the Arduino.
Calculates the time taken for the communication, executes the callback,
and emits an 'arduino_end' event. Handles errors and stray data received.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > any< / code > - The time taken for the communication in milliseconds.
| Param | Type | Description |
| --- | --- | --- |
| serial | < code > string< / code > | The serial address of the Arduino device. |
| data | < code > string< / code > | The data received from the Arduino. |
< a name = "Arduino+aliasSerial" > < / a >
### arduino.aliasSerial(device, serial)
Associates an alias with an Arduinos serial address.
Used to map multi-purpose devices onto the same serial connection.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | The serial number of the target Arduino. |
| serial | < code > string< / code > | The alias to be associated with the target device. |
< a name = "Arduino+connect" > < / a >
### arduino.connect(device, serial, confirm) ⇒ <code>Promise.<string></code>
Connects to an Arduino using its serial number.
Sets up the SerialPort instance and path for the device, and handles data communication.
Handles opening the connection and emitting 'arduino_end' or 'confirmEnd' events upon receiving data.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< string> < / code > - Resolves with the device path if the connection is successful.
**Throws**:
- < code > Error</ code > Rejects with an error message if the connection fails.
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | The device identifier (common name). |
| serial | < code > string< / code > | The serial address of the target Arduino (e.g., COM port on Windows). |
| confirm | < code > function< / code > | A callback function to be executed upon receiving confirmation data. |
< a name = "Arduino+confirmEnd" > < / a >
### arduino.confirmEnd(data)
Handles the confirmation data received from an Arduino.
Executes the confirmation callback function if the received data is present in the list of expected values.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
| Param | Type | Description |
| --- | --- | --- |
| data | < code > string< / code > | The data received from the Arduino. |
< a name = "Arduino+verify" > < / a >
### arduino.verify() ⇒ <code>Promise.<boolean></code>
Verifies the connection to an Arduino by sending a connect command.
The confirmation callback checks if the received data matches the expected connect command.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< boolean> < / code > - Resolves with 'true' if the connection is verified successfully.
**Throws**:
- < code > Error</ code > Rejects with an error message if the connection verification fails.
< a name = "Arduino+distinguish" > < / a >
### arduino.distinguish() ⇒ <code>Promise.<string></code>
Distinguishes the type of Arduino connected.
Sends a command to the device to identify its type and resolves the promise with the received type.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< string> < / code > - Resolves with the type of the connected Arduino-based device.
**Throws**:
- < code > Error</ code > Rejects with an error message if the distinguish operation fails.
< a name = "Arduino+close" > < / a >
### arduino.close() ⇒ <code>Promise.<boolean></code>
Closes the connection to an Arduino.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< boolean> < / code > - Resolves with 'true' if the connection is closed successfully.
**Throws**:
- < code > Error</ code > Throws an error if the closeArduino method encounters an error.
< a name = "Arduino+fakeConnect" > < / a >
### arduino.fakeConnect(serial) ⇒ <code>Promise.<boolean></code>
Establishes a fake connection to an Arduino for testing purposes.
Creates a fake SerialPort instance with custom write and string methods.
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
**Returns**: < code > Promise.< boolean> < / code > - Resolves with 'true' if the fake connection is established successfully.
| Param | Type | Description |
| --- | --- | --- |
| serial | < code > string< / code > | The device identifier of the fake Arduino. |
2019-03-30 21:56:31 +00:00
< a name = "Arduino+openArduino" > < / a >
2019-02-22 21:31:53 +00:00
2019-03-30 21:56:31 +00:00
### arduino.openArduino(device) ⇒ <code>Promise</code>
2019-02-22 21:31:53 +00:00
Connect to an Arduino using async/await
2019-03-30 21:56:31 +00:00
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
2019-02-22 21:31:53 +00:00
**Returns**: < code > Promise< / code > - Resolves after opening
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | Arduino identifier |
2019-03-30 21:56:31 +00:00
< a name = "Arduino+closeArduino" > < / a >
2019-02-22 21:31:53 +00:00
2019-03-30 21:56:31 +00:00
### arduino.closeArduino(device) ⇒ <code>Promise</code>
2019-02-22 21:31:53 +00:00
Close a connection to an Arduino using async/await
2019-03-30 21:56:31 +00:00
**Kind**: instance method of [<code>Arduino</code> ](#Arduino )
2019-02-22 21:31:53 +00:00
**Returns**: < code > Promise< / code > - Resolves after closing
| Param | Type | Description |
| --- | --- | --- |
| device | < code > string< / code > | Arduino identifier |
2024-05-24 03:36:51 +00:00
< a name = "delay_1" > < / a >
## delay\_1
2023-07-16 Clarification
Previous versions of this script intermingled and even
swapped the usage of the terms 'serial' and 'device'.
From here on out, the terms will be used as such:
serial - a hardware address of a serial port
device - common name of a type of mcopy device (eg. camera,
projector, light) that is aliased to a serial port
**Kind**: global constant