Code: Select all
void setup() {
Serial.begin(115200);
Serial.print("Hello, World");
}
void loop() {
}
Code: Select all
void setup() {
Serial.begin(115200);
Serial.print("Hello, World");
}
void loop() {
}
Code: Select all
void setup() {
Serial.begin(115200);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB
}
Serial.print("Hello, World");
}
void loop() {
}
Code: Select all
While(!Serial){};
Code: Select all
void setup() {
Serial.begin(115200);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB
}
Serial.print("Hello, World");
}
void loop() {
}
Fine. The while was the solution?feel wrote: Sat Jul 10, 2021 6:35 am Thanks it worked! i just try to print something in setup() in my project but i found out its not working.
thank you for the support guys