kopia lustrzana https://github.com/cyoung/stratux
13 wiersze
272 B
Go
13 wiersze
272 B
Go
![]() |
package mpu
|
||
|
|
||
|
type MPU interface {
|
||
|
Close()
|
||
|
ResetHeading(float64, float64)
|
||
|
Pitch() (float64, error)
|
||
|
Roll() (float64, error)
|
||
|
Heading() (float64, error)
|
||
|
MagHeading() (float64, error)
|
||
|
SlipSkid() (float64, error)
|
||
|
RateOfTurn() (float64, error)
|
||
|
GLoad() (float64, error)
|
||
|
}
|