-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4014db0
commit a95f552
Showing
52 changed files
with
841 additions
and
238 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
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,27 @@ | ||
#ifndef BOARD_PINOUT_H_ | ||
#define BOARD_PINOUT_H_ | ||
|
||
#define HAS_SX1268 | ||
#define HAS_DISPLAY | ||
#define RADIO_HAS_XTAL | ||
|
||
#undef OLED_SDA | ||
#undef OLED_SCL | ||
#undef OLED_RST | ||
|
||
#define OLED_SDA 0 | ||
#define OLED_SCL 1 | ||
#define OLED_RST -1 // Reset pin # (or -1 if sharing Arduino reset pin) | ||
|
||
#define INTERNAL_LED_PIN 25 // Green Led | ||
#define BATTERY_PIN 35 | ||
|
||
#define RADIO_SCLK_PIN 6 | ||
#define RADIO_MISO_PIN 4 | ||
#define RADIO_MOSI_PIN 7 | ||
#define RADIO_CS_PIN 5 | ||
#define RADIO_DIO1_PIN 3 | ||
#define RADIO_RST_PIN -1 | ||
#define RADIO_BUSY_PIN 8 | ||
|
||
#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
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,28 @@ | ||
#ifndef BOARD_PINOUT_H_ | ||
#define BOARD_PINOUT_H_ | ||
|
||
#define HAS_SX1268 | ||
#define HAS_DISPLAY | ||
#define HAS_1W_LORA | ||
|
||
#undef OLED_SDA | ||
#undef OLED_SCL | ||
#undef OLED_RST | ||
|
||
#define OLED_SDA 22 | ||
#define OLED_SCL 21 | ||
#define OLED_RST -1 // Reset pin # (or -1 if sharing Arduino reset pin) | ||
|
||
#define INTERNAL_LED_PIN 2 | ||
|
||
#define RADIO_SCLK_PIN 18 | ||
#define RADIO_MISO_PIN 19 | ||
#define RADIO_MOSI_PIN 23 | ||
#define RADIO_CS_PIN 5 | ||
#define RADIO_RST_PIN 27 | ||
#define RADIO_DIO1_PIN 12 | ||
#define RADIO_BUSY_PIN 14 | ||
#define RADIO_RXEN 32 | ||
#define RADIO_TXEN 25 | ||
|
||
#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
Oops, something went wrong.