Hi,
I'm using Arduino IDE and 'ESP32-C3-WROOM-02-N4.
I can't get UART1 no matter which pins I used.
Anyone managed to get it to work on Arduino IDE?
Search found 10 matches
- Mon Jan 02, 2023 4:09 am
- Forum: ESP32 Arduino
- Topic: ESP32-C3 serial1 not working
- Replies: 5
- Views: 15852
- Mon Jan 02, 2023 4:06 am
- Forum: General Discussion
- Topic: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
- Replies: 7
- Views: 8543
Re: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
hi,
thanks for the link.
I am able to flash the esp32-c3, but not able to get data from uart1.
NO matter which free pins I used for the hardware serial, i don't get any response.
I can see the data from uart0 (which are shown on the Arduino serial output console).
thanks for the link.
I am able to flash the esp32-c3, but not able to get data from uart1.
NO matter which free pins I used for the hardware serial, i don't get any response.
I can see the data from uart0 (which are shown on the Arduino serial output console).
- Fri Dec 30, 2022 10:09 pm
- Forum: General Discussion
- Topic: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
- Replies: 7
- Views: 8543
Re: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
Thanks.
Have tried to use UART1 with all the GPIO pins, but nothing is coming back (tried the code on ESP32 Wroom and it was fine).
Am using ESP32-C3-WROOM-02-N4.
Have tried to use UART1 with all the GPIO pins, but nothing is coming back (tried the code on ESP32 Wroom and it was fine).
Am using ESP32-C3-WROOM-02-N4.
- Fri Dec 30, 2022 10:05 pm
- Forum: General Discussion
- Topic: ESP32-C3 menuconfig. No option for console output on UART1
- Replies: 5
- Views: 4092
Re: ESP32-C3 menuconfig. No option for console output on UART1
following this thread.
I am trying to get softserial to work on esp32-c3. Not sure if you've tried this before? Did you manage to get it to work?
I am trying to get softserial to work on esp32-c3. Not sure if you've tried this before? Did you manage to get it to work?
- Thu Dec 29, 2022 9:52 am
- Forum: General Discussion
- Topic: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
- Replies: 7
- Views: 8543
Re: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
Hi,
The UART1 (hardware UART) is not exposed on the pin out, so I can't use it.
Will have to use ESPSoftwareSerial to get data thru UART with another module.
Anyone got experience with ESPSoftwareSerial on ESP32-C3? It works well?
The UART1 (hardware UART) is not exposed on the pin out, so I can't use it.
Will have to use ESPSoftwareSerial to get data thru UART with another module.
Anyone got experience with ESPSoftwareSerial on ESP32-C3? It works well?
- Thu Dec 29, 2022 8:23 am
- Forum: General Discussion
- Topic: using the 2nd uart or uart1 on esp32-c3
- Replies: 1
- Views: 6756
using the 2nd uart or uart1 on esp32-c3
Hi, The ESP32-C3 has 2 hardware uart. How do I use the 2nd uart? I've tried // ESP32 C3 SERIAL1 (second UART) HardwareSerial mySerial1(1); int rxPin=4; int txPin=5; void setup() { Serial.begin(115200); pinMode(txPin,OUTPUT); pinMode(rxPin,INPUT); mySerial1.begin(115200, SERIAL_8N1, rxPin, txPin); } ...
- Thu Dec 29, 2022 7:36 am
- Forum: General Discussion
- Topic: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
- Replies: 7
- Views: 8543
Re: How to use UART on ESP32-C3 devkitc-02 to read UART ultrasonic sensor
hi, I am developing a software in Arduino IDE for ESP32-C3. I want to use UART1 to communicate with another device using AT command. I've tried using SoftwareSerial and HardwareSerial but can't get it to work. I just need to be able to send "AT?" and get a "OK" as reply. Any help? Codes: // ESP32 C3...
- Wed Aug 10, 2022 12:13 pm
- Forum: ESP IoT Solution
- Topic: ESP32 BLE beacon compatibility
- Replies: 3
- Views: 4897
Re: ESP32 BLE beacon compatibility
Hi,
Can your phones detect those BLE devices?
Can your phones detect those BLE devices?
- Wed Aug 10, 2022 12:11 pm
- Forum: Documentation
- Topic: ESP32-C3 Datasheet Pulse Counter
- Replies: 3
- Views: 7222
Re: ESP32-C3 Datasheet Pulse Counter
Hi,
I'm not clear. Is there a pulse counter or not?
I'm not clear. Is there a pulse counter or not?
- Wed Aug 10, 2022 12:09 pm
- Forum: Sample Code
- Topic: Ultrasonic sensor node ESP32 - FreeRTOS example ESP-IDF / Arduino Core
- Replies: 3
- Views: 12769