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