Difference between revisions of "Adafruit HUZZAH ESP8266 breakout"

From ESE497 Wiki
Jump to navigationJump to search
Line 1: Line 1:
 
* Buy from AdaFruit (https://www.adafruit.com/products/2471)
 
* Buy from AdaFruit (https://www.adafruit.com/products/2471)
 
* Don't forget cable (https://www.adafruit.com/product/954)
 
* Don't forget cable (https://www.adafruit.com/product/954)
 +
* Follow instructions for "Installing with Boards Manager" to add support to the Arduino Environment for the ESP8266 chip (https://github.com/esp8266/Arduino)
 
* Overview doc (https://learn.adafruit.com/adafruit-huzzah-esp8266-breakout/overview)
 
* Overview doc (https://learn.adafruit.com/adafruit-huzzah-esp8266-breakout/overview)
* Follow instructions for adding support to the Arduino Environment for the ESP8266 chip (https://github.com/esp8266/Arduino)
 
 
* Connect USB Console cable to board (https://learn.adafruit.com/adafruit-huzzah-esp8266-breakout/using-arduino-ide)
 
* Connect USB Console cable to board (https://learn.adafruit.com/adafruit-huzzah-esp8266-breakout/using-arduino-ide)
 
* Remember, before every download you have to:
 
* Remember, before every download you have to:

Revision as of 21:03, 25 February 2016

 uint8_t macArray[6];
 WiFi.macAddress(macArray) ;
 for (int i=0;i<sizeof(macArray) ; i++) {
   Serial.print(macArray[i],HEX) ;
   if (i != sizeof(macArray)-1) {
     Serial.print(":") ;
   } else {
     Serial.println("");
   }
 }