Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void setup() {
- //Initialize serial and wait for port to open:
- Serial.begin(9600);
- while (!Serial) {
- ; // wait for serial port to connect. Needed for native USB port only
- }
- }
- void loop() {
- Serial.println("Hola mundo!");
- // Serial.print('a');
- delay(500);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement