Skip to content

Commit

Permalink
Added D pin numbers (#4220)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitolicious committed Oct 1, 2020
1 parent 86e221d commit 9b2ae12
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions variants/firebeetle32/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ static const uint8_t MOSI = 23;
static const uint8_t MISO = 19;
static const uint8_t SCK = 18;

static const uint8_t D0 = 3;
static const uint8_t D1 = 1;
static const uint8_t D2 = 25;
static const uint8_t D3 = 26;
static const uint8_t D4 = 27;
static const uint8_t D5 = 9;
static const uint8_t D6 = 10;
static const uint8_t D7 = 13;
static const uint8_t D8 = 5;
static const uint8_t D9 = 2;

static const uint8_t A0 = 36;
static const uint8_t A1 = 39;
static const uint8_t A2 = 34;
Expand Down

1 comment on commit 9b2ae12

@pdabal
Copy link

@pdabal pdabal commented on 9b2ae12 Mar 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello,

This commit put duplicate definition for D0 to D9.
It supposed remove this changes.

Please sign in to comment.