Search found 3 matches

by pluviofeel
Tue Nov 16, 2021 7:47 am
Forum: ESP32 boards
Topic: Is it possible to insert a task while BLE is broadcasting
Replies: 0
Views: 812

Is it possible to insert a task while BLE is broadcasting

What I want do is print the value from the sensor while BLE broadcast. I know that in order to BLE broadcast I need use BLE.gap_advertise(interval_us, adv_data=None, *, resp_data=None, connectable=True) and using uasyncio to run task at the same time(Concurrent computing). The problem is it seems li...
by pluviofeel
Mon Feb 15, 2021 4:08 am
Forum: ESP32 boards
Topic: Cannot get a response from BLE scan
Replies: 2
Views: 1286

Re: Cannot get a response from BLE scan

Please any help or suggestion is highly appreciated. It looks like you might be using sample code from an older version of the bluetooth API (it was marked as experimental for this reason, although it's starting to stabilise now). Assuming you're using MicroPython 1.13 or 1.14, then please see http...
by pluviofeel
Mon Feb 15, 2021 2:59 am
Forum: ESP32 boards
Topic: Cannot get a response from BLE scan
Replies: 2
Views: 1286

Cannot get a response from BLE scan

Dear Community; It's my first post and I am new to ESP32µpython. I am using ESP32 to build a bluetooth network recently, but I cannot get any response from _IRQ_SCAN_RESULT. The first method is this: from micropython import const import ubluetooth ble=ubluetooth.BLE() if ble.active()== False: b...