Search found 17 matches

by mgsecord62
Sat Jan 06, 2024 6:49 pm
Forum: ESP-BOX
Topic: Development using Arduino IDE
Replies: 4
Views: 12636

Re: Development using Arduino IDE

You should be able to find what you need about the hardware at: https://github.com/espressif/esp-box/blob/master/docs/hardware_overview/esp32_s3_box_3/hardware_overview_for_box_3.md There is a sensor table that describes the parts being used and for more detail there are links to the schematics on t...
by mgsecord62
Thu Oct 26, 2023 6:46 pm
Forum: Hardware
Topic: Capacitor has no effect
Replies: 7
Views: 1689

Re: Capacitor has no effect

I assume that you have looked at the battery voltage and it stays above 3.3 + 0.36(HT7833 typical drop out voltage)= 3.66 volts during this time.
The HT7833 has a max drop out voltage of 0.5 volts at 3.3 volt output.
by mgsecord62
Sat Mar 25, 2023 5:49 pm
Forum: General Discussion
Topic: Can I still flash wemos/lolin ESP32 via pin headers if USB is destroyed?
Replies: 15
Views: 7730

Re: Can I still flash wemos/lolin ESP32 via pin headers if USB is destroyed?

A couple of thoughts. Have you removed the USB to serial chip? The damaged USB to Serial chip could be driving the pins on the ESP. Maybe the pins on the ESP were also damaged and you will not be able to program the ESP.
by mgsecord62
Thu Jan 26, 2023 8:24 pm
Forum: General Discussion
Topic: ESP-32 keeps resetting
Replies: 12
Views: 5185

Re: ESP-32 keeps resetting

Have you tried a different esp32-wroom-32d module?
by mgsecord62
Fri Apr 01, 2022 5:49 pm
Forum: ESP-IDF
Topic: Preventing a variable from changing in the long run?
Replies: 6
Views: 2931

Re: Preventing a variable from changing in the long run?

I believe that you need to use a int64_t type for your variable. A (signed) long variable will overflow at ~2147 seconds.
by mgsecord62
Fri Dec 03, 2021 6:51 pm
Forum: ESP-IDF
Topic: how do I change one single bit?
Replies: 2
Views: 4075

Re: how do I change one single bit?

In the past I have used the the bitwise OR, AND or XOR operators (standard C language). You can also create a structure. More details can be found at https://www.codesdope.com/blog/article/ ... -bit-in-c/.
by mgsecord62
Thu Oct 28, 2021 8:26 pm
Forum: ESP32 Arduino
Topic: display time since boot
Replies: 2
Views: 5804

Re: display time since boot

It looks like you assigned the variable microSecondsSinceBoot to an signed 32 bit variable and it rolls over to a negative value at 2^31 microseconds or ~36 minutes. I believe that the esp_timer_get_time() function returns a signed 64 bit value (int64_t) so I would declare the microSecondsSinceBoot ...
by mgsecord62
Fri Oct 08, 2021 6:16 pm
Forum: General Discussion
Topic: Deep sleep not working with ESP BLE MESH
Replies: 1
Views: 1961

Re: Deep sleep not working with ESP BLE MESH

Are there other devices like a LDO regulator or USB to Serial chip on your ESP32 board that could be consuming power?
by mgsecord62
Fri Jul 09, 2021 6:37 pm
Forum: Report Bugs
Topic: Arduino IDE Serial Monitor Error Message
Replies: 2
Views: 11570

Re: Arduino IDE Serial Monitor Error Message

I believe you need a Serial.begin(115200); in the setup section. Replace the 115200 with a different rate if you like.