Difference between revisions of "Button Module"
Qian.zhang (talk | contribs) |
Qian.zhang (talk | contribs) (→Schematics) |
||
Line 3: | Line 3: | ||
[[File:Linker button.jpg]] | [[File:Linker button.jpg]] | ||
+ | |||
+ | == Features == | ||
+ | |||
+ | Dimensions: 26.0×25.0×10.5mm | ||
+ | |||
+ | Net weight: 3.4g | ||
== Schematics == | == Schematics == |
Revision as of 03:02, 10 June 2014
Introduction
This button module hosts momentary push button switch - 12mm Square. It can serve as input for Arduino experiment.
Features
Dimensions: 26.0×25.0×10.5mm
Net weight: 3.4g
Schematics
Application Ideas
<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>
How to buy
Here to buy Button Module on store