This commit is contained in:
lordwelch 2017-11-06 23:00:02 -07:00
parent b651932922
commit 1b25ef40db

View File

@ -40,6 +40,8 @@ const (
func Press(press [8]byte, file io.Writer) {
binary.Write(file, binary.BigEndian, press[:])
binary.Write(file, binary.BigEndian, [8]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00})
fmt.Println(press)
fmt.Println([8]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00})
}
func Hold(press [8]byte, file io.Writer) {