Program Arduino uno with if statement 2 condition se control
Hello friends
एक Ardunio program बनाया basic C programming language का use if statement का use कर के अपने arduino microcontroller के लिए जिसे में आपके साथ share कर रहा हूँ ये बहुत ही आसान सा program है जो की led को control कर रहा है इसमें मेनें led को pin 13 से connect किया और a=4,b=2 define किया
पहली condition if के साथ दी if(a<b) यदि ये true होती है (जोकि नहीं होगी kyuki मेने a=4,b=2 लिया है)तो if के अंदर की coding run हो तब delay time 1000milisecond यानि की एक second लिया जिससे इस if के अंदर का code से led एक second में on और फिर एक second के लिए off हो जाएगी चूंकि program void loop में है तो ऐसा लगातार चलता रहेगा
फिर else में delay time कम करके 100ms कर दिया a=4,b=2 से (a<b) true नहीं हुई इसलिए else का code रन होगा जिसमे भी बिल्कुल if का ही कोड लिखा है पर delay time सिर्फ 100ms है तो led 100milisecond के लिए on और 100milisecond के लिए off होगी चूंकि delay time बहुत ही कम है तो ये led जल्दी-जल्दी on off होगी
Arduino program-
Arduino program 3
इस पर if(a<b) true नहीं होगी kyuki a=4,b=2 है int led=13;//initialize digital pin 13 int a=4; int b=2; void setup() { pinMode(led, OUTPUT);// initialize digital pin 13 output के लिए } void loop() { if(a<b){ digitalWrite(13, HIGH); // turn the LED on delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off delay(1000); } else{ digitalWrite(13, HIGH); // turn the LED on delay(100); // wait 100 mili second के लिए digitalWrite(13, LOW); // turn the LED delay(100);wait 100 mili second के लिए } }
आप इसे costomize कर के भी use करें condition को change कर सकते है,delay time increase-decrease कर सकते है
Arduino program 4-
if(a==37) true होगी kyuki a=37 define किया गया है जिससे if के अंदर का program रन होगा int led=13;//initialize digital pin 13 int a=37; void setup() { pinMode(led, OUTPUT);// initialize digital pin 13 output के लिए } void loop() { if(a==37){ digitalWrite(13, HIGH); // turn the LED on delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off delay(1000); } else{ digitalWrite(13, HIGH); // turn the LED on delay(100); // wait 100 mili second के लिए digitalWrite(13, LOW); // turn the LED delay(100);wait 100 mili second के लिए } }
आप इसे भी costomize कर के भी use करें condition को change कर सकते है,जैसे if(a==8) या कुछ भी ,delay time increase-decrease कर सकते है [ays_quiz id=’4′]
Leave a Reply