You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
405 B
Go

10 years ago
package main
import (
"fmt"
"github.com/fulr/rfm69"
"github.com/kidoman/embd"
_ "github.com/kidoman/embd/host/all"
)
func main() {
fmt.Print("Test")
if err := embd.InitSPI(); err != nil {
panic(err)
}
defer embd.CloseSPI()
10 years ago
spiBus := embd.NewSPIBus(embd.SPIMode0, 0, 4000000, 8, 0)
10 years ago
defer spiBus.Close()
10 years ago
rfm, err := rfm69.NewDevice(spiBus, 1, 10, true)
if err != nil {
panic(err)
}
10 years ago
}