Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
7f494637
Unverified
Commit
7f494637
authored
Feb 06, 2023
by
Ha Thach
Committed by
GitHub
Feb 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add adafruit new board feather esp32s2 reserve tft (#7794)
parent
a13520c9
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
177 additions
and
1 deletion
+177
-1
boards.txt
boards.txt
+171
-0
variants/adafruit_feather_esp32s2_reversetft/variant.cpp
variants/adafruit_feather_esp32s2_reversetft/variant.cpp
+6
-1
No files found.
boards.txt
View file @
7f494637
This diff is collapsed.
Click to expand it.
variants/adafruit_feather_esp32s2_reversetft/variant.cpp
View file @
7f494637
...
...
@@ -31,7 +31,12 @@ extern "C" {
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
// This board has power control pins, and we must set them to output and high
// in order to enable the NeoPixels, TFT & I2C
pinMode
(
NEOPIXEL_POWER
,
OUTPUT
);
digitalWrite
(
NEOPIXEL_POWER
,
HIGH
);
pinMode
(
TFT_I2C_POWER
,
OUTPUT
);
digitalWrite
(
TFT_I2C_POWER
,
HIGH
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment