commit 60ffa7635d4941e4fc00a964d39490fcef44f4a9 Author: mintey Date: Fri Feb 26 22:54:27 2021 +0200 pin definitions diff --git a/smol_gkos.ino b/smol_gkos.ino new file mode 100644 index 0000000..c7a381c --- /dev/null +++ b/smol_gkos.ino @@ -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() { + +}