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.
28 lines
415 B
Go
28 lines
415 B
Go
10 years ago
|
package rfm69
|
||
10 years ago
|
|
||
|
import (
|
||
|
"fmt"
|
||
10 years ago
|
"testing"
|
||
10 years ago
|
|
||
|
"github.com/kidoman/embd"
|
||
|
_ "github.com/kidoman/embd/host/all"
|
||
|
)
|
||
|
|
||
10 years ago
|
func TestRfm69(t *testing.T) {
|
||
10 years ago
|
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 := NewDevice(spiBus, 1, 10, true)
|
||
10 years ago
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
10 years ago
|
print(rfm)
|
||
10 years ago
|
}
|