Ryan Powell
Ryan Powell
I don't think that code is included currently. I would need to add it, might be time to update nrfx as well. Any particular reason to use this over the...
You're welcome 😄 , is there anything else on the board drawing current? On my nrf51822 boards the current draw is much less in sleep mode. What peripherals are you...
I don't have any examples of that at the moment but I am wondering if you are calling `Serial.begin()` in your code? the UART will consume power at that level.
@beckmx `systemPowerOff()` will put the device into deep sleep while just calling `delay()` will put the device into "system on" sleep mode.
Are you using the adafruit bootloader? If so you'll need to select it as the uploader to flash.
Thank you @afpineda for your support! I'm incredibly grateful to all of you for the support and contributions.
Looks like things have changed upstream in a way that this is incorrect! **New esp32 chips now supported!** #939
@ednieuw could you please try this: ``` #include "NimBLEDevice.h" void setup() { NimBLEDevice::init(""); } void loop() { delay(1); } ``` If that works, start adding more of your code until...
Hello @demirschmid61 are you advertising on BLE at the same time as wifi scanning? Can you share a code snippet?
@alberk8, what arduino core version are you using?