IOT

Adafruit Feather Huzzah ESP8266

Got a new Toy … Datasheet esp8266 https://cdn-learn.adafruit.com/downloads/pdf/adafruit-feather-huzzah-esp8266.pdf Pinout https://cdn-learn.adafruit.com/assets/assets/000/046/249/original/adafruit_products_Huzzah_ESP8266_Pinout_v1.2-1.png?1504885873 Manual Adafruit NeoPixel Überguide https://www.play-zone.ch/de/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1459843180.pdf Driver https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers Wire Diagram https://learn.adafruit.com/feather-weather-lamp/circuit-diagram ESP8266 Arduino Core’s documentation https://arduino-esp8266.readthedocs.io/en/latest/ ESP8266WiFi library https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/readme.html Playing with LED gpio.mode(3, gpio.OUTPUT) gpio.write(3, gpio.LOW) gpio.write(3, gpio.HIGH) Blinking Stuff while 1 do gpio.write(3, gpio.HIGH) tmr.delay(1000000) -- wait 1'000'000 us = 1 Second gpio.write(3, gpio.LOW) tmr.delay(1000000) -- wait 1'000'000 us = 1 Second end More blinking -- Pin definition local pin = 3 local status = gpio.