public Task MoveAsync(Polar polar, float speed) => SetCommandTransact( string.Format(Protocol.MovePolarFormat, polar.Stretch, polar.Rotation, polar.Height, speed) );
public Task <bool> CanReachAsync(Polar polar) => BoolTransact(string.Format(Protocol.CanReachPolarFormat, polar.Stretch, polar.Rotation, polar.Height));