SwitchBot の各種ペリフェラルを検索するサンプルです。
import std/asyncdispatch
import std/enumutils
import std/options
import std/strformat
import std/strutils
import std/tables
import std/times
import nim_nucleus
type
DevType {.pure.} = enum
Bot = "H"
Meter = "T"
Humidifier = "e"
Curtain = "c"
Curtain3 = "{"
MotionSensor = "s"
ContactSecor = "d"
ColorBulb = "u"
LedStripLight = "r"
SmartLock = "o"
PlugMini = "g"
PlugMini2 = "j"
MeterPlus = "i"
SwitchBot = object
devType: DevType
bleAddr: string
AppObj = object
ble: BleNim
devices: Table[string, SwitchBot]
App = ref AppObj
const
CompanyId = 0x0969'u16
UuidSwitchbot = 0xfd3d'u16
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
proc newApp(): App =
new result
result.ble = newBleNim(initialize = true)
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
proc startStopScan(self: App, start: bool): Future[bool] {.async.} =
const scanFilterPolicy = ScanFilterPolicy.AcceptAllExceptNotDirected
result = await self.ble.startStopScan(active = true, enable = start,
filterPolicy = scanFilterPolicy)
let startStop = if start: "start" else: "stop"
echo &"startStopScan({startStop}) -> result: {result}"
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
proc handleDevice(self: App, device: BleDevice) =
if self.devices.hasKey(device.peerAddrStr):
# SwitchBot device SCAN_RSP
let uuid = device.advertiseData.getLe16(2)
if uuid != UuidSwitchbot:
self.devices.del(device.peerAddrStr)
return
try:
let devType = parseEnum[DevType]($device.advertiseData.getU8(4).chr)
self.devices[device.peerAddrStr].devType = devType
echo &"Address: {device.peerAddrStr}, device: {devType.symbolName} found."
except:
let errmsg = getCurrentExceptionMsg()
echo errmsg
return
else:
if device.manufacturerData.isNone:
return
let manData = device.manufacturerData.get()
if manData.len < 2:
return
let companyId = manData.getLe16(0)
if companyId == CompanyId:
self.devices[device.peerAddrStr] = SwitchBot(bleAddr: device.peerAddrStr)
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
proc waitAdvertising(self: App, timeout: int): Future[Table[string, SwitchBot]] {.async.} =
self.devices.clear()
let endTime = now().toTime.toUnixFloat() + timeout.float
echo "waitAdvertising..."
while true:
let timeout = int((endTime - now().toTime.toUnixFloat()) * 1000.0)
let dev_res = await self.ble.waitDevice(timeout = timeout)
if dev_res.isErr:
break
let dev = dev_res.get()
self.handleDevice(dev)
result = self.devices
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
proc main() {.async.} =
let app = newApp()
if not await app.startStopScan(start = true):
echo "! failed to start scannning."
return
let devices = await app.waitAdvertising(timeout = 15)
discard devices
discard await app.startStopScan(start = false)
when isMainModule:
waitFor main()
proc newApp(): App =
new result
result.ble = newBleNim(initialize = true)
proc startStopScan(self: App, start: bool): Future[bool] {.async.} =
const scanFilterPolicy = ScanFilterPolicy.AcceptAllExceptNotDirected
result = await self.ble.startStopScan(active = true, enable = start,
filterPolicy = scanFilterPolicy)
SwitchBot は Advertise で Company ID(0x0969)、SCAN_RSP で機器の種別を送ってくるので、Active Scan でスキャンします。
let devices = await app.waitAdvertising(timeout = 15)
proc waitAdvertising(self: App, timeout: int): Future[Table[string, SwitchBot]] {.async.} =
self.devices.clear()
let endTime = now().toTime.toUnixFloat() + timeout.float
echo "waitAdvertising..."
while true:
let timeout = int((endTime - now().toTime.toUnixFloat()) * 1000.0)
let dev_res = await self.ble.waitDevice(timeout = timeout)
if dev_res.isErr:
break
let dev = dev_res.get()
self.handleDevice(dev)
15 秒間までアドバタイジングを受信し、その内容をパースします。
root@gemini:~# /tmp/searchSwitchbot startStopScan(start) -> result: true waitAdvertising... Address: 3C:84:27:xx:xx:xx, device: PlugMini2 found. Address: C1:42:FE:xx:xx:xx, device: MotionSensor found. Address: E9:2B:DF:xx:xx:xx, device: ContactSecor found. startStopScan(stop) -> result: true