From: Ryan L Date: Thu, 21 Apr 2022 21:36:30 +0000 (+0100) Subject: Add support for the 3 input buttons on the board X-Git-Tag: 8.23.0~1^2~35 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/aec0a093526caa233f586989eecd7594cdd65086 Add support for the 3 input buttons on the board --- diff --git a/src/adafruit_blinka/board/linksprite/pcduino2.py b/src/adafruit_blinka/board/linksprite/pcduino2.py index a893949..af210be 100644 --- a/src/adafruit_blinka/board/linksprite/pcduino2.py +++ b/src/adafruit_blinka/board/linksprite/pcduino2.py @@ -25,7 +25,6 @@ SCL2 = pin.PB20 SCLK = D13 MOSI = D11 MSIO = D12 - CS = D10 @@ -44,4 +43,9 @@ D17 = pin.PH14 UART2_TX = D1 UART2_RX = D0 UART5_TX = D3 -UART5_RX = D2 \ No newline at end of file +UART5_RX = D2 + +#Misc +BACK_SW = pin.PH17 #Three buttons featured on the board +HOME_SW = pin.PH18 +MENU_SW = pin.PH19 \ No newline at end of file