Posts

Showing posts from April, 2018

How to control Arduino LED Via Serial Communictation Using Processing

Image
In this tutorial we will learn how to connect Arduino to Processing. We will to communication using the Serial Port. We will use the Processing Development Environment to control the Arduino. This is the first the Processing tutorial. When we will press on the left and right button the LED turn on and turn off. MY Pervious Video How to install Processing IDE  https://youtu.be/PuJSNMFzfKA Arduino Code :) //please Subscribe to zeeatech youtube channel// int ledPin = 13; //define the LED pin void setup(){ pinMode(ledPin, OUTPUT); //initialize LED output Serial.begin(9600); //start the serial communication } void loop(){ if(Serial.available() > 0){ //if some data is available of in the serial port char ledPinState = Serial.read() ; //read the value if(ledPinState == '1'){ //if statement will be true(1) digitalWrite(ledPin, HIGH); //turn ON the LED } if(ledPinState == '0'){ //if...

How to install Processing Software

Image
processing IDE  https://processing.org/download/ Make Sure what type of  bit your using

Smart gesture robot

Image
smart gesture robot using APDS9960 sensor My Hand gesture Smart mouse using arduino  and APDS9960 Wave your hands and light turns on. Can you believe this magic turns into reality? Meet the Gesture Sensor which offers touch-less gesture sensing - you can issue orders simply with a swipe of your hand! Furthermore, it supports RGB color detecting and ambient light measuring. With this new sensor, traditional switch can be replaced. Operating Voltage: 3.3-5V I2C interface x1 Interrupt pin x1 Detecting range: 100mm (3.94") Module size: 18.3x16.4mm (0.72x0.65") This project shows detecting gestures of hand to RIGHT, LEFT, UP, DOWN and also Ambient color and proximity detection using Arduino module APDS-9960 . Arduino Nano+ RGB and Gesture Sensor(5pin and 6pin, purple board) which control the light bulb - Arduino Nano+RGB and Gesture Sensor APDS-9960(6pin . MY Previous video :)  https://youtu.be/8LVRWCUIVyY #include <Wire.h> #include <SparkFun_APDS9960...

Make your own IOT apps with Blynk. NodeMCU (ESP8266) Tutorial using Ardu...

Image
Make your own IOT apps with Blynk. NodeMCU (ESP8266) Tutorial using Arduino ide Additional information on App Publishing: https://help.blynk.cc/publishing-apps... More about device provisioning: http://help.blynk.cc/publishing-apps-... Download latest Blynk Library (for Arduino IDE) https://github.com/blynkkk/blynk-libr... Code examples for any hardware: http://examples.blynk.cc Get started with Blynk: http://help.blynk.cc Mobile apps: Download Blynk for iOS https://itunes.apple.com/us/app/blynk... Download Blynk for Android https://play.google.com/store/apps/de... previous video :}   https://youtu.be/HbLZVfrSjyI Product Link :)" http://amzn.in/iGrhIwK "

How to installation

Image
Product Link :)" http://amzn.in/iGrhIwK " URL:) " http://arduino.esp8266.com/versions/2.4.1/package_esp8266com_index.json " NodeMCU was created shortly after the  ESP8266  came out. On December 30, 2013,  Espressif Systems [6]  began production of the ESP8266. [10]  The ESP8266 is a Wi-Fi SoC integrated with a Tensilica Xtensa LX106 core, [ citation needed ]  widely used in IoT applications (see  related projects ). NodeMCU started on 13 Oct 2014, when Hong committed the first file of nodemcu-firmware to GitHub. [11]  Two months later, the project expanded to include an open-hardware platform when developer Huang R committed the  gerber  file of an ESP8266 board, named devkit v0.9. [12]  Later that month, Tuan PM ported  MQTT  client library from  Contiki  to the ESP8266 SoC platform, [13]  and committed to NodeMCU project, then NodeMCU was able to support the MQTT IoT protocol, using Lua to access the...

My Hand gesture Smart mouse

Image
My Hand gesture Smart mouse Wave your hands and light turns on. Can you believe this magic turns into reality? Meet the Gesture Sensor which offers touch-less gesture sensing - you can issue orders simply with a swipe of your hand! Furthermore, it supports RGB color detecting and ambient light measuring. With this new sensor, traditional switch can be replaced. Operating Voltage: 3.3-5V I2C interface x1 Interrupt pin x1 Detecting range: 100mm (3.94") Module size: 18.3x16.4mm (0.72x0.65") This project shows detecting gestures of hand to RIGHT, LEFT, UP, DOWN and also Ambient color and proximity detection using Arduino module APDS-9960 . Arduino Nano+ RGB and Gesture Sensor(5pin and 6pin, purple board) which control the light bulb - Arduino Nano+RGB and Gesture Sensor APDS-9960(6pin . Circuit Diagram :) PY Serial :)                        https://learn.adafruit.com/arduino-lesson-17-email-sending-movement-det...