mirror of
https://codeberg.org/portospaceteam/ground-dashboard.git
synced 2024-11-29 01:56:59 +00:00
27 lines
522 B
Go
27 lines
522 B
Go
package core
|
|
|
|
const (
|
|
ModePrelaunch = "P"
|
|
ModeAscentPowered = "AP"
|
|
ModeAscentUnpowered = "AU"
|
|
ModeDescentFreefall = "DF"
|
|
ModeDescentParachute = "DP"
|
|
ModeRecovery = "R"
|
|
)
|
|
|
|
const (
|
|
IndexTimestamp = 0
|
|
IndexPressure = 1
|
|
IndexTemperature = 2
|
|
IndexAccelerationX = 3
|
|
IndexAccelerationY = 4
|
|
IndexAccelerationZ = 5
|
|
IndexMagneticX = 6
|
|
IndexMagneticY = 7
|
|
IndexMagneticZ = 8
|
|
IndexCoordinateLat = 9
|
|
IndexCoordinateLon = 10
|
|
IndexGpsQuality = 11
|
|
IndexGpsSats = 12
|
|
)
|