This tutorial we will demonstrate how to detect motion from PIR Sensor using Arduino, ones the PIR detect a motion it will trigger the LED as the output. Electric Parts Require 1x Arduino 1x PIR Motion Sensor 1x LED 1x
Make your Raspberry Pi as (IOT) Internet of Things Server with nRF24L01
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
Coding a Line Finder with Arduino Module Sensors for Robotics
Below are the program sketch how to code a line following robots using Arduino, to detect Black Line & White Line when digital signal is HIGH, sensor will read black line and when digital signal is LOW, sensor will read
Using Two Nordic nRF24L01 2.4 Wireless Radio with Joystick and Arduino
We will going to demonstrate here how to use Nordic nRF24L01 2.4 Wireless Radio using Arduino with Joystick Controller. This 2.4Ghz Radio module are base on Nordic Semiconductor nRF24L01+ Chip, The Nordic nRF24L01+ integrates a complete 2.4GHz Radio Frequency Transceiver,
Making an Interactive Traffic Lights using Arduino
This tutorial we are going to make a traffic light with pedestrian light along with button, to request to cross the road. The Arduino will execute when the button is pressed by changing the state of light to make the
How to Use Sonar Powered Ultrasonic Sensor Module HC SR04 with Arduino
This tutorial is about how to use Ultrasonic Sensor HC-SR04 with Arduino UNO, The Ultrasonic HC-SR04 sensor uses SONAR to determine the distance to an obstacle or an object like Bats, an excellent digital non-contact range detection with high accuracy
Temperature & Humidity Sensor With Arduino Using DHT11/DHT22
This project will guide you how to use DHT11/DHT22 Humidity & Temperature Sensor to interconnected with Arduino, The DHTXX sensors are very popular in Arduino module component. The DHT sensors are relative cheap sensors for measuring temperature and humidity. These
How to install Driver for Arduino in Mac OS
Download Driver for MAC and right version for your PC. Download Here Open the file folder you just downloaded and double click the FTDIUSBSerialDriver_v2_2_18.dmg and press continue Download the driver here | Drivers
How to install Arduino Driver for UNO R3, MEGA2560 and Mini in Windows OS
Arduino IDE is base on C/C++ after you getting the 14Core Arduino Kit Compatible you should install the IDE. Depending on Operating System used. The specific installation varies. Thankfully Arduino Team provides us a detailed installation process guide for most
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 +