Index

auto-plow / fc04b5f

A wheelchair motor-propelled battery-powered ESP32-driven remote control snow plow.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
4819 Jan 2019 18:208084ccdUpdatesjoshuas31021N

Blob @ auto-plow / src / ard1 / serial.cpp

text/plain157 bytesdownload raw
1#include "Arduino.h"
2#include "ard1.h"
3#include "serial.h"
4
5void serial(void) {
6 if (!Serial) return;
7 Serial.begin(BAUD_RATE);
8 while (!Serial)
9 ;
10}
11
12