Skip to main content

Hello World


#include <Arduino.h>

void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello World");
}

void loop() {
// put your main code here, to run repeatedly:

}