Difference between revisions of "Button Module"

From LinkSprite Playgound
Jump to: navigation, search
Line 1: Line 1:
 
[[File:Linker button.jpg]]
 
[[File: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 ==
 
== Schematics ==
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker+button.pdf Schematics]
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker+button.pdf Schematics]

Revision as of 12:41, 25 April 2013

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