Search found 20 matches
- Mon Nov 11, 2024 8:34 pm
- Forum: Hardware
- Topic: ESP32-S3 RTC IO input current
- Replies: 2
- Views: 1091
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.
- Sat Jun 15, 2024 5:41 pm
- Forum: ESP-BOX
- Topic: BOX 3 w/ Home Assistant Firmware 5.5 - No Audio
- Replies: 2
- Views: 12885
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...
- Sat Jun 01, 2024 5:40 pm
- Forum: ESP-IDF
- Topic: NimBLE Bluetooth SPP Client Example Problem
- Replies: 3
- Views: 1892
Re: NimBLE Bluetooth SPP Client Example Problem
The file can be found at examples/bluetooth/nimble/common/nimble_central_utils/esp_central.h
- Sat Jan 06, 2024 6:49 pm
- Forum: ESP-BOX
- Topic: Development using Arduino IDE
- Replies: 4
- Views: 28101
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...
- Thu Oct 26, 2023 6:46 pm
- Forum: Hardware
- Topic: Capacitor has no effect
- Replies: 7
- Views: 4194
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.
The HT7833 has a max drop out voltage of 0.5 volts at 3.3 volt output.
- 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: 12311
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.
- Thu Jan 26, 2023 8:24 pm
- Forum: General Discussion
- Topic: ESP-32 keeps resetting
- Replies: 12
- Views: 11150
Re: ESP-32 keeps resetting
Have you tried a different esp32-wroom-32d module?
- Fri Apr 01, 2022 5:49 pm
- Forum: ESP-IDF
- Topic: Preventing a variable from changing in the long run?
- Replies: 6
- Views: 4945
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.
- Tue Jan 25, 2022 8:14 pm
- Forum: Showcase
- Topic: Scrolling current & voltage monitor using websocket and chartjs
- Replies: 3
- Views: 11076
Re: Scrolling current & voltage monitor using websocket and chartjs
Very nice project!! ![Very Happy :D](./images/smilies/icon_e_biggrin.gif)
![Very Happy :D](./images/smilies/icon_e_biggrin.gif)
- Fri Dec 03, 2021 6:51 pm
- Forum: ESP-IDF
- Topic: how do I change one single bit?
- Replies: 2
- Views: 5688
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/.