Skip to content

Commit

Permalink
paran u
Browse files Browse the repository at this point in the history
  • Loading branch information
caternuson committed Jan 26, 2022
1 parent 6398c2a commit dd787f5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions variants/gemma_m0/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ extern "C"
#define PIN_LED3 PIN_LED_TXL
#define LED_BUILTIN PIN_LED_13
// DotStar LED
#define INTERNAL_DS_DATA 3
#define INTERNAL_DS_CLK 4
#define PIN_DOTSTAR_DATA 3
#define PIN_DOTSTAR_CLK 4
#define DOTSTAR_NUM 1
#define INTERNAL_DS_DATA (3u)
#define INTERNAL_DS_CLK (4u)
#define PIN_DOTSTAR_DATA (3u)
#define PIN_DOTSTAR_CLK (4u)
#define DOTSTAR_NUM (1u)

/*
* Analog pins
Expand Down
6 changes: 3 additions & 3 deletions variants/itsybitsy_m0/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ extern "C"
#define PIN_LED PIN_LED_13
#define LED_BUILTIN PIN_LED_13
// DotStar LED
#define PIN_DOTSTAR_DATA 41
#define PIN_DOTSTAR_CLK 40
#define DOTSTAR_NUM 1
#define PIN_DOTSTAR_DATA (41u)
#define PIN_DOTSTAR_CLK (40u)
#define DOTSTAR_NUM (1u)

/*
* Analog pins
Expand Down
6 changes: 3 additions & 3 deletions variants/itsybitsy_m4/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ extern "C"
#define PIN_LED PIN_LED_13
#define LED_BUILTIN PIN_LED_13
// DotStar LED
#define PIN_DOTSTAR_DATA 8
#define PIN_DOTSTAR_CLK 6
#define DOTSTAR_NUM 1
#define PIN_DOTSTAR_DATA (8u)
#define PIN_DOTSTAR_CLK (6u)
#define DOTSTAR_NUM (1u)

/*
* Analog pins
Expand Down
10 changes: 5 additions & 5 deletions variants/trinket_m0/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ extern "C"
#define PIN_LED3 PIN_LED_TXL
#define LED_BUILTIN PIN_LED_13
// DotStar LED
#define INTERNAL_DS_DATA 7
#define INTERNAL_DS_CLK 8
#define PIN_DOTSTAR_DATA 7
#define PIN_DOTSTAR_CLK 8
#define DOTSTAR_NUM 1
#define INTERNAL_DS_DATA (7u)
#define INTERNAL_DS_CLK (8u)
#define PIN_DOTSTAR_DATA (7u)
#define PIN_DOTSTAR_CLK (8u)
#define DOTSTAR_NUM (1u)

/*
* Analog pins
Expand Down

0 comments on commit dd787f5

Please sign in to comment.