Button Module

From LinkSprite Playgound
Revision as of 12:41, 25 April 2013 by Jingfeng (talk | contribs)
Jump to: navigation, search

Linker button.jpg


Sample

<syntaxhighlight lang="c">

const int ButtonPin=9; void setup() {

 pinMode(ButtonPin, INPUT);
 Serial.begin(9600);        // init serial to 9600b/s

}

void loop() {

 int sensorValue = digitalRead(ButtonPin);
 if(sensorValue==1)
 {
   Serial.println("Hign");    
 }
 else
 {
   Serial.println("Low");     
   
 }
}

</syntaxhighlight>


Schematics