test program

This commit is contained in:
lordwelch 2017-10-26 17:50:36 -06:00
parent 54f151074c
commit 56476d2fe6

10
main.go
View File

@ -1,6 +1,7 @@
package main package main
import ( import (
"encoding/binary"
"fmt" "fmt"
"os" "os"
) )
@ -32,7 +33,12 @@ func main() {
fmt.Printf("%08b\n", test[0]) fmt.Printf("%08b\n", test[0])
test[0] |= LCTRL test[0] |= LCTRL
fmt.Printf("%08b\n", test[0]) fmt.Printf("%08b\n", test[0])
file, _ := os.Open("/dev/hidg0") file, err := os.Open("/dev/hidg0", os.O_WRONLY, os.ModePerm)
file.Write(test[:]) file2, err2 := os.Open("test", os.O_WRONLY|os.O_CREATE, os.ModePerm)
fmt.Println(err)
fmt.Println(err2)
binary.Write(file, binary.BigEndian, test[:])
binary.Write(file2, binary.BigEndian, test[:])
file.Close() file.Close()
file2.Close()
} }