Index
auto-plow
/
52ee505
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?
48
19 Jan 2019 18:20
8084ccd
Updates
joshuas3
1
0
21
N
Blob @
auto-plow
/
src
/
ard1
/
serial.cpp
text/plain
157 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
12