Difference between revisions of "Button Module"
Qian.zhang (talk | contribs) (→Sample) |
Qian.zhang (talk | contribs) |
||
| Line 1: | Line 1: | ||
| + | ==Introduction== | ||
| + | This button module hosts momentary push button switch - 12mm Square. It can serve as input for Arduino experiment. | ||
| + | |||
[[File:Linker button.jpg]] | [[File:Linker button.jpg]] | ||
| − | |||
== Sample == | == Sample == | ||
Revision as of 09:03, 8 April 2014
Contents
Introduction
This button module hosts momentary push button switch - 12mm Square. It can serve as input for Arduino experiment.
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("High");
}
else
{
Serial.println("Low");
}
}
</syntaxhighlight>
Schematics
How to buy
Here to buy Button Module on store
