Search found 576 matches

by boarchuz
Fri Apr 05, 2019 11:48 am
Forum: ESP32 Arduino
Topic: Avoid public Hotspot captive pages
Replies: 4
Views: 5730

Re: Avoid public Hotspot captive pages

It's not a standard protocol. The short answer is no, not possible.
by boarchuz
Thu Mar 28, 2019 8:15 am
Forum: ESP32 Arduino
Topic: ESP32 2Tasks on 2 Cores - Board reset
Replies: 6
Views: 10416

Re: ESP32 2Tasks on 2 Cores - Board reset

It looks like you're checking if 'taskYieldRequired' but not actually yielding.

Code: Select all

if(taskYieldRequired == pdTRUE)
{
  taskYIELD();
}
by boarchuz
Thu Mar 28, 2019 8:09 am
Forum: General Discussion
Topic: not effect after flashing
Replies: 2
Views: 3078

Re: not effect after flashing

Is it possible that it's booting firmware in an OTA partition? Erase entire flash and try upload again.
by boarchuz
Mon Mar 11, 2019 5:12 am
Forum: ESP32 Arduino
Topic: Enabling RTC GPIO Pullup resistors
Replies: 1
Views: 6486

Re: Enabling RTC GPIO Pullup resistors

You may well need rtc_gpio_hold_en

https://docs.espressif.com/projects/esp ... gpio_num_t

(And rtc_gpio_hold_dis on wakeup.)
by boarchuz
Sat Mar 02, 2019 12:45 pm
Forum: ESP32 Arduino
Topic: Wire doesn't work with ESP32 / 8266
Replies: 6
Views: 8614

Re: Wire doesn't work with ESP32 / 8266

I think default is typically 5/4 for ESP32, but it's configurable on this chip so you may want to dig in to the library to see which pins it's using. That output suggests that it's changing pin configuration very quickly, far too quickly for you to physically switch the wires to match. Obviously you...
by boarchuz
Sat Feb 23, 2019 3:41 am
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 443
Views: 880815

Re: What would you like to see in The Next Chip?

Functionality to help with very low power projects. I think the ULP coprocessor is amazing and underutilized. I know there has been talk in here already of making it easier to work with. -Faster boot time (and/or faster wake from deep sleep if more feasible) -Faster WiFi connection time (I'm still c...
by boarchuz
Fri Feb 22, 2019 12:00 am
Forum: ESP32 Arduino
Topic: [SOVLED] AsyncWebServer doesn't receive values from HTTP_POST
Replies: 6
Views: 13385

Re: AsyncWebServer doesn't receive values from HTTP_POST

More generally, you should learn to debug this stuff yourself. You need to use some kind of web traffic monitor to debug your form and server response. Chrome and maybe Firefox have them built in, but I like Fiddler. And you need to use Serial printouts liberally in your code to identify where thing...
by boarchuz
Thu Feb 21, 2019 11:47 am
Forum: ESP32 Arduino
Topic: [SOVLED] AsyncWebServer doesn't receive values from HTTP_POST
Replies: 6
Views: 13385

Re: Trying to save some values from two input fields from inside a HTML page

There's no submit button on your html form to actually do the action. type="submit"
For the other button, you'll probably want a little bit of javascript (eg. clear the text fields and then focus the first) but that's not important right now.
Add the submit thing and see how you get on.
by boarchuz
Wed Feb 20, 2019 1:21 am
Forum: ESP32 Arduino
Topic: TFT Display on during ESP32 deep sleep?
Replies: 3
Views: 6496

Re: TFT Display on during ESP32 deep sleep?

I wouldn't bother with that one. Given that it's already in the state you want it to be in, you could probably just hold the pins at their current level, rather than specifically setting them. Here are the two: rtc_gpio_hold_en https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peri...