| Home | Introduction | Buy Arduino / Modules |

Button එකක් භාවිතා කිරීම

අපි දැනට භාවිතා කළේ DigitalWrite Function එක වුවත් digital input ලබාගැනීමට Digital Read කියන Function එක භාවිතාකරන්න පුලුවන්.
Code


int ledPin = 13; //  LED එකට
int inPin = 2; // Switch එක සඳහා (Push to on වර්ගයේ එකක් භාවිතා කරන්න)
int val = 0; // variable for reading the pin status

void setup() {
 pinMode(ledPin, OUTPUT); // declare LED as output pinMode(inPin, INPUT); // declare pushbutton as input
}

void loop()
{
 val = digitalRead(inPin); // read input value

 if (val == HIGH) // check if the input is HIGH (button released)

 { 
 digitalWrite(ledPin, LOW); // turn LED OFF
 }

 else

 {
 digitalWrite(ledPin, HIGH); // turn LED ON
 }

}

No comments:

Post a Comment