moveUp method
A helper method to perform a single step
of a relativeMove on the
positive y axis (up)
Implementation
Future<void> moveUp(String profileToken, [int step = 25]) async {
await move(profileToken, PanTilt.fromInt(y: step, x: 0));
}
A helper method to perform a single step
of a relativeMove on the
positive y axis (up)
Future<void> moveUp(String profileToken, [int step = 25]) async {
await move(profileToken, PanTilt.fromInt(y: step, x: 0));
}