add keyboard source code

This commit is contained in:
cuu
2023-06-14 13:46:28 +12:00
parent 5b69e9c831
commit 17269a8c72
24 changed files with 1850 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "helper.h"
uint8_t read_io(uint8_t io) {
if(digitalRead(io) == LOW ){
return 0;
}else {
return 1;
}
}