add poll reply

This commit is contained in:
Joel Wetzell
2026-05-30 07:21:24 -05:00
parent 56614027df
commit 16f045e8fe
3 changed files with 197 additions and 0 deletions
+10
View File
@@ -65,6 +65,16 @@ func Decode(bytes []byte) (ArtNetPacket, error) {
}
return &artPoll, nil
case OpPollReply:
artPollReply := ArtPollReply{}
err := artPollReply.UnmarshalBinary(bytes)
if err != nil {
return nil, err
}
return &artPollReply, nil
case OpIpProg:
artIpProg := ArtIpProg{}