BLE 适配器
#
介绍BLE 代表低功耗蓝牙。 BLE 是一种设计用于短距离通信的无线通信形式。
BLE 适配器实现了蓝牙协议的支持,并用于定义所连接的 BLE 设备的属性与配置。
说明: 使用 BLE 适配器前,请检查您的主机是否具有蓝牙传输功能。如果您的主机不支持蓝牙传输,则会导致工作负载和 Pods 启动失败。
#
注册信息版本 | 注册名称 | 端点 Socket | 是否可用 |
---|---|---|---|
v1alpha1 | adaptors.edge.cattle.io/ble | ble.sock | * |
#
支持模型类型 | 设备组 | 版本 | 是否可用 |
---|---|---|---|
BluetoothDevice | devices.edge.cattle.io | v1alpha1 | * |
#
支持的操作系统和架构操作系统 | 架构 |
---|---|
linux | amd64 |
linux | arm |
linux | arm64 |
#
使用方式#
权限对 Octopus 授予权限,如下所示:
#
BLE 示例指定一个 "蓝牙设备 "设备链接来连接小米温度计。
有关更多 BLE DeviceLink
示例,请参考deploy/e2e目录。
#
BluetoothDevice参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
metadata | 元数据 | metav1.ObjectMeta | 否 |
spec | 定义 "BluetoothDevice"的预期状态 | BluetoothDeviceSpec | 是 |
status | D 定义 "BluetoothDevice"的实际状态 | BluetoothDeviceStatus | 否 |
#
BluetoothDeviceSpec参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
extension | 指定设备的插件 | *BluetoothDeviceExtension | 否 |
parameters | 指定设备的参数 | *BluetoothDeviceParameters | 否 |
protocol | 指定访问设备时使用的协议 | BluetoothDeviceProtocol | 是 |
properties | 指定设备的属性 | []BluetoothDeviceProperty | 否 |
参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
properties | 上报设备的属性 | []BluetoothDeviceStatusProperty | 否 |
#
BluetoothDeviceParameters参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
syncInterval | 指定默认的设备同步时间间隔,默认为15s | string | 否 |
timeout | 指定默认的设备的连接超时时间,默认为30s | string | 否 |
#
BluetoothDeviceProtocol参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
endpoint | 指定设备的端点,可以是设备的名称或 MAC 地址 | string | 是 |
#
BluetoothDeviceProperty参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
name | 指定属性名称 | string | 是 |
description | 指定属性的描述 | string | 否 |
accessMode | 指定属性的访问模式,默认为 "NotifyOnly" | BluetoothDevicePropertyAccessMode | 是 |
visitor | 指定属性的 visitor | *BluetoothDevicePropertyVisitor | 是 |
#
BluetoothDeviceStatusProperty参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
name | 属性名称 | string | 否 |
value | 属性值 | string | 否 |
accessMode | 属性的权限 | BluetoothDevicePropertyAccessMode | 否 |
updatedAt | 修改属性的时间戳 | *metav1.Time | 否 |
#
BluetoothDevicePropertyAccessModeParameter | Description | Scheme |
---|---|---|
ReadOnly | 属性的权限是 read only | string |
ReadWrite | 属性的权限是 read and write | string |
NotifyOnly | 属性的权限模式是 notify only | string |
#
BluetoothDevicePropertyVisitor参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
characteristicUUID | 指定属性的 UUID。 | string | 是 |
defaultValue | 当访问模式为 "读写 "时,指定属性的默认值 | string | 否 |
dataWrite | 指定要写入设备的数据 | string | 否 |
dataConverter | 指定将从设备读取的数据转换为字符串的转换器 | BluetoothDataConverter | 否 |
#
BluetoothDataConverter参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
startIndex | 指定要转换的输入字节流的起始索引 | int | 是 |
endIndex | 指定要转换的输入字节流的结束索引 | int | 是 |
shiftLeft | 指定要左移的位数 | int | 否 |
shiftRight | 指定要右移的位数 | int | 否 |
orderOfOperations | 指定操作的顺序 | []BluetoothDeviceArithmeticOperation | 否 |
#
BluetoothDeviceArithmeticOperation参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
type | 指定算术运算的类型 | BluetoothDeviceArithmeticOperationType | 是 |
value | 指定算术运算的值,其形式为浮点数字符串 | string | 是 |
#
BluetoothDeviceArithmeticOperationType参数 | 描述 | 类型 |
---|---|---|
Add | 加法的算术运算。 | string |
Subtract | 减法的算术运算。 | string |
Multiply | 乘法的算术运算。 | string |
Divide | 除法的算术运算。 | string |
#
BluetoothDeviceExtension参数 | 描述 | 类型 | 是否必填 |
---|---|---|---|
mqtt | 指定 MQTT 的设置 | *v1alpha1.MQTTOptionsSpec | 否 |