Documentation for driver/Vehicle.kt

interface Vehicle : Platform

The interface of drivers for vehicles

This interface defines the common functionality shared by all vehicles.

since

1.0.0

author

IFS Institute for Software

fun moveTo(position: GPSPosition) : Command<*>

Instruct the vehicle to move to the given GPS position

Since

1.0.0

fun returnToHome() : Command<*>

Instruct the vehicle to return to its launch position

Since

1.0.0

fun limitTravelSpeed(speed: Double) : Command<*>

Set the maximum travel speed for the vehicle

Since

1.1.0