-
Follow the Sparkfun ESP8266 Thing Development Board Hookup Guide
- Introduction
- Hardware Overview
- Hardware Setup
- Setting Up Arduino
-
Get your ESP8266's MAC address - Source
#include <ESP8266WiFi.h> void setup(){ Serial.begin(115200); delay(500); Serial.println(); Serial.print("MAC: "); Serial.println(WiFi.macAddress()); } void loop(){}
- This will return the MAC Address of your ESP8266
- The MAC should start with 5C:CF:7F
- This will return the MAC Address of your ESP8266
-
Enter the MAC Address on http://netreg.clemson.edu
-
Make sure you set the wifi consts in your code and you should be good to go!
const char *ssid = "resmedianet"; const char *password = "tigerpaw";