-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change dotstar brightness to account for new 'dimmer' apa102's update makefile to not use py3
- Loading branch information
Showing
6 changed files
with
53 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CHIP_FAMILY = samd21 | ||
CHIP_VARIANT = SAMD21G18A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef BOARD_CONFIG_H | ||
#define BOARD_CONFIG_H | ||
|
||
#define __SAMD21G18A__ 1 | ||
|
||
#define VENDOR_NAME "Adafruit Industries" | ||
#define PRODUCT_NAME "ItsyBitsy M0 Express" | ||
#define VOLUME_LABEL "ITSYBOOT" | ||
#define INDEX_URL "http://adafru.it/3727" | ||
#define BOARD_ID "SAMD21G18A-ItsyBitsy-v0" | ||
|
||
#define USB_VID 0x239A | ||
#define USB_PID 0x000F | ||
|
||
#define LED_PIN PIN_PA17 | ||
|
||
#define BOARD_RGBLED_CLOCK_PIN PIN_PA00 | ||
#define BOARD_RGBLED_DATA_PIN PIN_PA01 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CHIP_FAMILY = samd21 | ||
CHIP_VARIANT = SAMD21E18A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef BOARD_CONFIG_H | ||
#define BOARD_CONFIG_H | ||
|
||
#define __SAMD21E18A__ 1 | ||
#define CRYSTALLESS 1 | ||
|
||
#define VENDOR_NAME "Adafruit Industries" | ||
#define PRODUCT_NAME "pIRKey" | ||
#define VOLUME_LABEL "PIRKEYBOOT" | ||
#define INDEX_URL "http://adafru.it/" | ||
#define BOARD_ID "SAMD21E18A-pIRKey-v0" | ||
|
||
#define USB_VID 0x239A | ||
#define USB_PID 0x0027 | ||
|
||
#define LED_PIN PIN_PA02 // not actually connected | ||
//#define LED_TX_PIN PIN_PA27 | ||
//#define LED_RX_PIN PIN_PB03 | ||
|
||
#define BOARD_RGBLED_CLOCK_PIN PIN_PA01 | ||
#define BOARD_RGBLED_DATA_PIN PIN_PA00 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters