Another illustration how to wire the ESP8266 as server and client mode, therefore there is no need to use a router or smart phones to interact/communicate to the ESP8266, this is direct communication between 2 ESP module as server and
Wiring DHT11, DHT22, with OLED Screen on ESP8266 12E
Yet another illustration how to use the 0.96” OLED 128×64 Screen Display, and DHTXX Temperature & Humidity Sensor, The OLED 128X64 Screen Display module it is made of 128×64 individual blue OLED pixels, each on is can be turn on
Wiring NodeMCU ESP8266 12E with i2C 16×2 LCD Screen
Another illustration that demonstrate how to wire the i2c 16×2 LCD on ESP8266 12 Known as NodeMCU, as you can see the diagram below the SCL as Arduino Analog Pin A4 is connected to D1 on NodeMCU at the same
Wiring and flashing the ESP8266 ESP201 WiFi Transceiver
This is the other model of ESP8266 module, this board has similarity with the ESP8266 V1, ESP8266 7, ESP8266 12E, the difference of this board has an on-board SMD SMC antenna and extra IO port, this module has self-contained SOC
Wiring ESP8266 with Bi-Directional Logic Converter
In this illustration we will going to wire the ESP8266 with the Logic level converter along with FTDI USB to program the ESP8266. As you can see in the illustration below there is two connection between the ground and the
LUA Programming Using ESPlorer IDE Tutorial Guide
To upload a code to ESP8266, you should connect your ESP8266 to your FTDI USB Programmer: as the image illustration below. Coding Your fist LUA Script a blinking an LED
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
-- your first lua script working on LED lighton=0 pin=4 gpio.mode(pin,gpio.OUTPUT) -- Assign GPIO to Output tmr.alarm(1,2000,1,function() if lighton==0 then lighton=1 gpio.write(pin,gpio.HIGH) -- Assign GPIO On else lighton=0 gpio.write(pin,gpio.LOW) -- Assign GPIO off end end) |
Burning your code into the chip ESP8266 +