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