Search found 7 matches

by Seeker
Thu Jan 26, 2023 2:09 pm
Forum: General Discussion
Topic: ESP-32 keeps resetting
Replies: 12
Views: 7990

Re: ESP-32 keeps resetting

When I've seen this issue it has always been caused by 'code run amuck', ie bad pointer, array out of bounds, trying to serial print a float as a char etc etc. Go back to KNOWN good code with KNOWN good data and troubleshoot forward.
by Seeker
Wed Jan 25, 2023 5:49 pm
Forum: General Discussion
Topic: Can we use the ESP32 series for Matter standard(newly total protocol for IOT)
Replies: 2
Views: 1346

Re: Can we use the ESP32 series for Matter standard(newly total protocol for IOT)

Went to have a look at the 'Matter Standard'. Seems one must 'sell their soul' to look at the details of the standard. OP wanna show us a copy of the details ?
by Seeker
Wed Jan 25, 2023 4:42 am
Forum: General Discussion
Topic: No activity on serial monitor
Replies: 1
Views: 1007

Re: No activity on serial monitor

OK. Digikey, where I bought the part, sorted it out for me on a post I made after 9pm. Turns out programming is on one port and serial output is on the other unlike another part I've been using (Teyleten Robot ESP32-S3-DevKitC-1-N8R2) that has both on the same connection. Seems to me like someone at...
by Seeker
Tue Jan 24, 2023 5:25 am
Forum: General Discussion
Topic: No activity on serial monitor
Replies: 1
Views: 1007

No activity on serial monitor

ESP32-S3-DevKitC-1U on Arduino IDE. Load program OK but never any serial output. Simple program, just Serial.begin(115200) and a delay(1000); in setup() then a simple Serial.println("Test"); in loop(). I've tried 3 known good cables, various boot and reset button sequences all with no joy. What is t...
by Seeker
Mon Nov 22, 2021 7:07 pm
Forum: General Discussion
Topic: This forum
Replies: 1
Views: 2957

This forum

Seems like a nice site, lots of traffic , many posted questions, many visits to each, BUT very little if any discussions on any of them. Many threads have hundreds of visits and most with less than half a dozen replies/answers. Many with zero replies. Why ??
by Seeker
Fri Nov 12, 2021 5:40 pm
Forum: General Discussion
Topic: Problems setting CPU speed
Replies: 0
Views: 1376

Problems setting CPU speed

Trying some power reduced things out and ran into an issue, ESP32 WROOM using cmd setCpuFrequencyMhz(240); & getCpuFrequencyMhz(); . Worked a few times trying 10, 40, 80, 240. Then stopped and anytime I execute setCpuFrequencyMhz(240); with any value other than 240 ( ie setCpuFrequencyMhz(80); ) the...