2022-07-18 10:52:56 -03:00
|
|
|
# AP_FLAKE8_CLEAN
|
|
|
|
|
|
|
|
|
2022-07-18 11:09:04 -03:00
|
|
|
class VehicleType:
|
2015-10-14 21:05:45 -03:00
|
|
|
Plane = 17
|
|
|
|
Copter = 23
|
|
|
|
Rover = 37
|
|
|
|
|
2022-07-18 11:09:04 -03:00
|
|
|
|
2015-10-14 21:05:45 -03:00
|
|
|
# these should really be "Plane", "Copter" and "Rover", but many
|
|
|
|
# things use these values as triggers in their code:
|
2022-07-18 11:09:04 -03:00
|
|
|
VehicleTypeString = {17: "ArduPlane", 23: "ArduCopter", 37: "ArduRover"}
|