From b87586ef155e37f956c3e734869c2820beed066d Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Fri, 22 Oct 2021 13:42:33 -0700 Subject: [PATCH] Add MotionValues type --- internal/types/types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/types/types.go b/internal/types/types.go index 3d1bc70..1ceec8b 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -46,3 +46,9 @@ type DFUProgress struct { Received int64 `mapstructure:"recvd"` Total int64 `mapstructure:"total"` } + +type MotionValues struct { + X int16 + Y int16 + Z int16 +}