Hi Martin, Hi Bredan
I've already thought about something like that.
Get a name string...
Perhaps also a string for build number and date/time. Would be easy to send or display two strings.
Demo:
Search found 979 matches
- Thu Aug 28, 2025 1:52 pm
- Forum: Feature Requests
- Topic: Get Source Project Filename/Date/Time as String
- Replies: 4
- Views: 165
- Thu Aug 28, 2025 11:37 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 7
- Views: 335
Re: ESP32 UART-USB Brige How to use
Hi Martin I understand there are two ways to use USB: as very fast USB OTG and with the built-in bridge. I have tried both, but without success. I'll take a closer look at it. The ESP32 S3 can be easily programmed with Flowcode. I will use the small, inexpensive Seed and the Atom S3 display. I have ...
- Wed Aug 27, 2025 9:42 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 7
- Views: 335
Re: ESP32 UART-USB Brige How to use
Hi Martin
I am not yet able to establish a connection between the ESP32-S3 and the PC.
However, I have more information on this.
https://github.com/espressif/esp-usb-bridge
I am not yet able to establish a connection between the ESP32-S3 and the PC.
However, I have more information on this.
https://github.com/espressif/esp-usb-bridge
- Fri Aug 22, 2025 11:31 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 7
- Views: 335
Re: ESP32 UART-USB Brige How to use
Hi Martin Yes, right now again. If the board has a UART to USB bridge (for example, CH340C), it works very well. I have already done many projects with it, and that work very well with the Appdevelopper. Now the problem: Many new supermini boards with ESP32-C3, ESP32-C6, ESP32-S3 no longer have an a...
- Fri Aug 22, 2025 9:27 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 7
- Views: 335
ESP32 UART-USB Brige How to use
Hi to All I use a Atom S3 with a display. It's working nice with an extern AD converter and shows the values on display. But I can not send the values to the App-developper I found a help in the internet, there is an intern UART-USB Brige. How can I use it? Select UART0. Enter the default pins of th...
- Mon Aug 18, 2025 2:31 pm
- Forum: Projects - Embedded
- Topic: UART Output is limiting to 20 Characters
- Replies: 6
- Views: 687
Re: UART Output is limiting to 20 Characters
Hi jay_dee
Sorry, my help was wrong. I didn't notice a line.
I think you're doing everything right. Maybe you can split it into two strings as a test.
Sorry, my help was wrong. I didn't notice a line.
I think you're doing everything right. Maybe you can split it into two strings as a test.
- Mon Aug 18, 2025 1:46 pm
- Forum: Projects - Embedded
- Topic: UART Output is limiting to 20 Characters
- Replies: 6
- Views: 687
Re: UART Output is limiting to 20 Characters
Hi jay_dee
one question:
Do the 4 strings have to add up to 30 instead of 20?
one question:
Do the 4 strings have to add up to 30 instead of 20?
- Thu Aug 14, 2025 4:44 pm
- Forum: General
- Topic: ESP32 C3 UART USB problem
- Replies: 6
- Views: 7113
Re: ESP32 C3 UART USB problem
Hi Marrtin No stream of debug info to USB possible... I can't use USB with Atom S3 with display either. The Pin's go direct from ESP32 to USB pin A USB component would be useful for transferring data. I don't have any options with Bluetooth either. 2025-08-14_17-30-56.PNG 2025-08-14_17-20-41.PNG
- Wed Aug 13, 2025 3:18 pm
- Forum: General
- Topic: ESP32 C3 UART USB problem
- Replies: 6
- Views: 7113
Re: ESP32 C3 UART USB problem
Hi Ben
How can I use the standard USB component?
How can I use the standard USB component?
- Wed Aug 13, 2025 1:49 pm
- Forum: General
- Topic: ESP32 How to reset watchdog timer (WDT)
- Replies: 7
- Views: 2849
Re: ESP32 How to reset watchdog timer (WDT)
Hi Martin A Delay less than 10mSec does not reset the WDT! I testet the commands for reset WDT that work. This Both command . 1. Delay 10mSec is clear, it makes a 10mSec break(where can cause problems) 2. vTaskDelay(1); it makes a 6.5mSec break(where can cause problems) in C-Code vTaskDelay(1); But ...