Definition of the Arduino 'Serial' interface. More...
Definition of the Arduino 'Serial' interface.
Definition in file serialport.hpp.
Go to the source code of this file.
Data Structures | |
class | SerialPort |
Arduino Serial Interface. More... | |
#define | SERIAL_RX_BUFSIZE (64) |
Default RX buffer size - same as the original Arduino... | |
enum | SerialFormat { BIN , OCT , DEC , HEX } |
Formatting options for Serial.print(int, format) More... | |
#define SERIAL_RX_BUFSIZE (64) |
Default RX buffer size - same as the original Arduino...
Definition at line 30 of file serialport.hpp.
enum SerialFormat |
Formatting options for Serial.print(int, format)
Enumerator | |
---|---|
BIN | format to binary representation |
OCT | format to octal representation |
DEC | format to decimal representation |
HEX | format to hex representation |
Definition at line 35 of file serialport.hpp.