-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
bleclient_microbit_magnetometer.go
57 lines (43 loc) · 1.14 KB
/
bleclient_microbit_magnetometer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//go:build example
// +build example
//
// Do not build by default.
/*
How to setup
You must be using a BBC Microbit microcontroller that has
been flashed with the firmware from @sandeepmistry
More info:
https://gobot.io/documentation/platforms/microbit/#how-to-install
This example uses the Microbit's built-in magnetometer.
You run the Go program on your computer and communicate
wirelessly with the Microbit.
How to run
Pass the Bluetooth name or address as first param:
go run examples/microbit_magnetometer.go "BBC micro:bit [yowza]"
NOTE: sudo is required to use BLE in Linux
*/
package main
import (
"fmt"
"os"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/ble/microbit"
"gobot.io/x/gobot/v2/platforms/bleclient"
)
func main() {
bleAdaptor := bleclient.NewAdaptor(os.Args[1])
ubit := microbit.NewMagnetometerDriver(bleAdaptor)
work := func() {
_ = ubit.On(microbit.MagnetometerEvent, func(data interface{}) {
fmt.Println("Magnetometer", data)
})
}
robot := gobot.NewRobot("magnetoBot",
[]gobot.Connection{bleAdaptor},
[]gobot.Device{ubit},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}