-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
312bdc9
commit 44d9732
Showing
5 changed files
with
172 additions
and
36 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
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,37 @@ | ||
#ifndef BOARD_PINOUT_H_ | ||
#define BOARD_PINOUT_H_ | ||
|
||
// LoRa Radio | ||
#define HAS_SX1262 | ||
#define RADIO_SCLK_PIN 12 | ||
#define RADIO_MISO_PIN 13 | ||
#define RADIO_MOSI_PIN 11 | ||
#define RADIO_CS_PIN 10 | ||
#define RADIO_DIO0_PIN -1 | ||
#define RADIO_RST_PIN 5 | ||
#define RADIO_DIO1_PIN 1 | ||
#define RADIO_BUSY_PIN 4 | ||
|
||
// Display | ||
#define HAS_DISPLAY | ||
|
||
#undef OLED_SDA | ||
#undef OLED_SCL | ||
#undef OLED_RST | ||
|
||
#define OLED_SDA 17 | ||
#define OLED_SCL 18 | ||
#define OLED_RST 16 | ||
#define OLED_DISPLAY_HAS_RST_PIN | ||
|
||
// Aditional Config | ||
#define HAS_AXP2101 | ||
|
||
// GPS | ||
#define HAS_GPS | ||
#define GPS_RX 8 | ||
#define GPS_TX 9 | ||
|
||
#define BOARD_HAS_PSRAM | ||
|
||
#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,12 @@ | ||
[env:ttgo_t_beam_s3_SUPREME_v3] | ||
board = esp32-s3-devkitc-1 | ||
board_build.mcu = esp32s3 | ||
build_flags = | ||
${common.build_flags} | ||
${common.usb_flags} | ||
-D TTGO_T_Beam_S3_SUPREME_V3 | ||
lib_deps = | ||
${common.lib_deps} | ||
${common.display_libs} | ||
lewisxhe/XPowersLib @ 0.2.4 | ||
adafruit/Adafruit SH110X @ 2.1.10 |