hm-10

How to use BLE Shield based on HM-10 bluetooth module?

核能气质少年 提交于 2020-01-01 03:30:25
问题 I'm a new bie on arduino projects. I would like to ask you for some help. I bought a BLE Shield for Arduino from ( http://imall.iteadstudio.com/development-platform/arduino/shields/im130704001.html ). They made this shield using Hm-10 Bluetooth module(http://www.jnhuamao.cn/bluetooth.asp?ID=1). Itead Studio has no sample codes using this shield. I have no idea on how to program it or send AT commands from Arduino. I read the “AT commands” at the data sheet (ftp://imall.iteadstudio.com/Shield

Can I read iBeacon data using Arduino?

旧街凉风 提交于 2019-12-24 15:03:30
问题 I am using an HM-10 module and Arduino UNO. My requirement is to read data from ibeacons near me using Arduino. Is it possible? I have not been able to find any articles on this. All articles talk about connecting your android phone with arduino. Any idea? 回答1: Yes, it is possible. I'm using an HM-10 as an iBeacon detector (linksprite.com BLE 4.0 shield), and it is successfully detecting a RadBeacon running in iBeacon mode. Firmware on my HM-10 is version 540. Before it would detect the

AT commands to hm10 over bluetooth with android

烈酒焚心 提交于 2019-12-23 03:47:21
问题 Hey guys am working with a project and i want to know is it possible to send AT commands to hm-10 ble device directly from my android app over bluetooth without using any micro controller and if yes then how???? 回答1: if any one trying this in future, the answer is yes we can just send a string to hm-10 as "AT\r\n" and it will respond with OK. 来源: https://stackoverflow.com/questions/39493234/at-commands-to-hm10-over-bluetooth-with-android

Apple Store App Rejection - Support for external-accessory in the UIBackgroundModes

纵饮孤独 提交于 2019-12-22 00:37:32
问题 I recently had an app rejected by the store for the following reason: Our app declares support for external-accessory in the UIBackgroundModes key in your Info.plist file but does not declare any external accessory protocols supported by your app. The external accessory background mode is intended for apps that communicate with hardware accessories through the External Accessory framework. I have read through some answers of previous people who asked this question but I am unsure on my case.

HM-10 and Arduino - Sending AT commands with no line ending from code

懵懂的女人 提交于 2019-12-20 05:12:30
问题 I need to use HM-10 with Arduino Uno or Nano. I'm not able to figure out how to send AT commands and read the reply. The commands work from serial monitor, but not from code. Here's what I've tried so far: #include <SoftwareSerial.h> SoftwareSerial blueToothSerial(0,1); // RX, TX void setup() { // Open serial communications and wait for port to open: Serial.begin(115200); Serial.println("Serial began"); blueToothSerial.begin(9600); delay(2000); } void loop() { Serial.println("looping...");

HM10 ble change characteristic value AT command Arduino

≡放荡痞女 提交于 2019-12-04 21:19:57
问题 Can anyone help me with the AT command to write characteristic value, Or how to send data from arduino to another ble device using Hm10 module. The HM10 after sending the AT+START, does advertise packets, and can detect the service and characteristic, But the characteristic value is the default 0x00, How can I change that? Have checked the data sheet multiple times but can not find an AT command that is capable of doing the same. UPDATE: Similar problem with setting the HM10 in Central Mode:

Apple Store App Rejection - Support for external-accessory in the UIBackgroundModes

好久不见. 提交于 2019-12-04 19:33:49
I recently had an app rejected by the store for the following reason: Our app declares support for external-accessory in the UIBackgroundModes key in your Info.plist file but does not declare any external accessory protocols supported by your app. The external accessory background mode is intended for apps that communicate with hardware accessories through the External Accessory framework. I have read through some answers of previous people who asked this question but I am unsure on my case. My app communicates with a HM10 Bluetooth Low Energy module by sending and receiving bytes. In my info

HM10 ble change characteristic value AT command Arduino

五迷三道 提交于 2019-12-03 13:51:43
Can anyone help me with the AT command to write characteristic value, Or how to send data from arduino to another ble device using Hm10 module. The HM10 after sending the AT+START, does advertise packets, and can detect the service and characteristic, But the characteristic value is the default 0x00, How can I change that? Have checked the data sheet multiple times but can not find an AT command that is capable of doing the same. UPDATE: Similar problem with setting the HM10 in Central Mode: Central Mode Setup! 1) AT+ROLE1 - Set up to Central Mode 2) AT+IMME1 - Start from RESET 3) AT+SHOW1 -

How to use BLE Shield based on HM-10 bluetooth module?

回眸只為那壹抹淺笑 提交于 2019-12-03 08:26:05
I'm a new bie on arduino projects. I would like to ask you for some help. I bought a BLE Shield for Arduino from ( http://imall.iteadstudio.com/development-platform/arduino/shields/im130704001.html ). They made this shield using Hm-10 Bluetooth module( http://www.jnhuamao.cn/bluetooth.asp?ID=1 ). Itead Studio has no sample codes using this shield. I have no idea on how to program it or send AT commands from Arduino. I read the “AT commands” at the data sheet ( ftp://imall.iteadstudio.com/Shield/IM130704001_ITEAD_BLE_Shield/DS_IM130704001_ITEAD_BLE_Shield.pdf ) and I tried to send "AT commands”