From 869f4874564482af78e8d632e19ec672985db2bf Mon Sep 17 00:00:00 2001 From: Elara 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 +}