sendBreakSignal method

Future<void> sendBreakSignal()

Implementation

Future<void> sendBreakSignal() async {
  _log.info("Sending break signal");
  await sendString("\x03", awaitResponse: false, log: false);
  // short delay to allow the break to complete on Frame before sending Lua commands
  await Future.delayed(const Duration(milliseconds: 200));
}