The ESP8266 module has a preprogrammed firmware which support the serial interface communication by controlling using AT commands. The ESP8266 chip was develop by ESPRESSIF System, a smart connectivity platform or ESCP that provides high performance, high integration wireless SOCs,
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 the ENC28J60 Ethernet Module on Arduino with Relay
In this illustration we will going to wire the ENC28J60 Ethernet Module. This module is another widely used network module for popular microcontroller, the early Arduino network module is accomplished by mean of ENC28J60, although later a new Arduino network
Wiring Ethernet Shield W5100 & Control External Devices with Relay
On this illustration we will going to wire the Ethernet Shield W5100, This shield allows an Arduino Board to connect to the internet. This shield is based on W5100 WIZNET Chip, a network stack capable of both TCP and UDP.
SSH (Secure Shell) vs VNC (Virtual Network Computing) how it works?
SSH(Secure Shell) is mostly used many system administrators to control or remotely work with the servers across the world. for example a VPS (Virtual Private Server running a website or web application), they need a remote connection because they don’t
Build your own ESP8266 Web Server Tutorial
In this illustration i will going demonstrate here how to build an ESP8266 standalone Web Server coded in LUA Script with ESPlorer, and remotely control the LED via Network. Electronic Parts we need to accomplish this project. ESP8266 Module Board
How to Use NodeMCU Flasher Step By Step Tutorial
NodeMCU Flasher is a firmware programmer made for NodeMCU development kit, by using this program you program the ESP8266 board by send binary code directly to the NodeMCU Development Board. Before you can program the NodeMCU you need to set
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 +
How to install ESPlorer IDE in multiple platform
What’s the ESPlorer? The ESPlorer is an IDE(Integrated Development Environment) for ESP developers. It coded in JAVA a multi platform IDE that runs on Windows, Mac OS X or Linux. This IDE allows you to establish a serial communications with