#include void setup() { pinMode(2, INPUT_PULLUP); pinMode(3, INPUT_PULLUP); pinMode(4, INPUT_PULLUP); pinMode(5, INPUT_PULLUP); pinMode(6, INPUT_PULLUP); } void loop() { if (digitalRead(2) == 0) { Keyboard.press('q'); } if (digitalRead(2) == 1) { Keyboard.release('q'); } if (digitalRead(3) == 0) { Keyboard.press('m'); } if (digitalRead(3) == 1) { Keyboard.release('m'); } if (digitalRead(4) == 0) { Keyboard.press('e'); } if (digitalRead(4) == 1) { Keyboard.release('e'); } if (digitalRead(5) == 0) { Keyboard.press(','); } if (digitalRead(5) == 1) { Keyboard.release(','); } if (digitalRead(6) == 0) { Keyboard.press('k'); } if (digitalRead(6) == 1) { Keyboard.release('k'); } }