mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-14 20:36:03 +01:00
13 lines
183 B
C++
13 lines
183 B
C++
#include <SoftwareSerial.h>
|
|
|
|
SoftwareSerial mySerial(3, 4); // RX, TX
|
|
|
|
void setup() {
|
|
mySerial.begin(9600);
|
|
}
|
|
|
|
void loop() {
|
|
mySerial.println(millis());
|
|
delay(1000);
|
|
}
|