Skip to content

Commit

Permalink
Adicionando exemplo de print
Browse files Browse the repository at this point in the history
  • Loading branch information
Rennan Felipe committed Dec 1, 2016
1 parent 6942ae9 commit c163aac
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions codeExamples/print.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//Isso é um comentário e o arduino vai ignorar ele!

//Configura o arduino: portas, serial etc:
void setup() {
//Configura a velocidade da seria(usb):
Serial.begin(9600);
}

void loop() {
//Exeplos de como mandar mensagens para o pc:
Serial.print("Estou na mesma linha!");
Serial.println("Hey, estou em uma linha nova!");
}

0 comments on commit c163aac

Please sign in to comment.