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