2023-05-20 20:25:21 +08:00
|
|
|
//go:build example
|
2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
2023-05-20 20:25:21 +08:00
|
|
|
|
2017-03-13 23:01:39 +08:00
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2017-06-10 19:18:29 +08:00
|
|
|
/*
|
|
|
|
How to run
|
|
|
|
Pass the Bluetooth address or name as the first param:
|
|
|
|
|
|
|
|
go run examples/ble_battery.go BB-1234
|
|
|
|
|
|
|
|
NOTE: sudo is required to use BLE in Linux
|
|
|
|
*/
|
|
|
|
|
2015-06-08 10:31:00 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-07-03 16:51:20 +08:00
|
|
|
"os"
|
2016-09-01 19:32:40 +08:00
|
|
|
"time"
|
2016-07-10 01:52:48 +08:00
|
|
|
|
2023-05-20 20:25:21 +08:00
|
|
|
"gobot.io/x/gobot/v2"
|
2024-02-05 01:50:43 +08:00
|
|
|
"gobot.io/x/gobot/v2/drivers/ble"
|
|
|
|
"gobot.io/x/gobot/v2/platforms/bleclient"
|
2015-06-08 10:31:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2024-02-12 00:01:24 +08:00
|
|
|
bleAdaptor := bleclient.NewAdaptor(os.Args[1], bleclient.WithScanTimeout(30*time.Second))
|
2016-10-03 22:58:43 +08:00
|
|
|
battery := ble.NewBatteryDriver(bleAdaptor)
|
2015-06-08 10:31:00 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-07-03 16:51:20 +08:00
|
|
|
gobot.Every(5*time.Second, func() {
|
2024-02-11 01:02:09 +08:00
|
|
|
level, err := battery.GetBatteryLevel()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
fmt.Println("Battery level:", level)
|
2016-07-03 16:51:20 +08:00
|
|
|
})
|
2015-06-08 10:31:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("bleBot",
|
|
|
|
[]gobot.Connection{bleAdaptor},
|
|
|
|
[]gobot.Device{battery},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := robot.Start(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-06-08 10:31:00 +08:00
|
|
|
}
|