Search found 536 matches

by username
Wed Nov 20, 2024 6:57 am
Forum: General Discussion
Topic: Suggestion for Setting up a Mesh Network
Replies: 4
Views: 401

Re: Suggestion for Setting up a Mesh Network

We are trying to setup a mesh network of up to 40000 nodes at a time
40k, is that a typo?
by username
Tue Nov 19, 2024 5:25 am
Forum: General Discussion
Topic: Adding an External Pull-up Resistor to GPIO0
Replies: 3
Views: 949

Re: Adding an External Pull-up Resistor to GPIO0

In this case, would adding an external pull-up resistor to GPIO0 be helpful?
It can't hurt. But I doubt this will resolve anything. If you reset the device and it doesn't go into bootloader mode, I can't see how GPIO0 is the problem.
by username
Sat Nov 16, 2024 11:41 pm
Forum: General Discussion
Topic: Creating two webservers problem
Replies: 2
Views: 538

Re: Creating two webservers problem

Thank you so much!!!!!

Works now.
by username
Sat Nov 16, 2024 6:50 pm
Forum: General Discussion
Topic: Creating two webservers problem
Replies: 2
Views: 538

Creating two webservers problem

I want to create two webservers. One on port 80 and the other on port 8080. When I create one, it works. When I add the second it fails. Am I doing it wrong, or is the http_server not capable of doing more than one. static const char *TAG = "DualWebServer"; // Handler for requests to the server on p...
by username
Fri Nov 15, 2024 7:33 am
Forum: General Discussion
Topic: ESP_LOGx or printf
Replies: 2
Views: 482

Re: ESP_LOGx or printf

What ESP_IDF version are you using? I am on v5.3.1 and CONFIG_LOG_BUFFER_SIZE is not in there.
by username
Fri Nov 15, 2024 6:03 am
Forum: General Discussion
Topic: ESP_LOGx or printf
Replies: 2
Views: 482

ESP_LOGx or printf

Ran into a situation where ESP_LOGI would not always spit out to the console, typically when A/D value is above 1000. Yet when I replaced it with a printf it always does. So now this has me a bit concerned using it in other code that should some critical event happen that I need to see it using ESP_...
by username
Tue Nov 12, 2024 3:23 am
Forum: ESP-IDF
Topic: Ethernet Basic Example - W5500
Replies: 4
Views: 806

Re: Ethernet Basic Example - W5500

What S3 board are you using. does it have the W5500 on it or is it external to the S3 board ?
What pins are you using to connect to the W5500 ?
by username
Mon Nov 11, 2024 12:01 am
Forum: ESP-IDF
Topic: Create custom *.bin file name
Replies: 2
Views: 542

Re: Create custom *.bin file name

In mine i just have say this and it creates test.bin.
project(test)
by username
Sat Nov 09, 2024 5:27 am
Forum: General Discussion
Topic: help with using registers to chagne pin dirrections and states.
Replies: 12
Views: 2254

Re: help with using registers to chagne pin dirrections and states.

You dont have to re-write it. just pull the parts out you need. For example to set GPIO high and low // Set GPIO1 high GPIO.out_w1ts = ((uint32_t)1 << GPIO_NUM_1); // Set GPIO1 Low GPIO.out_w1tc = ((uint32_t)1 << GPIO_NUM_1); just keep in mind if the GPIOs are >=32 you need to do it differently // /...