From 3fe13a72bd7e902cf799dfb2f12e33bdd18b179f Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Wed, 14 Apr 2021 16:22:47 +0200 Subject: [PATCH] microbit: remove LED constant There doesn't appear to be a user-controllable LED outside of the LED matrix. In fact, the pin assigned for this was P13, which was connected to the SPI SCK pin. --- src/machine/board_microbit-v2.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/machine/board_microbit-v2.go b/src/machine/board_microbit-v2.go index 491e2c9c..9d42bd49 100644 --- a/src/machine/board_microbit-v2.go +++ b/src/machine/board_microbit-v2.go @@ -5,11 +5,6 @@ package machine // The micro:bit does not have a 32kHz crystal on board. const HasLowFrequencyCrystal = false -const ( - LED = P13 - LED1 = LED -) - // Buttons on the micro:bit v2 (A and B) const ( BUTTON Pin = BUTTONA