Search found 576 matches

by boarchuz
Tue Apr 23, 2019 4:08 am
Forum: General Discussion
Topic: esp_wifi_scan_start was ok now returns -1
Replies: 1
Views: 2811

Re: esp_wifi_scan_start was ok now returns -1

You can't start a scan while connecting. Might that be it?
by boarchuz
Mon Apr 22, 2019 12:15 am
Forum: ESP32 Arduino
Topic: Which core controls the wifi connection?
Replies: 1
Views: 6313

Re: Which core controls the wifi connection?

Core 0, but I assure you that's not at all relevant here.

Perhaps post some code? There will be something in your loop() that is blocking waiting for a WiFi connection.
by boarchuz
Thu Apr 18, 2019 3:12 pm
Forum: General Discussion
Topic: Connecting ESP32 to internet in LowPower setup.
Replies: 5
Views: 6814

Re: Connecting ESP32 to internet in LowPower setup.

Does it matter how power hungry WiFi is if it's only going to be awake for 5 seconds once every 24 hours?
by boarchuz
Thu Apr 18, 2019 3:05 pm
Forum: ESP32 Arduino
Topic: How to use ESPAsyncWebServer in ESP32??
Replies: 5
Views: 8989

Re: How to use ESPAsyncWebServer in ESP32??

And I can't read minds. How about you post the rest of the message from the compiler then? It will say something like "...included in file abc.h"

Did you install it using the library manager? I'd be surprised if that version had an issue like this.
by boarchuz
Thu Apr 18, 2019 3:01 pm
Forum: ESP32 Arduino
Topic: On-Board LED on the Wrover-B ?
Replies: 1
Views: 6586

Re: On-Board LED on the Wrover-B ?

They look the same to me.

You can read about the board you have here:
https://docs.espressif.com/projects/esp ... vkitc.html

It doesn't appear to have an LED other than the power indicator.
by boarchuz
Thu Apr 18, 2019 2:52 pm
Forum: ESP32 Arduino
Topic: How to use ESPAsyncWebServer in ESP32??
Replies: 5
Views: 8989

Re: How to use ESPAsyncWebServer in ESP32??

Code: Select all

#include "ESPAsyncWebServer.h"
by boarchuz
Tue Apr 16, 2019 8:42 am
Forum: ESP32 Arduino
Topic: A fatal error occurred: Failed to connect to ESP32: Timed out waiting for packet header
Replies: 11
Views: 41314

Re: A fatal error occurred: Failed to connect to ESP32: Timed out waiting for packet header

The Boot button is 0. I'd suggest opening your serial monitor. Then hold down Boot, don't be shy, you can't do it too early and there's no harm in holding it longer than necessary. Give the reset button a good click and you should see some output saying that it's in download mode. Make sure that wor...
by boarchuz
Thu Apr 11, 2019 8:02 am
Forum: ESP32 Arduino
Topic: ESP32 deep sleep current consumption
Replies: 5
Views: 9602

Re: ESP32 deep sleep current consumption

Tell us all about your setup, it could be a number of things. What module and/or board, what else is connected to it, your code, etc.
by boarchuz
Wed Apr 10, 2019 8:49 am
Forum: General Discussion
Topic: Variable doesn't update between cores
Replies: 30
Views: 42310

Re: Variable doesn't update between cores

Arduino delay () is not the same as vTaskDelay() - which you should use. delay() does not a taskswitching, vTaskDelay does. FYI vTaskDelay is exactly the way ESP32 implements delay in Arduino. https://github.com/espressif/arduino-esp32/blob/master/cores/esp32/esp32-hal-misc.c#L124 void delay(uint32...
by boarchuz
Fri Apr 05, 2019 12:04 pm
Forum: ESP32 Arduino
Topic: A fatal error occurred: Failed to connect to ESP32: Timed out waiting for packet header
Replies: 11
Views: 41314

Re: A fatal error occurred: Failed to connect to ESP32: Timed out waiting for packet header

That's Vin and GND for the AMS1117. 4.35V seems a little low - you would expect USB to be around 5V +-0.25 - but there might be a diode or something in between to explain that drop. Regardless, it should enough for the voltage regulator to produce a ~3.3V output (probe Vout and GND with the multimet...