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
1d3ff052
Unverified
Commit
1d3ff052
authored
Jan 17, 2022
by
Limor "Ladyada" Fried
Committed by
GitHub
Jan 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add variantInit setups for adafruit boards (#6076)
parent
b3b34032
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
331 additions
and
0 deletions
+331
-0
variants/adafruit_feather_esp32s2/pins_arduino.h
variants/adafruit_feather_esp32s2/pins_arduino.h
+1
-0
variants/adafruit_feather_esp32s2/variant.cpp
variants/adafruit_feather_esp32s2/variant.cpp
+45
-0
variants/adafruit_feather_esp32s2_reversetft/variant.cpp
variants/adafruit_feather_esp32s2_reversetft/variant.cpp
+37
-0
variants/adafruit_feather_esp32s2_tft/variant.cpp
variants/adafruit_feather_esp32s2_tft/variant.cpp
+37
-0
variants/adafruit_funhouse_esp32s2/variant.cpp
variants/adafruit_funhouse_esp32s2/variant.cpp
+37
-0
variants/adafruit_magtag29_esp32s2/variant.cpp
variants/adafruit_magtag29_esp32s2/variant.cpp
+37
-0
variants/adafruit_metro_esp32s2/variant.cpp
variants/adafruit_metro_esp32s2/variant.cpp
+37
-0
variants/adafruit_qtpy_esp32/pins_arduino.h
variants/adafruit_qtpy_esp32/pins_arduino.h
+60
-0
variants/adafruit_qtpy_esp32s2/variant.cpp
variants/adafruit_qtpy_esp32s2/variant.cpp
+40
-0
No files found.
variants/adafruit_feather_esp32s2/pins_arduino.h
View file @
1d3ff052
...
...
@@ -25,6 +25,7 @@
#define NEOPIXEL_NUM 1 // number of neopixels
#define NEOPIXEL_POWER 21 // power pin
#define NEOPIXEL_POWER_ON HIGH // power pin state when on
#define I2C_POWER 7 // I2C power pin
static
const
uint8_t
SDA
=
3
;
static
const
uint8_t
SCL
=
4
;
...
...
variants/adafruit_feather_esp32s2/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
// This board has a power control pin, and we must set it to output and high
// in order to enable the NeoPixels.
pinMode
(
NEOPIXEL_POWER
,
OUTPUT
);
digitalWrite
(
NEOPIXEL_POWER
,
HIGH
);
// This board has a power control pin, and we must set it to output and low
// in order to enable the I2C port.
pinMode
(
PIN_I2C_POWER
,
OUTPUT
);
digitalWrite
(
PIN_I2C_POWER
,
LOW
);
}
}
variants/adafruit_feather_esp32s2_reversetft/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
}
}
variants/adafruit_feather_esp32s2_tft/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
}
}
variants/adafruit_funhouse_esp32s2/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
}
}
variants/adafruit_magtag29_esp32s2/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
}
}
variants/adafruit_metro_esp32s2/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
}
}
variants/adafruit_qtpy_esp32/pins_arduino.h
0 → 100644
View file @
1d3ff052
#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#include <stdint.h>
#define EXTERNAL_NUM_INTERRUPTS 16
#define NUM_DIGITAL_PINS 40
#define NUM_ANALOG_INPUTS 16
#define analogInputToDigitalPin(p) (((p)<20)?(esp32_adc2gpio[(p)]):-1)
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
#define digitalPinHasPWM(p) (p < 34)
static
const
uint8_t
NEOPIXEL
=
5
;
static
const
uint8_t
NEOPIXEL_POWER
=
8
;
static
const
uint8_t
TX
=
32
;
static
const
uint8_t
RX
=
7
;
static
const
uint8_t
TX1
=
32
;
static
const
uint8_t
RX1
=
7
;
static
const
uint8_t
SDA
=
25
;
static
const
uint8_t
SCL
=
33
;
static
const
uint8_t
SDA1
=
22
;
static
const
uint8_t
SCL1
=
19
;
static
const
uint8_t
SS
=
27
;
static
const
uint8_t
MOSI
=
13
;
static
const
uint8_t
MISO
=
12
;
static
const
uint8_t
SCK
=
14
;
static
const
uint8_t
A0
=
15
;
static
const
uint8_t
A1
=
4
;
static
const
uint8_t
A2
=
27
;
static
const
uint8_t
A3
=
26
;
static
const
uint8_t
A4
=
25
;
static
const
uint8_t
A5
=
33
;
static
const
uint8_t
A6
=
32
;
static
const
uint8_t
A7
=
7
;
static
const
uint8_t
A8
=
14
;
static
const
uint8_t
A9
=
12
;
static
const
uint8_t
A10
=
13
;
static
const
uint8_t
SWITCH
=
0
;
static
const
uint8_t
T0
=
4
;
static
const
uint8_t
T3
=
15
;
static
const
uint8_t
T4
=
13
;
static
const
uint8_t
T5
=
12
;
static
const
uint8_t
T6
=
14
;
static
const
uint8_t
T7
=
27
;
static
const
uint8_t
T8
=
33
;
static
const
uint8_t
T9
=
32
;
static
const
uint8_t
DAC1
=
25
;
static
const
uint8_t
DAC2
=
26
;
#endif
/* Pins_Arduino_h */
variants/adafruit_qtpy_esp32s2/variant.cpp
0 → 100644
View file @
1d3ff052
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ha Thach (tinyusb.org) for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern
"C"
{
// Initialize variant/board, called before setup()
void
initVariant
(
void
)
{
// This board has a power control pin, and we must set it to output and high
// in order to enable the NeoPixels.
pinMode
(
NEOPIXEL_POWER
,
OUTPUT
);
digitalWrite
(
NEOPIXEL_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