COM port
Posted: Thu Nov 16, 2023 10:30 pm
I am completely new to programming hardware and just bought an esp32 Nodemcu. I'm trying to do my first test and to get it working with the arduino ide.
This is what I'm trying to do:
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println("Hello");
delay(500);
}
I the tutorial the esp output is read through the com port but in my arduino ide there is no com port only a /dev/tttyUSB0
With dmesg I see -> usb 1-2.3: ch341-uart converter now attached to ttyUSB0 and if I tail the ttyUSB0 something is happening there in increments that I assume is the loop running but I only see weird characters.
How can I get the com port to work? I find a lot of material online but nothing that seem to fix this for me.
Thanks
This is what I'm trying to do:
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println("Hello");
delay(500);
}
I the tutorial the esp output is read through the com port but in my arduino ide there is no com port only a /dev/tttyUSB0
With dmesg I see -> usb 1-2.3: ch341-uart converter now attached to ttyUSB0 and if I tail the ttyUSB0 something is happening there in increments that I assume is the loop running but I only see weird characters.
How can I get the com port to work? I find a lot of material online but nothing that seem to fix this for me.
Thanks