sendBreakSignal method
Implementation
Future<void> sendBreakSignal() async {
_log.info("Sending break signal");
await sendString("\x03", awaitResponse: false, log: false);
await Future.delayed(const Duration(milliseconds: 100));
}
Future<void> sendBreakSignal() async {
_log.info("Sending break signal");
await sendString("\x03", awaitResponse: false, log: false);
await Future.delayed(const Duration(milliseconds: 100));
}