Overview Feather is the new development board from Adafruit, and like it's namesake it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. This is the Adafruit Feather HUZZAH ESP8266 - our take on an 'all-in-one' ESP8226 WiFi development board with built in USB and battery charging.
USB port, which could confuse or damage your computer. Using NodeMCU Lua Each Feather HUZZAH ESP8266 breakout comes pre-programmed with NodeMCU's Lua interpreter. As of this writing, we ship with NodeMCU 0.9.5 build 20150318 powered by Lua 5.1.4 but it may be more recent...
-- wait 1,000,000 us = 1 second print(wifi.sta.status()) print(wifi.sta.getip()) WebClient example Once you're got the IP address you can connect to adafruit, for example, and read a webpage and print it out: sk=net.createConnection(net.TCP, 0) sk:on("receive", function(sck, c) print(c) end ) sk:connect(80,"207.58.139.247")
Using Arduino IDE While the Feather HUZZAH ESP8266 comes pre-programmed with NodeMCU's Lua interpretter, you don't have to use it! Instead, you can use the Arduino IDE which may be more familar. This will write directly to the firmware, erasing the NodeMCU...
If you want to use this board with Adafruit IO Arduino - make sure you're on version 2.5.1 or ABOVE. After the install process, you should see that esp8266 package is marked INSTALLED. Close the Boards Manager window once the install process has completed.
Create a new sketch with this code: Simple HTTP get webclient test #include <ESP8266WiFi.h> const char* ssid = "yourssid"; const char* password = "yourpassword"; const char* host = "wifitest.adafruit.com"; void setup() { Serial.begin(115200); delay(100); // We start by connecting to a WiFi network Serial.println();...
Simply load the WipperSnapper firmware onto your board, add credentials, and plug it into power. Your board will automatically register itself with your Adafruit IO account. From there, you can add components to your board such as buttons, switches, potentiometers, sensors, and more! Components are dynamically added to hardware,...
Next, download and install the SiLabs CP2104 Driver so your operating system can "talk to" your Feather HUZZAH ESP8266. There are drivers for Windows, Mac, and Linux. Click here to download the CP2104 USB Driver https://adafru.it/vrf Enable Web Serial We've developed a web-based tool for you to install WipperSnapper on your ESP8266.
Page 44
Navigate back to the WipperSnapper Firmware Uploader and enter your network and Adafruit IO credentials. Click Install WipperSnapper. You should see WipperSnapper being flashed to your ESP8266. Hang tight and stay on this tab, the process takes a little over a minute. Do not disconnect your ESP8266 from USB.
Congrats, your board is registered with WipperSnapper! Blink Test We'll blink the Feather Huzzah ESP8266's LED both as a functionality test and to get used to using WipperSnapper. From the Device Page for the Feather Huzzah ESP8266, click New Component.
Toggle the LED component's switch to turn the LED on and off. • Note - the Feather Huzzah ESP8266's LED is reverse wired, so setting the pin LOW will turn the LED on. Therefore, toggling the switch low off will turn the LED...
Need help?
Do you have a question about the Feather HUZZAH ESP8266 and is the answer not in the manual?
Questions and answers