commonMain.com.divpundir.mavlink.definitions.ardupilotmega.GoproHeartbeatStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of definitions-jvm Show documentation
Show all versions of definitions-jvm Show documentation
A modern MAVLink library for the JVM written in Kotlin.
The newest version!
package com.divpundir.mavlink.definitions.ardupilotmega
import com.divpundir.mavlink.api.GeneratedMavEnum
import com.divpundir.mavlink.api.GeneratedMavEnumEntry
import com.divpundir.mavlink.api.MavEnum
import kotlin.UInt
@GeneratedMavEnum
public enum class GoproHeartbeatStatus(
override val `value`: UInt,
) : MavEnum {
/**
* No GoPro connected.
*/
@GeneratedMavEnumEntry
DISCONNECTED(0u),
/**
* The detected GoPro is not HeroBus compatible.
*/
@GeneratedMavEnumEntry
INCOMPATIBLE(1u),
/**
* A HeroBus compatible GoPro is connected.
*/
@GeneratedMavEnumEntry
CONNECTED(2u),
/**
* An unrecoverable error was encountered with the connected GoPro, it may require a power cycle.
*/
@GeneratedMavEnumEntry
ERROR(3u),
;
public companion object : MavEnum.MavCompanion {
override fun getEntryFromValueOrNull(v: UInt): GoproHeartbeatStatus? = when (v) {
0u -> DISCONNECTED
1u -> INCOMPATIBLE
2u -> CONNECTED
3u -> ERROR
else -> null
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy