Search found 7 matches

by yemred
Tue Dec 21, 2021 12:54 pm
Forum: General Discussion
Topic: esp_ble_gap_update_whitelist add multiple adresses
Replies: 0
Views: 4573

esp_ble_gap_update_whitelist add multiple adresses

i wanna have 100 devices into whitelist. but my problem is i tried lots of ways but couldnt add or i am not sure. for example code below if can add 5 adresses it is always reading the first device. and whitelist size is 9. when i try to add 3 addr then size again 9 but this time it is reading 2. or ...
by yemred
Thu Dec 09, 2021 7:24 am
Forum: General Discussion
Topic: esp_ble_gap_update_whitelist
Replies: 0
Views: 3468

esp_ble_gap_update_whitelist

hello, i am curious about how many devicess can we add to the white list. is there any limitations. can i add 10 000 devicess for example and information for someone who is searching about this topic, how to use and implement it: static void esp_gap_cb(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_pa...
by yemred
Fri Dec 03, 2021 6:01 am
Forum: General Discussion
Topic: device address ble eddystone tlm
Replies: 2
Views: 3951

Re: device address ble eddystone tlm

i wanna ansver my own question instead of admins (: if you wanna get all advertised data in hex combination then code is this uint8_t adv_data_len = scan_result->scan_rst.adv_data_len; uint8_t *adv_data = scan_result->scan_rst.ble_adv; for(int i = 0; i < ESP_BD_ADDR_LEN; ++i){ printf("%02X ", adv_ad...
by yemred
Thu Dec 02, 2021 12:37 pm
Forum: General Discussion
Topic: device address ble eddystone tlm
Replies: 2
Views: 3951

device address ble eddystone tlm

Hello, i am using exactly same example of ble eddystone. there is a function esp_log_buffer_hex("EDDYSTONE_DEMO: Device address:", scan_result->scan_rst.bda, ESP_BD_ADDR_LEN); for printing device address but i want to assign device address to a variable. are there any one else who can show me the wa...
by yemred
Thu Nov 25, 2021 5:39 am
Forum: General Discussion
Topic: need help!! tensorflow lite build issue with platformio or vs code or eclipse
Replies: 0
Views: 3022

need help!! tensorflow lite build issue with platformio or vs code or eclipse

i tried lots of videos for build tflite examples like hello world or micro speach etc. but it is really difficult to use it because there is no practical way to download and set up tflite properly. i dont wanna use arduino ide or arduino codes. but there isnt any current guide to follow it. for exam...
by yemred
Wed Nov 17, 2021 4:41 am
Forum: General Discussion
Topic: access point and web server
Replies: 2
Views: 2937

Re: access point and web server

SOLVED this is my bad. code works perfect. the thing i havent seen is the ip of esp32. when i set esp32 AP my pc becomes STA and esp32 gives an ip address. this address is the pc's ip address. when you use the esp32 as an AP and Webserver then you need to know esp32's ip address. This is where i was...
by yemred
Tue Nov 16, 2021 9:25 am
Forum: General Discussion
Topic: access point and web server
Replies: 2
Views: 2937

access point and web server

i am trying to create a simple web server using access point. but code doesnt work and i am stuck. is there any one who can tell me why this code doesnt work. i guess i have problem at root_get_handler section. but why i cant find anything working, i saw who wanna work with idf not arduino, most of ...