Ricardo Quesada
Ricardo Quesada
Yes. BluetoothSerial is disabled. See: https://gitlab.com/ricardoquesada/esp-idf-arduino-bluepad32-template/-/blob/main/sdkconfig.defaults#L56 this is because it doesn't use Bluedroid. Instead it uses the BTstack stack (different one). I would add Arduino APIs for BTstack, but you...
not sure... just try with regular ESP32 Arduino core.... create a very simple example that uses BT and WiFi... if that works, then it should work with ESP32-Bluepad32 Arduino core
Happens when using hinting: ``` def my_func(rgb: tuple[int, int, int]): .... ``` same error: `E1136: Value 'tuple' is unsubscriptable (unsubscriptable-object)`
@kbakk good point. I was just copy&pasting code from here: https://docs.python.org/3/library/typing.html
please attach your sketch. In theory BT and WiFi should be able to co-exists
Would you mind attaching the `WIFIAccessPoint.ino` example ?
interesting... perhaps I forgot to enable a feature in the `menuconfig`
Watchdog is enabled in Bluepad32 version... so your code should never have a `while(true)` without yielding the CPU, including `loop()`. E.g: from https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino, you should add in line 98 something...
Please copy paste the patched sketch. I want to double-checked that it was patched correctly
I confirm that with the attached sketch from @jsolderitsch using the template project in `develop` branch ( https://github.com/ricardoquesada/esp-idf-arduino-bluepad32-template ) it works Ok. (just rename `Serial` with `Console` if you want...