Difference between revisions of "Adafruit HUZZAH ESP8266 breakout"

From ESE497 Wiki
Jump to navigationJump to search
Line 30: Line 30:
 
     }
 
     }
 
   }
 
   }
* UDP Example
+
* UDP Packets
** http://virtualrouterplus.com/
+
** SSID: wustl-guest-2.0
 +
***You can use wustl-guest-2.0 for web traffic but all of the other ports are block by the university firewall. However, we have our own wireless network in Bryan 316 for your use.
 +
** SSID: Bryan316
 +
*** Your ESP8266 module can use the SSID: Bryan316 but you have to send your MAC Address to Ed Richter (ed@ese.wustl.edu) so he can add your device to he access list.
 +
** UDP Communication
 +
***

Revision as of 21:52, 29 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("");
   }
 }
  • UDP Packets
    • SSID: wustl-guest-2.0
      • You can use wustl-guest-2.0 for web traffic but all of the other ports are block by the university firewall. However, we have our own wireless network in Bryan 316 for your use.
    • SSID: Bryan316
      • Your ESP8266 module can use the SSID: Bryan316 but you have to send your MAC Address to Ed Richter (ed@ese.wustl.edu) so he can add your device to he access list.
    • UDP Communication