Arduino-GPIO
General Purpose Input/Output (GPIO) library for Arduino
SoftwareSerial.ino
Go to the documentation of this file.
1 #include "GPIO.h"
2 #include "Software/Serial.h"
3 
5 
6 void setup()
7 {
8  // outs.begin(9600);
9  outs.begin(57600);
10  // outs.begin(114200);
11  // outs.begin(230400);
12  // outs.begin(250000);
13 }
14 
15 void loop()
16 {
17  outs.println(millis());
18  delay(10);
19 }
void begin(uint32_t baudrate)
Definition: Serial.h:50
void loop()
void setup()
Software::Serial< BOARD::D13 > outs