Add MotionValues type

This commit is contained in:
Elara 2021-10-22 13:42:33 -07:00
parent 86db246d4a
commit 869f487456
1 changed files with 6 additions and 0 deletions

View File

@ -46,3 +46,9 @@ type DFUProgress struct {
Received int64 `mapstructure:"recvd"`
Total int64 `mapstructure:"total"`
}
type MotionValues struct {
X int16
Y int16
Z int16
}