Arduino UNO Based Project Complete Code or Mobile Oprated JCB Demo. In this Project all the JCB can be operated directly via the Mobile Keypads and Or via a call and Key pad in the same way currently automatic call system of various serivce provider used to encode or pressed key frequecy.
int mot1=3;
int mot2=4;
int mot3=5;
int mot4=6;
int mot5=7;
int mot6=8;
Arduino Uno board code for moving bridge fro railway , Road, and River Project. This kind of project is generally used in all over the world and live running. So this is good project for Science and Engineeing Students, For Submitting the educational project.
E - Dustibin is the future of world, So every developing country is now finding the ways of collecting the garbage according to their category, like plastic garbage , metallic garbage, or biodegardable and not degradable items saparately. So to have this thing in mind we have develop a science project of moving and auto open close and E- dustbin. Which will move at predefine path and collect the garbage and also automatically opens when user comes in near to that.
#include <Servo.h>
Servo myservo;
int arr[9];
int punnu;
void setup()
{
Serial.begin(9600);
myservo.attach(9);
pinMode(8,INPUT);
pinMode(10,INPUT);
pinMode(11,INPUT);
}
int sawan()
{
int sensorValue1 = analogRead(A0);
int sensorValue2 = analogRead(A1);
int sensorValue3 = analogRead(A2);
return sensorValue1+sensorValue2+sensorValue3/6;