Search found 6 matches

by ESPBoards
Sat Nov 23, 2024 5:06 pm
Forum: General Discussion
Topic: i2c New Driver
Replies: 1
Views: 761

Re: i2c New Driver

Could be do to several things... 1. Glitches on I2C bus: Check pull-up resistors and try reducing bus speed (e.g., to 100kHz). 2. Master retransmissions: Ensure the master sends data only once and handles acknowledgments correctly. 3. Slave buffer issues: Clear the slave buffer after reading data. 4...
by ESPBoards
Sat Nov 23, 2024 4:59 pm
Forum: ESP IoT Solution
Topic: ESP32 CAM accessing ouside local network
Replies: 1
Views: 128

Re: ESP32 CAM accessing ouside local network

DuckDNS resolves your dynamic public IP into a fixed domain name (yourdomain.duckdns.org), but this only points to your router's public-facing IP, aka the Router itself, not the ESP32. To reach your ESP32, you need to tell the router to forward incoming requests on a specific port (e.g., 8080) to th...
by ESPBoards
Sat Nov 23, 2024 4:53 pm
Forum: ESP-IDF
Topic: Trying to install the IDE and can't load the tool set.v1
Replies: 4
Views: 382

Re: Trying to install the IDE and can't load the tool set.v1

Something looks corrupted, like tools.json file... Did you try removing the C:\Users\<YourUsername>\.espressif folder?
by ESPBoards
Sat Nov 23, 2024 4:23 pm
Forum: General Discussion
Topic: What bothers you the most when looking for ESP32 resources?
Replies: 0
Views: 116

What bothers you the most when looking for ESP32 resources?

I hate the there are tons of different ESP32 based boards, sometimes unnamed ones, etc., sometimes the pins are mapped weirdly and undocumented... But i guess that's what you get when the microcontroller is so cheap. And you cheap out on the Chinese clones of boards... What is your biggest frustrati...
by ESPBoards
Sat Nov 23, 2024 4:15 pm
Forum: Documentation
Topic: Launched: Comprehensive ESP32 Development Boards List with Pinout, Specs, and More!
Replies: 0
Views: 175

Launched: Comprehensive ESP32 Development Boards List with Pinout, Specs, and More!

Hello All, I’m excited to share something I’ve been working on for a while – a complete list of ESP32 development boards with pinouts, technical specs, and other details! If you’ve ever felt overwhelmed trying to figure out which ESP32 board to use, or struggled with finding a clear pinout diagram, ...
by ESPBoards
Wed Jan 17, 2024 9:10 pm
Forum: ESP32 Arduino
Topic: Hello ESP32 how warm is it to you?
Replies: 4
Views: 13155

Re: Hello ESP32 how warm is it to you?

Depends on the ESP32 version (SoC) you are using, the 53 degrees output might just mean your ESP32 doesn’t have the internal temperature sensor. Anyways, if you are using Arduino for programming, the legacy temperature sensor driver could work: https://github.com/espressif/esp-idf/blob/master/compon...