-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Gabriel Ian Escober Abel edited this page Jun 12, 2019
·
3 revisions
Install Arduino Sketch if it is not already installed:
- Arduino Sketch - Any version, preferably the latest.
- Clone the repository or download as zip.
git clone https://github.com/IanEscober/WasteMan-Driver.git
- Open up Arduino Sketch and navigate to
Sketch > Include Library > Add .ZIP Library
. Select the zip file in the root of the directoryWasteMan-Driver-Libs.zip
. - Navigate to where Arduino libraries are installed, usually
C:\Users\{user}\Documents\Arduino\libraries
and open theSecrets.h
file from theWasteMan-Driver-Libs
folder. - Edit the
Secrets.h
file with your values and save it. Below is a sample configuration:
struct Secrets {
const char* APN = "my_telecom_apn";
const char* BROKER_HOST= "my_broker_host";
const int BROKER_PORT= 1234;
const char* BROKER_USERNAME= "my_broker_username";
const char* BROKER_PASSWORD= "my_broker_password";
};
- Verify the sketches and upload to your respective Arduino boards.