Add ability to restart broadcast

This commit is contained in:
John Nguyen 2023-05-21 15:43:08 +10:00
parent a5830dc440
commit acc3c286a1
10 changed files with 60 additions and 27 deletions

View file

@ -9,11 +9,12 @@ import (
)
const (
OP_MOVE = 0x01
OP_SCROLL = 0x02
OP_KEY_DOWN = 0x03
OP_KEY_UP = 0x04
OP_KEY_CLK = 0x05
OP_MOVE = 0x01
OP_SCROLL = 0x02
OP_KEY_DOWN = 0x03
OP_KEY_UP = 0x04
OP_KEY_CLK = 0x05
OP_RESTART_BROADCAST = 0x06
)
type PayloadHeader struct {