Flutter蓝牙通信插件vibio_bluetooth_core的使用
Flutter蓝牙通信插件vibio_bluetooth_core的使用
简介
vibio_bluetooth_core
是一个用于实现蓝牙通信功能的 Flutter 插件。它支持 Android 和 iOS 平台,并提供了简单的 API 来进行蓝牙设备的扫描、连接、数据传输等操作。
使用步骤
以下是使用 vibio_bluetooth_core
的完整示例代码和说明。
示例代码
以下是一个完整的示例代码,展示了如何使用 vibio_bluetooth_core
进行蓝牙设备的扫描和连接。
// 导入必要的库
import 'package:flutter/material.dart';
import 'package:vibio_bluetooth_core/vibio_bluetooth_core.dart'; // 引入蓝牙核心库
void main() {
runApp(const MyApp()); // 启动应用
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Bluetooth Example',
theme: ThemeData(primarySwatch: Colors.blue),
home: const BluetoothExample(), // 设置主页为蓝牙示例页面
);
}
}
class BluetoothExample extends StatefulWidget {
const BluetoothExample({Key? key}) : super(key: key);
@override
_BluetoothExampleState createState() => _BluetoothExampleState();
}
class _BluetoothExampleState extends State<BluetoothExample> {
List<DeviceResult> devices = []; // 存储扫描到的蓝牙设备
bool isScanning = false; // 是否正在扫描设备
DeviceResult? selectedDevice; // 用户选择的蓝牙设备
// 扫描蓝牙设备
Future<void> scanDevices() async {
setState(() {
isScanning = true;
});
try {
// 开始扫描蓝牙设备
devices = await VibioBluetoothCore.scan();
setState(() {
isScanning = false;
});
} catch (e) {
print("Error scanning devices: $e");
setState(() {
isScanning = false;
});
}
}
// 连接选中的蓝牙设备
Future<void> connectToDevice() async {
if (selectedDevice == null) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('请选择一个设备')),
);
return;
}
try {
// 连接到选中的蓝牙设备
await VibioBluetoothCore.connect(selectedDevice!.id);
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('设备已连接')),
);
} catch (e) {
print("Error connecting to device: $e");
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('连接失败: $e')),
);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('蓝牙通信示例'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
onPressed: isScanning ? null : scanDevices, // 如果正在扫描,则禁用按钮
child: Text(isScanning ? '扫描中...' : '扫描蓝牙设备'),
),
const SizedBox(height: 20),
Expanded(
child: ListView.builder(
itemCount: devices.length,
itemBuilder: (context, index) {
final device = devices[index];
return ListTile(
title: Text(device.name ?? '未知设备'),
subtitle: Text(device.id),
onTap: () {
setState(() {
selectedDevice = device; // 用户点击时选择设备
});
},
);
},
),
),
const SizedBox(height: 20),
ElevatedButton(
onPressed: selectedDevice != null ? connectToDevice : null,
child: const Text('连接设备'),
),
],
),
),
);
}
}
代码说明
-
导入库:
import 'package:vibio_bluetooth_core/vibio_bluetooth_core.dart';
引入
vibio_bluetooth_core
库以使用其蓝牙功能。 -
初始化应用:
void main() { runApp(const MyApp()); }
-
扫描蓝牙设备:
Future<void> scanDevices() async { setState(() { isScanning = true; }); try { devices = await VibioBluetoothCore.scan(); setState(() { isScanning = false; }); } catch (e) { print("Error scanning devices: $e"); setState(() { isScanning = false; }); } }
调用
VibioBluetoothCore.scan()
方法扫描附近的蓝牙设备,并将结果存储在devices
列表中。 -
连接蓝牙设备:
Future<void> connectToDevice() async { if (selectedDevice == null) { ScaffoldMessenger.of(context).showSnackBar( const SnackBar(content: Text('请选择一个设备')), ); return; } try { await VibioBluetoothCore.connect(selectedDevice!.id); ScaffoldMessenger.of(context).showSnackBar( const SnackBar(content: Text('设备已连接')), ); } catch (e) { print("Error connecting to device: $e"); ScaffoldMessenger.of(context).showSnackBar( SnackBar(content: Text('连接失败: $e')), ); } }
更多关于Flutter蓝牙通信插件vibio_bluetooth_core的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html
1 回复