pin definitions

This commit is contained in:
mintey 2021-02-26 22:54:27 +02:00
commit 60ffa7635d
1 changed files with 27 additions and 0 deletions

27
smol_gkos.ino Normal file
View File

@ -0,0 +1,27 @@
const int PIN_A = 33;
const int PIN_B = 32;
const int PIN_C = 31;
const int PIN_D = 24;
const int PIN_E = 25;
const int PIN_F = 26;
const int PIN_MOUSE_UL = 27;
const int PIN_MOUSE_UR = 30;
const int PIN_MOUSE_DL = 29;
const int PIN_MOUSE_DR = 28;
const int PIN_LED1 = 6;
const int PIN_LED2 = 1;
const int PIN_LED3 = 3;
const int PIN_BALL_SDA = 18;
const int PIN_BALL_SCL = 19;
const int PIN_BALL_INT = 11;
void setup() {
}
void loop() {
}