gab27
October 25, 2018, 1:43pm
1
Hi,
I have not found this problem somewhere else.
I have an Arduino Zero, Arduino IDE1.8.7, Ubuntu 18.04.
void setup(){
Serial.begin(9600);
}
void loop() {
Serial.println("Hello");
}
This code does nothing. The monitor stays blank. I have the right port. Tested it with Blink led. This works. I have the same baud rate of 9600 also on the monitor. And it also works with the Arduino Uno.
Does someone knows what could be false?
Thanks
darrob
October 25, 2018, 2:01pm
2
Which port are you using on the Zero. The Native or the programming port.
If you're using the native port, you have to use SerialUSB.
Check out the Guide for more info. (read the entire thing )
BTW - The title of your thread says you're using a UNO. which one is it? Please fix your post/title to reflect which device you have
system
October 25, 2018, 2:03pm
3
The title says "Uno", the text says "zero"
AWOL:
The title says "Uno", the text says "zero"
Let's call the whole thing off
gab27
October 25, 2018, 2:17pm
5
Thanks darrob SerialUSB was the answer. That costs me two days ;D
SOLVED