Go to file
Aaron Fischer dd30b33625 Update README.md 2014-12-24 16:42:47 +01:00
images Add images 2014-12-24 16:35:28 +01:00
.gitignore Initial commit 2014-12-24 16:01:59 +01:00
LICENSE Initial commit 2014-12-24 16:01:59 +01:00
README.md Update README.md 2014-12-24 16:42:47 +01:00
mxboard.brd Add the pcb and schematics. 2014-12-24 16:29:07 +01:00
mxboard.pdf Add the pcb and schematics. 2014-12-24 16:29:07 +01:00
mxboard.sch Add the pcb and schematics. 2014-12-24 16:29:07 +01:00

README.md

mxboard

Cherry MX breakout board for Arduino, RaspberryPi and other boards.

front back

Order here: https://oshpark.com/shared_projects/PogDjaIS

Arduino Sample

const int buttonPin = 10;
const int ledPin = 11;

void setup() {
  pinMode(buttonPin, INPUT);
  pinMode(ledPin, OUTPUT);
}

void loop() {
  // The switches are equiped with pull-down resistors. So if the
  // button is pressed, you read a HIGH, if the button is released
  // you read a LOW.
  digitalWrite(ledPin, digitalRead(buttonPin));
}