live practical IOT Arduino UNO LED Blink Light Program
This institute placed in Hardoi Up & It is the hub of Tally, CCC and O level. This is best blogger site to learn about to computer courses like:- Adca, Dca, Pgdca, CCC, O level, Dtp, Tally, Gst, Etc. You can contact us for more query on my contact no:- 9026728220, 8423606968.
Labels
- Artificial Intelligence (2)
- CCC EXAM NOTES (52)
- computer ki important jankariyan (55)
- Computer Notes (23)
- COMPUTER TIPS (28)
- computer tricks (38)
- CSS O LEVEL (43)
- Gst (1)
- HTML (2)
- IOT (4)
- IOT MCQs (1)
- IT Tools (21)
- Javascript (4)
- Libreoffice (12)
- M2R5 (O level) CSS (32)
- mobile tricks (10)
- O level (63)
- O level Notes (59)
- O level Practical (2)
- O level Project (44)
- PDF Tricks (2)
- Python program (22)
- Python Program List (3)
- ROCHAK JANKARIYA (39)
- Tally Gst (1)
- Tricks & Tips (20)
- Tricks and Tips (17)
- Viva O (1)
- Viva O Level (2)
- What is ? (1)
- Windows Tricks (11)
Information & Technology Computer Institution's
In front of Gandhi Bhawan, Numaish Chauraha Hardoi.
☎ +91 9026728220, +91 8423606968
Please Subscribe My YouTube Channel
Tuesday, February 04, 2025
IOT blink light practical #Howto #Youtube #ITCIComputerHardoi #satyamsir...
My name is Satyam Trivedi, I live in Hardoi Up, I am graduate in Bsc. I have many other diploma's related to computer courses like:- Adctt, Doap, ccc, 'O' Level, Bca, Pgdca. I am a Blogger, Youtuber, Programmer and a Teacher by profession.I hold 10 years experiance of computer software training.
Monday, February 03, 2025
Program No 4- Gas Detect Arduino Program #Howto #Youtube #ITCIComputerHa...
int red=6;
int green=4;
int yellow=5;
int sensgas=A0;
int speak=2;
void setup()
{
Serial.begin(9600); //Used for serial communication b/w sensor and arduino board
pinMode(red, OUTPUT);
pinMode(green, OUTPUT);
pinMode(yellow, OUTPUT);
pinMode(speak, OUTPUT);
}
void loop()
{
int data_sensor = analogRead(sensgas);
Serial.print("Detect Voltage Level:");
Serial.println(data_sensor);
if (data_sensor ==20){
digitalWrite(green, HIGH);
digitalWrite(yellow, LOW);
digitalWrite(red, LOW);
digitalWrite(speak, LOW);
noTone(speak);
}
else if ((data_sensor >20) && (data_sensor <30)){
digitalWrite(green, LOW);
digitalWrite(yellow, HIGH);
digitalWrite(red, LOW);
digitalWrite(speak, LOW);
noTone(speak);
}
else {
digitalWrite(green, LOW);
digitalWrite(yellow, LOW);
digitalWrite(red, HIGH);
digitalWrite(speak, HIGH);
tone(speak,1000);
}
}
Labels:
IOT,
Viva O Level
My name is Satyam Trivedi, I live in Hardoi Up, I am graduate in Bsc. I have many other diploma's related to computer courses like:- Adctt, Doap, ccc, 'O' Level, Bca, Pgdca. I am a Blogger, Youtuber, Programmer and a Teacher by profession.I hold 10 years experiance of computer software training.
Subscribe to:
Posts (Atom)