Search found 38 matches
- Sun Mar 03, 2024 3:14 am
- Forum: Hardware
- Topic: Why does ESP32-LyraT-Mini V1.2 use an external ADC for the microphone when ADC is already available in Audio Codec?
- Replies: 1
- Views: 1531
Re: Why does ESP32-LyraT-Mini V1.2 use an external ADC for the microphone when ADC is already available in Audio Codec?
Same confusion I am also facing. Is anyone know?
- Sun Mar 03, 2024 3:10 am
- Forum: ESP-ADF
- Topic: Why LyraT mini has ES8311 and ES7243 both?
- Replies: 0
- Views: 4488
Why LyraT mini has ES8311 and ES7243 both?
ES8311 has ADC for MIC and DAC for speaker. So why two separate chip used in LyraT mini for ADC and DAC? Is it possible to use ES8311 alone for both the purpose? If Possible what changes I need to do in my below code block? #define ES7243_MCLK_GPIO I2S0_MCLK #define ES8311_MCLK_SOURCE 0 /* 0 From MC...
- Thu Nov 30, 2023 7:20 am
- Forum: ESP-IDF
- Topic: One question for using external flash?
- Replies: 1
- Views: 1570
One question for using external flash?
I am using external nor flash with ESP32 using spi communication and have only 1 mosi and 1 miso pin so Which mode to used for reading from SPI flash SPI_FLASH_DIO or SPI_FLASH_FASTRD? And I have two functions in my code which are static const esp_partition_t *add_partition(esp_flash_t *flash, const...
- Wed Aug 09, 2023 6:35 am
- Forum: ESP-IDF
- Topic: Is it possible to connect muliple esp32 using BUS Topology with ethernet cable and communicate with each other?
- Replies: 0
- Views: 1153
Is it possible to connect muliple esp32 using BUS Topology with ethernet cable and communicate with each other?
I have multiple esp32 base devices. I want is to connect them in bus topology using ethernet cable and communicate with one HUB device. and yes also PoE.
So is it possible?
So is it possible?
- Thu May 25, 2023 5:13 am
- Forum: ESP-IDF
- Topic: How to switch ESP32 connected network?
- Replies: 3
- Views: 1986
Re: How to switch ESP32 connected network?
So flow is my esp32 connected with network.
then I am disconnecting is with esp_wifi_disconnect()
then setting new wifi router configuration using esp_wifi_set_config()
then esp_wifi_connect();
in monitor is showing finding connecting and again connect with last wifi. not connecting with new wifi.
then I am disconnecting is with esp_wifi_disconnect()
then setting new wifi router configuration using esp_wifi_set_config()
then esp_wifi_connect();
in monitor is showing finding connecting and again connect with last wifi. not connecting with new wifi.
- Tue May 23, 2023 12:15 pm
- Forum: ESP-IDF
- Topic: How to switch ESP32 connected network?
- Replies: 3
- Views: 1986
Re: How to switch ESP32 connected network?
Hello anyone? If you don't get I can explain
- Thu May 18, 2023 1:45 pm
- Forum: ESP-IDF
- Topic: How to switch ESP32 connected network?
- Replies: 3
- Views: 1986
How to switch ESP32 connected network?
Scene with me is my esp32 is connected with first SSID and then I will disconnect it and try to connect it with other networks so it is showing connection process log again connet with first SSID network, not switching to new network why? and how can I do it?
- Mon May 15, 2023 6:20 am
- Forum: ESP-IDF
- Topic: Size of tasks control blocks (TCB)
- Replies: 2
- Views: 2501
Re: Size of tasks control blocks (TCB)
Hey did find any solution?
- Fri Dec 30, 2022 12:38 pm
- Forum: ESP-IDF
- Topic: kconfig tutorial
- Replies: 3
- Views: 8235
Re: kconfig tutorial
Hello,
Look into this blog for some info about kconfig.
https://medium.com/@bhautik.markeye/esp ... 8f81b8d0d8
Look into this blog for some info about kconfig.
https://medium.com/@bhautik.markeye/esp ... 8f81b8d0d8
- Wed Dec 14, 2022 11:26 am
- Forum: ESP-IDF
- Topic: Software factory reset
- Replies: 1
- Views: 1928
Software factory reset
Hello, I am writing factory reset functionality using the software. and below is my code. esp_partition_iterator_t pi = esp_partition_find( ESP_PARTITION_TYPE_APP, ESP_PARTITION_SUBTYPE_APP_FACTORY, NULL); if (pi != NULL) { const esp_partition_t *factory = esp_partition_get(pi); esp_partition_iterat...