stopLeftAndRight method

Future<bool> stopLeftAndRight({
  1. int timeout = 5,
})

Implementation

Future<bool> stopLeftAndRight({int timeout = 5}) async {
  bool ret = await _command.writeCgi(
      "decoder_control.cgi?command=29&onestep=0&",
      timeout: timeout);
  return ret;
}