HM-10 和温度传感器的 BLE 连接问题:使用 android studio 版本 3.1.4 和 API 15:A



我必须使用android studio sdk 3.1.4版本设计一个Android应用程序,并在API 15上开发:Android 4.0.3(IceCreamSandwich(,它能够使用HM 10 BLE模块从arduino接收csv数据,类似于Playstore上的BLE终端应用程序。BLE终端应用程序用于扫描附近的BLE设备,也用于串行通信。通过智能手机控制使用任何BLE模块(基于德州仪器CC254x(的任何微控制器。此应用程序可以通过BLE发送和接收命令,因此您可以轻松调试硬件问题。以 ASCII 或十六进制形式监控接收数据。以 ASCII 或十六进制形式发送数据。 目前,我已经在 android studio 上导入了蓝牙 LEGATT 示例代码并安装了该应用程序,我正在其中获取数据,但数据没有流入流,我希望它显示在流中。我想以csv格式接收它。数据应采用流格式。在arduino方面,我以csv格式发送。

<?xml version="1.0" encoding="UTF-8"?>
<!--Copyright 2013 The Android Open Source ProjectLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License. -->
-<manifest android:versionName="1.0" android:versionCode="1" package="com.example.android.bluetoothlegatt" xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->

<!-- Declare this required feature if you want to make the app available to BLE-capabledevices only. If you want to make your app available to devices that don't support BLE,you should omit this in the manifest. Instead, determine BLE capability by usingPackageManager.hasSystemFeature(FEATURE_BLUETOOTH_LE) -->

<uses-feature android:required="true" android:name="android.hardware.bluetooth_le"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

-<application android:theme="@android:style/Theme.Holo.Light" android:icon="@drawable/ic_launcher" android:label="@string/app_name">

-<activity android:name=".DeviceScanActivity" android:label="@string/app_name">

-<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".DeviceControlActivity"/>
<service android:name=".BluetoothLeService" android:enabled="true"/>
</application>
</manifest>

低功耗蓝牙(BLE(在4.3版本中引入Android。所以你的问题之一可能是API 15:Android 4.0.3(IceCreamSandwich(。尝试将最低 API 更改为 18。在API级别21之前,Lollipop android使用BlueZ软件堆栈。尽管BlueZ工作了,但它在Android 4.3上的BLE仍然存在一些稳定性问题,特别是在保持连接方面的扫描。在Android API 21版本中,使用了Bluedroid软件堆栈,它更稳定,并改进了BLE的API。

相关内容

  • 没有找到相关文章

最新更新