ArduinoA
Arduinoβ€’2mo ago
Maverick

Try this. ```c++ void setup() { Serial.begin(115200); } void loop() { Serial.println("Testing");

Try this.
c++
void setup() {
  Serial.begin(115200);
}
void loop() {
  Serial.println("Testing");
  delay(1000);
}
Was this page helpful?