Posts

Showing posts from 2019

NEW YEAR GIFT BOX USING ARDUINO.

Image
NEW YEAR GIFT BOX USING ARDUINO.   Hi friends, how are you,      Today we are going to make a NEW YEAR GIFT BOX using Arduino, Requirement 1.       Arduino Uno or any version. 2.       Ultrasonic sensor HC-SR04. 3.       Servo motor SG90. 4.       Jumper wire. 5.       Gift box. Circuit diagram watch my video Arduino code #include <Servo.h>    //servo library Servo servo;      int trigPin = 5;     int echoPin = 6;    int servoPin = 7; int led = 10; long duration, dist, average;    long aver[3];    //array for average void setup() {            Serial.begin(9600);     servo.attach(servoPin);       pinMode(trigPin, OUTPUT);       pinMode(echoPin, INPUT);       servo.write(0);          //close cap on power on     delay(100);     servo.detach(); } void measure() {     digitalWrite(10,HIGH); digitalWrite(trigPin, LOW); delayMicroseconds(5); digitalWrite(trigPin, HIGH); delayMicroseconds

How to make a smart & intelligent blind stick.

Image
how to make smart blind stick.       Today we are going to make an Intelligent blind stick for blind people. Their life is always depending on others. They can’t walk without the help of others. Using this intelligent blind stick, a blind person can walk without any helps. The intelligent blind stick automatically detects the obstacle and water in front of the person and gives him a response to the person by a warning sound and vibrating the stick. The person can also find his/her stick with the help of a remote. Through this intelligent blind stick, the blind person can aware the any obstacles and water in front of him. How to make intelligent blind stick (part-01) watch the video.... Here are the parts to make this project   1.      Arduino UNO / nano/ mega/ pro any one    2.      Ultrasonic sensor HC-SR04.       3.       433Mhz RF module.   4.       Encoder & Decoder IC.   5.      Vero board.   6.      IC Base,   7.

How to make an artificial intelligent circuit using Arduino

Image
                Artificial Intelligent Circuit Using Arduino        This AI project is a very simple type of Arduino project which works like an Artificial Intelligence. This circuit counts the number of times the speaker taped and report back the number of tapes with tones.                 This circuit is only for fun purposes by using the Arduino microcontroller.                                         Circuit diagram... watch the video AI using Arduino https://youtu.be/-bODPjsDl3k visit my youtube channel i.e. Future Technology RC source code...    copy this code and pest on Arduino ide software.       Thank you please follow me