arthurkafer
arthurkafer
I couldn't find, had to change my approach for the problem and tried to train my model without AutoML. The results are obviously worse but it is what it is....
I think the default folder that the board starts is /flash, but you can find SD files using /sd I don't know if you already tried it
Every MaixPy firmware comes with a boot.py and a main.py file, but it probably doesn't have anything in the default file using LCD. You can flash AI models just like...
> I got one two days ago. The built-in face-detection program worked well, but after trying to flash it with Arduino IDE, the board became unresponsive. Haven't been able to...
> Did anyone find a commercial purpose for the CoralMicro? Google does have it's limitations.... Yes actually, but where I work we're in board developing phase, nothing physically running anything...
Yeah, Show Sketch Folder puts me in the correct folder, and the file is there in the /data folder.   I found the /data folder is being "replaced"/"overwritten" by...
`BLEDevice::init` allows only one initialization, and its commented on the BLEDevice.cpp https://github.com/nkolban/ESP32_BLE_Arduino/blob/adc2aee2f0d01eb6b30dd5ad3589f2cc89934beb/src/BLEDevice.cpp#L341 If you use `BLEDevice::deinit`, it sets `initialized = false;`, so you should restart your ESP if you need...
@chegewara My bad, didn't noticed about the repository. Anyway, some weeks ago I had the problem of deiniting BLE and initing it again, because it didn't work for me. In...
I'll paste the example code and my verbose logs ``` /* Based on Neil Kolban example for IDF: https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleScan.cpp Ported to Arduino ESP32 by Evandro Copercini */ #include #include #include...
I'm testing it now with the updated library, and it works fine with deinit(false). The problem happening with @akotowski might be about old libraries, trying his code here, it seems...