Search found 12 matches
- Fri Apr 21, 2017 7:35 pm
- Forum: General Discussion
- Topic: BLE Scan and obtain RSSI
- Replies: 12
- Views: 32631
Re: BLE Scan and obtain RSSI
Don't trust the RSSI values, it is mostly complete nonsense
- Fri Apr 21, 2017 7:34 pm
- Forum: ESP-IDF
- Topic: ESP32 BLE - how many simultaneous unique iBeacon readings?
- Replies: 4
- Views: 8716
Re: ESP32 BLE - how many simultaneous unique iBeacon readings?
Well in fact - it doesn't even scan a single RadBeacon Dot, what do I expect....
- Mon Mar 27, 2017 4:38 pm
- Forum: General Discussion
- Topic: How to get the rssi from BLE scan
- Replies: 14
- Views: 42635
Re: How to get the rssi from BLE scan
@bombix: In other words: You can forget about. There are enough well working alternatives around which surly blame the ESP32 for the fails. What setup do you have? What development board? Here is some more information on all the glitches in conjunction with BLE I found so far. For me the ESP 32 woul...
- Fri Mar 24, 2017 4:10 pm
- Forum: General Discussion
- Topic: How to get the rssi from BLE scan
- Replies: 14
- Views: 42635
Re: How to get the rssi from BLE scan
If you issue "make monitor" or even "make flash monitor" then the internal ESP-IDF monitor is launched.
- Fri Mar 24, 2017 9:06 am
- Forum: ESP-IDF
- Topic: ESP32 BLE - how many simultaneous unique iBeacon readings?
- Replies: 4
- Views: 8716
Re: ESP32 BLE - how many simultaneous unique iBeacon readings?
@heyinling: The question was about the capabilities of the ESP32 hardware (BLE part): There are some other chips available, which for instance are limited with respect to the number if unique iBeacons which can be received in a given timespan. I know about TI chips, which are limited to 20-25. What ...
- Thu Mar 23, 2017 7:11 pm
- Forum: General Discussion
- Topic: How to get the rssi from BLE scan
- Replies: 14
- Views: 42635
Re: How to get the rssi from BLE scan
Thanks @kolban. I'm also working with platform.io in an ESP8266 project, using Visual Studio Code as IDE. The same IDE is perfectly working (including symbol resolution, git support and kind of "intellisense") in the ESP-IDF world. Right now ESP-IDF is the bleeding edge in ESP32 development and the ...
- Thu Mar 23, 2017 6:41 pm
- Forum: General Discussion
- Topic: How to get the rssi from BLE scan
- Replies: 14
- Views: 42635
Re: How to get the rssi from BLE scan
You need to follow the installation rules provided here https://github.com/espressif/esp-idf Then take the /examples/bluetooth/gatt_client/ and copy my main.c into the main sub dir. Remove gatt_demo.c Run "make menuconfig" from the root of the project. After the proper configuration run "make flash"...
- Tue Mar 21, 2017 5:33 am
- Forum: ESP-IDF
- Topic: ESP32 BLE - iBeacon scan not working reliably
- Replies: 3
- Views: 9966
Re: ESP32 BLE - iBeacon scan not working reliably
@jkhax0r: Yes, it seems, there is something rolling. Seems, this forum is pretty uninformative. I never got any substantial answer to valid questions here. But I opened an issue here: https://github.com/espressif/esp-idf/issues/421 Right now the RSSI bug is confirmed and fixed. Just waiting for the ...
- Mon Mar 13, 2017 1:05 pm
- Forum: ESP-IDF
- Topic: ESP32 BLE - iBeacon scan not working reliably
- Replies: 3
- Views: 9966
Re: ESP32 BLE - iBeacon scan not working reliably
Maybe code sharing helps to come behind: Here is the code: #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sdkconfig.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/event_groups.h" #include "esp_system.h" #include "esp_wifi.h" #include "esp_event_...
- Mon Mar 13, 2017 1:03 pm
- Forum: General Discussion
- Topic: How to get the rssi from BLE scan
- Replies: 14
- Views: 42635
Re: How to get the rssi from BLE scan
I can confirm this mess. I'm using a Sparkfun ESP32Thing. RSSI values are sometimes complete nonsense, some industry standard iBeacons (like RadBeacons) are not recognized at all (or just occasionally). Here is my ESP32-IDF snippet and the results I'm receiving with it. Donald would finish with "Ver...