40k, is that a typo?We are trying to setup a mesh network of up to 40000 nodes at a time
Search found 536 matches
- 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
- 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
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.In this case, would adding an external pull-up resistor to GPIO0 be helpful?
- 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.
Works now.
- 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...
- 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.
- 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_...
- 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 ?
What pins are you using to connect to the W5500 ?
- 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)
project(test)
- 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 // /...
- Fri Nov 08, 2024 5:41 pm
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 2254