Search found 20 matches

by mgsecord62
Mon Nov 11, 2024 8:34 pm
Forum: Hardware
Topic: ESP32-S3 RTC IO input current
Replies: 2
Views: 566

Re: ESP32-S3 RTC IO input current

If your input impedance on the meter you are using to measure the 3 volts is 10 MEG that is what the current draw calculates to be (3.3/11Meg). 10 Meg is pretty typical input impedance for DMMs.
by mgsecord62
Sat Jun 15, 2024 5:41 pm
Forum: ESP-BOX
Topic: BOX 3 w/ Home Assistant Firmware 5.5 - No Audio
Replies: 2
Views: 5688

Re: BOX 3 w/ Home Assistant Firmware 5.5 - No Audio

I have been using the following for one of my ESP32-S3-Box-3. It works great and you can adjust the level of the volume. You will probably want to leave the volume at max because of the puny speaker in the ESP32-S3-Box-3. It is very easy to install with the WEB installer. https://github.com/BigBobba...
by mgsecord62
Sat Jun 01, 2024 5:40 pm
Forum: ESP-IDF
Topic: NimBLE Bluetooth SPP Client Example Problem
Replies: 3
Views: 1349

Re: NimBLE Bluetooth SPP Client Example Problem

The file can be found at examples/bluetooth/nimble/common/nimble_central_utils/esp_central.h
by mgsecord62
Sat Jan 06, 2024 6:49 pm
Forum: ESP-BOX
Topic: Development using Arduino IDE
Replies: 4
Views: 20473

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: 3427

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: 11135

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: 9450

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: 4403

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: 5225

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/.