Konubinix' opinionated web of thoughts

How to Play With the Huzzah Feather Esp8266

Fleeting

Adafruit Feather HUZZAH with ESP8266,

The setup is the same as how to play with the wemos d1,

Blink the led to make sure everything works fine (connected to the pin 0)

import machine
import time

led = machine.Pin(0, machine.Pin.OUT)

led.value(0) ; time.sleep(0.5) ; led.value(1)