Index
auto-plow
/
b75b51a
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?
40
12 Jan 2019 19:10
83d2e4a
Updates
joshuas3
1
1
0
N
Blob @
auto-plow
/
src
/
ard1
/
reset.cpp
text/plain
143 bytes
download raw
1
#include
"Arduino.h"
2
#include
"ard1.h"
3
#include
"reset.h"
4
5
void
reset
(
void
) {
6
pinMode
(
PIN_RESET
,
OUTPUT
);
7
digitalWrite
(
PIN_RESET
,
HIGH
);
8
}
9