stopOrbit method

Future<void> stopOrbit()

Stops any currently playing orbit animation on the Liquid Galaxy.

Implementation

Future<void> stopOrbit() async {
  if (!await sshConnection.isConnected()) {
    return;
  }

  await sshConnection.sendCommand('echo "exittour=true" > /tmp/query.txt');
}