Index
auto-plow
/
f9654fb
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?
38
05 Dec 2018 19:35
ffa80fd
Input based events
joshuas3
1
3
0
N
Blob @
auto-plow
/
src
/
ard1
/
serial.h
text/plain
154 bytes
download raw
1
#ifndef __SERIAL_H__
2
#define __SERIAL_H__ 1
3
4
typedef
void
(*
callback
)(
String
);
5
void
serial
(
void
);
6
void
input
(
callback
);
7
void
input_update
(
void
);
8
9
#endif
10