From 8f21c3968e316e358db00a198434d5ba244a0d40 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 30 May 2026 09:08:44 -0500 Subject: [PATCH] add todcontrol packet from ACT software --- todcontrol_test.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/todcontrol_test.go b/todcontrol_test.go index b95b633..4200a61 100644 --- a/todcontrol_test.go +++ b/todcontrol_test.go @@ -12,7 +12,13 @@ func TestGoodArtTodControlUnmarshal(t *testing.T) { Name string Data []byte Expected *artnet.ArtTodControl - }{} + }{ + { + Name: "ACT Packet 1", + Data: []byte{0x41, 0x72, 0x74, 0x2d, 0x4e, 0x65, 0x74, 0x00, 0x00, 0x82, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00}, + Expected: &artnet.ArtTodControl{}, + }, + } for _, test := range tests { t.Run(test.Name, func(t *testing.T) {