Arduino uno Hallo Welt
/*
Plug you arduino board,
upload the code,
run monitor ( ctrl+shift+M )
*/
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT); // on led in pin 13
Serial.print('Hello World');//show text ini monitor arduino IDE
}
Ganz404