3-key Cherry MX macro keyboard designed for the micro USB version of the Digispark. Make sure everything works before pushing in the Digispark.
Testing code:
void setup() {
pinMode(0, INPUT);
pinMode(1, INPUT);
pinMode(2, INPUT);
}
void loop() {
if(digitalRead(0)==HIGH){
DigiKeyboard.print("test0");
DigiKeyboard.delay(50);
}
if(digitalRead(1)==HIGH){
DigiKeyboard.print("test1");
DigiKeyboard.delay(50);
}
if(digitalRead(2)==HIGH){
DigiKeyboard.print("test2");
DigiKeyboard.delay(50);
}
DigiKeyboard.delay(50);
}
The author marked this model as their own original creation.