package serial
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- class AccessDeniedException extends Exception
Permissions are not sufficient to open a serial port.
- class InvalidSettingsException extends Exception
The settings specified are invalid.
- class NoSuchPortException extends Exception
The requested port could not be found.
- class PortClosedException extends Exception
The specified port has been closed.
- class PortInUseException extends Exception
The requested port is in use by someone else.
- class PortInterruptedException extends Exception
A blocking operation on a port was interrupted, most likely indicating that the port is closing.
- class SerialExt extends Extension
Provides the serial IO manager.
- case class SerialSettings(baud: Int, characterSize: Int = 8, twoStopBits: Boolean = false, parity: Parity.Parity = Parity.None) extends Product with Serializable
Groups settings used in communication over a serial port.
Groups settings used in communication over a serial port.
- baud
baud rate to use with serial port
- characterSize
size of a character of the data sent through the serial port
- twoStopBits
set to use two stop bits instead of one
- parity
type of parity to use with serial port