Arduino Firmware Started

master
atancito 2022-03-24 23:16:52 +01:00
parent 486dafeaf4
commit 6d38bb4a80
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#include <KeyboardLayout.h>
#include <Keyboard.h>
int rows[5] = {};
int cols[4] = {};
char layout[5][4] = {
{'b', '/', '*', '-'},
{'7', '8', '9', 'x'},
{'4', '5', '6', '+'},
{'1', '2', '3', 'x'},
{'0', '.', 'e', 'x'}
};
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}