accept method
Implementation
void accept(Uint8List bytes) {
// Parse bytes received on the serial port
for (int b in bytes) {
acceptByte(b);
}
}
void accept(Uint8List bytes) {
// Parse bytes received on the serial port
for (int b in bytes) {
acceptByte(b);
}
}