ashokgowtham / remote-car-firmware

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dev environment

To install dependencies

pio lib install "arkhipenko/TaskScheduler"
pio lib install "knolleary/PubSubClient"
pio lib install "bblanchon/ArduinoJson"

######When compiling the code,

Remember to fill in the wifi SSID and password in the src/RemoteCar.ino Basically look for the following and update accordingly.

const char* ssid = FILL_IN_SSID_STRING;
const char* password = FILL_IN_PASSWORD_STRING;

####General PlatformIO Commands

Access device serial console:

pio device monitor

Compile and upload firmware to device.

pio run --target=upload

Just compile firmware but not upload

pio run

About


Languages

Language:JavaScript 63.9%Language:C++ 36.1%