arduino uno hello world

Solutions on MaxInterview for arduino uno hello world by the best coders in the world

showing results for - "arduino uno hello world"
Julia
28 Mar 2020
1/*
2Plug you arduino board,
3upload the code,
4run monitor ( ctrl+shift+M )
5*/
6void setup() {
7  Serial.begin(9600);
8  pinMode(13, OUTPUT); // on led in pin 13
9  Serial.print('Hello World');//show text ini monitor arduino IDE
10}