Search found 19 matches

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

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

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

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

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

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

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

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

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

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