forked from CodeForCuritiba/WeAreAllSmart
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rennan Felipe
committed
Dec 1, 2016
1 parent
6942ae9
commit c163aac
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!"); | ||
} |