Download Link : https://drive.google.com/file/d/1yNU0P4YZcXhNdxcePBhqmhxPhN4TRSjo/view?usp=sharing Complete Reports Free Downloads Available from 40 to 60 pages includes the following chapters 1. Abstract, 2. Introduction, 3. Literature Survey, 4. Problem Definition, 5. Methodology with Block Diagram, 6. Results & Discussion,7.  Conclusion & Future Work, 8. References   More Reports, PPTs :  https://www.spectruminfotech.in For Projects Contact : +91 7598364645 […]

CONTINUE READING ➞

Download Link : https://drive.google.com/file/d/1Rr8-bbYRSgUdKrw57eczyHYPafB6vhCs/view?usp=sharing Complete Reports Free Downloads Available from 40 to 60 pages includes the following chapters 1. Abstract, 2. Introduction, 3. Literature Survey, 4. Problem Definition, 5. Methodology with Block Diagram, 6. Results & Discussion,7.  Conclusion & Future Work, 8. References   More Reports, PPTs :  https://www.spectruminfotech.in For Projects Contact : +91 7598364645 […]

CONTINUE READING ➞

Download Link : https://drive.google.com/file/d/1YEk_6vM4scISXncunjUs2X6pgYmPNLbw/view?usp=sharing Complete Reports Free Downloads Available from 40 to 60 pages includes the following chapters 1. Abstract, 2. Introduction, 3. Literature Survey, 4. Problem Definition, 5. Methodology with Block Diagram, 6. Results & Discussion,7. Conclusion & Future Work, 8. References More Reports, PPTs :  https://www.spectruminfotech.in For Projects Contact : +91 7598364645 Mail […]

CONTINUE READING ➞

Objective:          To Control (ON/ OFF) the devices using mechanical switching operation Components Required Arduino Uno Push Button Buzzer Connection Diagram Program int SwitchPin = 2, ButtonPin= 3, BuzzPin=13, sensorValue ; void setup() { pinMode(ButtonPin, INPUT); pinMode(BuzzPin, OUTPUT); Serial.begin(9600); } void loop() { sensorValue = digitalRead(ButtonPin); if(sensorValue == HIGH) { Serial.println(“LED ON”); digitalWrite(BuzzPin, HIGH); } […]

CONTINUE READING ➞

Objective:          To measure the amount of temperature and moisture content present in the atmosphere Components Required Arduino Uno Temperature & Moisture Sensor (DHT-11) Connection Diagram Program #include <DHT.h> #define DHTtype DHT11 DHT dht(DHTpin, DHTtype); uint8_t temperature, humid, DHTpin=5; void setup() { Serial.begin(9600); pinMode(DHTpin,INPUT); dht.begin(); lcd.begin(); } void loop() { temperature = dht.readTemperature(); humid= dht.readHumidity(); […]

CONTINUE READING ➞

Objective:          To control the rotation direction and to stop/start the DC motor by Arduino Uno Components Required Arduino Uno Direct Current (DC) Motor Connection Diagram Program int MotorPin1=4, MotorPin2=5; void setup() { pinMode(MotorPin1, OUTPUT); pinMode(MotorPin2, OUTPUT); } void loop() { digitalWrite(MotorPin1,HIGH); digitalWrite(MotorPin3,LOW); delay(5000); digitalWrite(MotorPin1,LOW); digitalWrite(MotorPin3,HIGH); delay(5000); } Working          The DC motor has two […]

CONTINUE READING ➞

Objective:          To measure the amount of temperature present in the atmosphere Components Required Arduino Uno Temperature Sensor (LM35) Connection Diagram Program int sensorPin = A0; int sensorValue = 0; void setup() { pinMode(sensorPin, INPUT); Serial.begin(9600); } void loop() { sensorValue = analogRead(sensorPin); float temperatureC=sensorPin/2.048; float temperatureF= ((temperatureC ) * 9.0 / 5.0) + 32.0; […]

CONTINUE READING ➞

Objective:          To display the values corresponds to each key of a Remote Controller unit Components Required Arduino Uno IR Receiver Module Connection Diagram Program #include<IRremote.h> int RecvPin = 10; IRrecv irrecv(RecvPin); decode_results results; void setup() { Serial.begin(9600); irrecv.enableIRIn(); } void loop() { if (irrecv.decode(&results)) { Serial.println(results.value, HEX); irrecv.resume(); delay(1000); } } Working          Whenever […]

CONTINUE READING ➞
Navigation

My Cart

Close
Viewed

Recently Viewed

Close

Great to see you here !

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

Already got an account?

Quickview

Close

Categories