Index
auto-plow
/
d399c5d
A wheelchair motor-propelled battery-powered ESP32-driven remote control snow plow.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
36
03 Dec 2018 00:25
d399c5d
Create `serial' function
joshuas3
1
10
0
N
Blob @
auto-plow
/
src
/
ard1
/
serial.cpp
text/plain
156 bytes
download raw
1
#include
"Arduino.h"
2
#include
"ard1.h"
3
#include
"serial.h"
4
5
void
serial
(
void
) {
6
if
(!
Serial
)
return
;
7
Serial
.
begin
(
BAUD_RATE
);
8
while
(!
Serial
)
9
;
10
}
11