Understanding AT commands? [closed] - bluetooth

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I paired a phone to an android device , but there is a problem in the response of some AT commands:
""" I get an incoming call to the paired phone then i executed random commands"
AT+BLDN
AT+CLCC
AT+CMOD
I have read some informations about the AT commands but I still not understanding if those commands are executed from the paired phone side or from the device to which i paired the phone ?
So if i get problems in AT commands response, shall i consider it as a phone issue or the android device issue?

The AT commands are something that is being processed on your device. Not only BT modules understand AT commands, there are others like WiFi (ESP8266, for instance) or GSM modules that read those.
So usually they are read, interpreted and executed by your chip.
Can you send AT commands as a bluetooth payload? Yes you can! Is it common practice? I don't think so
Then we must fully understand how your device and phone are interacting with eachother to be able to definitively answer yes it's the phone or no, it's just your device.
Reading the manuals of your device would help a lot, but for what you've been providing I would say you're doing something wrong with the AT commands

Related

ESP32 - BLE connection from Linux [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
As far as I know, ESP32 is capable of BLE communication.
Mostly done with Arduino, but I'm interested:
Is there a way to attach ESP32 to Linux, and use the standard BlueZ commands (hcitool, gatttool) for managing BLE peripherals?
hcitool and gatttool are part of the eight tools that have been depreacted by BlueZ
https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=b1eb2c4cd057624312e0412f6c4be000f7fc3617
Zephyr is a small real-time operating system for connected, resource-constrained and embedded devices and I believe ESP32 is one of the support microcontrollers.
In Zephyr's documentation there is a section Using BlueZ with Zephyr which features a list of the supported tools that have replaced the ones you mention.
https://docs.zephyrproject.org/latest/guides/bluetooth/bluetooth-tools.html?highlight=bluez#using-bluez-with-zephyr

Controlling an Arduino with Flutter [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am wanting to create an app to control an Arduino using either USB or Bluetooth. Does anyone know if this is possible and/or have any suggestions on resources that I could use to learn how to do this?
No, flutter as of now does not have any bluetooth serial library which is actually needed to communicate with an Arduino.
One way that you can use flutter apps to control Arduino would be to just use ESP8266 wifi shield and control Arduino via api calls or socket connection.
Hope that helps!

Using Arduino Lily Pad together with HC-6 bluetooth device [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am thinking of doing a project with wearable electronics.
First off I was wondering if you can connect the HC-6 Bluetooth device to the Lilly Pad, to send data to a computer via Bluetooth? or do I absolutely have to buy the "expensive" Bluetooth Mate?
Second, if the above is not possible, what is the smartest and cheapest solution for sending data from a Lily Pad to a computer?
I don't see why not. First off, this tutorial shows you how to attach the HC-06 to an Arduino Uno: http://www.instructables.com/id/Add-bluetooth-to-your-Arduino-project-ArduinoHC-06/?ALLSTEPS
Even though you are using a Lilypad, the pins are the same. Here is a pinout diagram for the Lilypad: http://figures.oreilly.com/tagoreillycom20090710oreillybooks308088I_book_d1e1/figs/I_mediaobject5_d1e21363-web.png
This does a decent job of explaining Bluetooth serial communication for Macs: https://decyborg.wordpress.com/2013/09/08/bluetooth-serial-communication-with-arduino-jy-mcu-bluetooth-and-macbook-pro/
Or you could check this out for Windows: https://www.microsoft.com/en-us/store/apps/bluetooth-serial-terminal/9wzdncrdfst8
Hope this helps.

Can I send arduino programs directly via bluetooth? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I would love to upload my arduino sketches via bluetooth, but I have no idea where to start. This is part of a bigger project I am working on.
Yes and it is fairly easy to do. see this post.
Here's a detailed how-to I wrote that includes instructions for Windows and a slightly more simple circuit for using the HC-05 with it's common breakout board (highly recommend getting the module on the breakout): ​http://makezine.com/projects/diy-arduino-bluetooth-programming-shield/

Detecting movement using phones [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I'd like to uniquely identify all wireless devices (phones, tablets, etc) within range. I don't care how far the devices are nor do I need to send them anything. I just want to be able to say: phone ABC was in this zone between 9:00 - 9:30, and 17:00 - 18:00.
I was thinking of sniffing Wifi packets but it seems that some phones avoid sending Probe Request packets, furthermore it's difficult to get Wifi cards into Monitor Mode. I've been unable to find any information on EDGE/3G detection.
I'm trying to measure queuing time similar to what they do in Finland.
The approach must "uniquely identify" the device. Meaning I want to be able to differentiate between the same device entering the zone multiple times versus new devices entering.
The approach must collect "anonymous" data, meaning I don't want to record any information that would allow someone to figure out the owner's identity.
What's the best way to detect the presence of mobile devices?

Resources