Bob
Bob
I think this a bug in [Electron.NET](https://github.com/ElectronNET/Electron.NET). The `showOpenDialog` command is send to the ElectronNET.Host. ElectronNET.Host calles the [`showOpenDialog`](https://github.com/ElectronNET/Electron.NET/blob/e9bf39316570655adca9ff8107e6e70d43577514/ElectronNET.Host/api/dialog.ts#L30) And sends the results back to ElectronNET.API. The ElectronNET.API transforms the...
Writing `{0x01, 0x00}` should start the notifieer and writing `{0x00, 0x00}` should stop the notifieer
Sorry for the late reaction... Dart works with pub instead of bower. The code doesn't have to change to use in Dart. Only the project structure needs to be changed....
In later Android versions you should bind your app to the WiFi connection. Because later Android versions detect that the ESP32 SoftAP doesn't provide access to the internet, it routes...
By disabling the cellular data on your Android 10 phone and connect it to the WiFi access point of the ESP32, it should work fine. Or if you have access...
Can you try to compile your code with the CORE_DEBUG_LEVEL to ARDUHAL_LOG_LEVEL_VERBOSE? Maybe the Serial output of the ESP32 can provide some information.
Which ESP32 are you using? And which pins are you using on the ESP32?
Can you try a very simple example? ```ini [env:pico32] platform = espressif32 board = pico32 framework = arduino monitor_speed=9600 ``` ```cpp #include void setup() { Serial.begin(9600); WiFi.softAP("ESP32", "123456789"); Serial.println(); Serial.println("AP...