Search found 6 matches

by ayandas4
Mon Mar 25, 2019 5:59 am
Forum: ESP32 Arduino
Topic: ESP32 Arduino WiFi + Eddystone beacon
Replies: 4
Views: 10017

Re: ESP32 Arduino WiFi + Eddystone beacon

The problem is solved. It was mostly misunderstanding of the beacon advertisement data setting. I was doing repeated settings through the API as well as the raw data. here is the working code: #include "BLEDevice.h" #include "BLEUtils.h" #include "BLEServer.h" //#include "esp_sleep.h" /*************...
by ayandas4
Sun Mar 24, 2019 1:12 pm
Forum: ESP32 Arduino
Topic: ESP32 Arduino WiFi + Eddystone beacon
Replies: 4
Views: 10017

Re: ESP32 Arduino WiFi + Eddystone beacon

Thanks for your response.

My understanding may be wrong... but "bit.ly/Brizo64a" is 15 bytes, and beacon_data[] is loaded with 15 bytes prior to it, that comes to total 30 bytes. Am I missing something?

Regards
Ayan
by ayandas4
Fri Mar 22, 2019 5:57 am
Forum: ESP32 Arduino
Topic: ESP32 Eddystone Beacon
Replies: 1
Views: 5941

ESP32 Eddystone Beacon

Writing a code for Eddystone beacon, but the hardware is advertising something else. Board is ESP32 Eval Module, using https://github.com/nkolban/ESP32_BLE_Arduino. Attached a screenshot of the scan: Screenshot_20190321-104637.png Complete code here: #include "BLEDevice.h" #include "BLEUtils.h" #inc...
by ayandas4
Fri Mar 22, 2019 5:41 am
Forum: ESP32 Arduino
Topic: ESP32 Arduino WiFi + Eddystone beacon
Replies: 4
Views: 10017

Re: ESP32 Arduino WiFi + Eddystone beacon

Now I wrote a code with only BLE, in default partition.. and nothing else. It still doesn't advertise the parameters I'm giving. #include "BLEDevice.h" #include "BLEUtils.h" #include "BLEServer.h" //#include "esp_sleep.h" /******************** BLE ************************************/ BLEAdvertising...
by ayandas4
Thu Mar 21, 2019 5:36 am
Forum: ESP32 Arduino
Topic: ESP32 Arduino WiFi + Eddystone beacon
Replies: 4
Views: 10017

ESP32 Arduino WiFi + Eddystone beacon

I'm designing a device with with Wi-Fi, EEPROM, GPIO functions, and also trying to make the device advertise an Eddystone URL. After I added BLEDevice, I faced Sketch too big issue. To solve that issue, I changed the default partition to increase the program memory area. I also tried selecting parti...
by ayandas4
Wed Mar 20, 2019 5:21 am
Forum: ESP-IDF
Topic: WIFI/BLE Simultaneously
Replies: 67
Views: 162458

Re: WIFI/BLE Simultaneously

I'm facing the reboot issue in Arduino when using Wi-Fi and BLE together. I integrated the Wi-Fi, EEPROM, and GPIO activities first, which worked fine. Next when trying to wite an Eddystone beacon, along with Wi-Fi, EEPROM and few GPIO activities, after I added BLEDevice, I faced Sketch too big issu...