Search found 12 matches
- Sun Nov 03, 2024 12:11 pm
- Forum: ESP32 Arduino
- Topic: Serial monitor strange behavior started after recent updates
- Replies: 2
- Views: 1020
Re: Serial monitor strange behavior started after recent updates
there have been problems with some libraries with migration from ESP32 Arduino Core 2.x to 3.0 https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html you have probably been updated to Core V3.0.7 using Tools>Board>Board Manger try reinstalling V2.0.17 if your pr...
- Tue Oct 29, 2024 9:52 am
- Forum: ESP32 Arduino
- Topic: need help with esp32-wroom-S nodemcu with ads1252 module
- Replies: 2
- Views: 914
Re: need help with esp32-wroom-S nodemcu with ads1252 module
try a web search for ADS1252 Arduino - you will get plenty of links
in particular https://github.com/aeonSolutions/AeonLa ... no-Library
in particular https://github.com/aeonSolutions/AeonLa ... no-Library
- Sun Oct 27, 2024 9:20 am
- Forum: ESP32 Arduino
- Topic: UDA1334 i2s DAC with ESP32 - sketch too big
- Replies: 1
- Views: 847
Re: UDA1334 i2s DAC with ESP32 - sketch too big
try changing the Partition scheme
click Tools>Board select ESP32 Dev Board under Partition Scheme select Huge App
click Tools>Board select ESP32 Dev Board under Partition Scheme select Huge App
- Sat Oct 26, 2024 11:16 am
- Forum: Hardware
- Topic: in search of a breakout board
- Replies: 5
- Views: 1311
Re: in search of a breakout board
there are modules with ESP32 and Ethernet on board, e.g. the WT32-eth01https://github.com/egnor/wt32-eth01, the ESP32-Ethernet-Kit v1.2 https://docs.espressif.com/projects/esp ... guide.html, etc
- Sun Oct 20, 2024 5:02 am
- Forum: ESP-IDF
- Topic: Is there a way to get the number assigned to a COM port emulated by CDC?
- Replies: 11
- Views: 2594
Re: Is there a way to get the number assigned to a COM port emulated by CDC?
what software are you running on the PC?
how do you tell it which COM port to use?
how do you tell it which COM port to use?
- Sat Oct 19, 2024 12:47 pm
- Forum: ESP-IDF
- Topic: Is there a way to get the number assigned to a COM port emulated by CDC?
- Replies: 11
- Views: 2594
Re: Is there a way to get the number assigned to a COM port emulated by CDC?
when connecting microcontrollers to PCs where the Windows COM port or Linux /dev/ttyUSB* port is unknown I usually have the host software (implemented in C++, C#, Java, etc) cycle thru the connected serial ports transmitting a prompt (e.g. a "?") to each device in turn the target device would be pro...
- Thu Oct 17, 2024 11:48 am
- Forum: ESP-IDF
- Topic: ESP32 RMT " sync manager not supported"
- Replies: 2
- Views: 616
Re: ESP32 RMT " sync manager not supported"
Thanks for confirming that the ESP32 does not support sync manager.
thought it worth checking in case it was something in my code
thought it worth checking in case it was something in my code
- Thu Oct 17, 2024 8:48 am
- Forum: ESP-IDF
- Topic: ESP32 RMT " sync manager not supported"
- Replies: 2
- Views: 616
ESP32 RMT " sync manager not supported"
following on from post "ESP32S3 RMT "no free tx channels" opening third channel" https://esp32.com/viewtopic.php?f=13&t=42301 where a solution was found attempting to run code on an ESP32 with esp-idf-v5.3.1 #include <stdio.h> #include <stdbool.h> #include <unistd.h> // ESP32 RMT 1KHz three phase sq...
- Wed Oct 16, 2024 4:36 pm
- Forum: ESP-IDF
- Topic: ESP32S3 RMT "no free tx channels" opening third channel
- Replies: 4
- Views: 1205
Re: ESP32S3 RMT "no free tx channels" opening third channel
thanks, that fixed it! updated code as suggested and in addition fixed timing of pulsePattern3 #include <stdio.h> #include <stdbool.h> #include <unistd.h> // ESP32S3 RMT 1KHz three phase square wave sync test #include "driver/rmt_tx.h" void app_main(void) { // while (true) { // printf("Hello from ap...
- Tue Oct 15, 2024 9:45 am
- Forum: ESP32 Arduino
- Topic: ESP32-S3 crash writing Neopixel LED
- Replies: 2
- Views: 775
Re: ESP32-S3 crash writing Neopixel LED
if you are using the Adafruit_NeoPixel library it has problems with ESP32 Arduino Core Version 3 when there are more than 85 LEDs - I use ESP32 core V 2.0.17 for such projects