Convenience stream that emits only raw received bytes.
Stream<Uint8List> get dataStream => events .where((e) => e.type == SerialEventType.data) .map((e) => e.data as Uint8List);