In this tutorial i will going to demonstrate how to connect and program the nRF24L01+ Module Raspberry Pi A A+ B B+, and build a Raspberry Pi Internet of Things Server. Below are the nRF24l01 schematics and Pin Out with
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
What is NodeMCU How to Code LUA Script with a Simple Lines of Code
NodeMCU is an Open Source Firmware Development Board that helps you to build your IOT(Internet of Things) projects with a few LUA Script Lines, NodeMCU it is like Arduino Hardware with a Input Output built in the Board itself, it
What is IOT- Internet of Things and How It Works and Effects to Humans
Object/Thing? and the internet of things. can be a human with digital hearth monitor that inserted to his hearth, a farm and animal with a biological chip transponder(Biochip Transponder, a car that has a integrated with a sensors to notify
Using ESP8266 Wifi Transceiver Module with SDK
The ESP8266 Soc. ESP8266 is a highly integrated chip that has TCP/IP Protocol stack. It’s offers a complete and self contained Wi-Fi Network Communication Solution, allowing it to either host the application or offload all Wifi function from another application