Index
auto-plow
/
ab6d622
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?
26
01 Dec 2018 22:37
ab6d622
Move some Arduino variables to their own header file
Joshua
1
11
0
N
Blob @
auto-plow
/
src
/
ard1
/
ard1.h
text/plain
151 bytes
download raw
1
#ifndef __ARD1_H__
2
#define __ARD1_H__ 1
3
4
#define PIN 13
5
#define BAUD_RATE 9600
6
#define ON 0
7
#define OFF 1
8
9
void
(*
reset
) (
void
) =
0
;
10
11
#endif
12