What Will I Learn?
- You will learn to create WLAN parameters.
- You will learn to create Carriots parameters.
Requirements
- Codes in first lesson
- Codes in second lesson
- Arduino UNO
- Arduino IDE
Difficulty
- Intermediate
Description
In this lesson we will create the parameters necessary for communication. We have 6 parameters in total. Three of these will be required for the WLAN and three will be required for the Carriots. We define parameters with the define command as in the video.
CODES
#define WLAN_SSID "yourSSID"
#define WLAN_PASS "yourPassword"
#define WLAN_SECURITY WLAN_SEC_WPA2
#define WEBSITE "api.carriots.com"
#define API_KEY "yourapiKey"
#define DEVICE "YourDeviceName@youruserName"
uint32_t ip;
Video Tutorial
Curriculum
Posted on Utopian.io - Rewarding Open Source Contributors