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
bed9c96f
Commit
bed9c96f
authored
Dec 24, 2018
by
Verkehrsrot
Committed by
Me No Dev
Dec 24, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update board files for LoPy, LoPy4, T-Beam (#2241)
changed LORA_IO0 -> LORA_IRQ added LORA_RST added SS
parent
5af139bb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
variants/lopy/pins_arduino.h
variants/lopy/pins_arduino.h
+4
-3
variants/lopy4/pins_arduino.h
variants/lopy4/pins_arduino.h
+6
-3
variants/t-beam/pins_arduino.h
variants/t-beam/pins_arduino.h
+2
-1
No files found.
variants/lopy/pins_arduino.h
View file @
bed9c96f
...
...
@@ -17,9 +17,10 @@
#define LORA_MOSI 27 // GPIO27 - SX1276 MOSI
#define LORA_CS 17 // GPIO17 - SX1276 CS
#define LORA_RST 18 // GPIO18 - SX1276 RST
#define LORA_IO0 23 // GPIO23 - SX1276 IO0
#define LORA_IO1 23 // GPIO23 - SX1276 IO1 tied by diode to IO0
#define LORA_IO2 23 // GPIO23 - SX1276 IO2 tied by diode to IO0
#define LORA_IRQ 23 // GPIO23 - SX1276 IO0
#define LORA_IO0 LORA_IRQ // alias
#define LORA_IO1 LORA_IRQ // tied by diode to IO0
#define LORA_IO2 LORA_IRQ // tied by diode to IO0
static
const
uint8_t
LED_BUILTIN
=
0
;
// ->2812 RGB !!!
#define BUILTIN_LED LED_BUILTIN // backward compatibility
...
...
variants/lopy4/pins_arduino.h
View file @
bed9c96f
...
...
@@ -16,9 +16,11 @@
#define LORA_MISO 19 // GPIO19 - SX1276 MISO
#define LORA_MOSI 27 // GPIO27 - SX1276 MOSI
#define LORA_CS 18 // GPIO18 - SX1276 CS
#define LORA_IO0 23 // GPIO23 - SX1276 IO0
#define LORA_IO1 23 // GPIO23 - SX1276 IO1 tied by diode to IO0
#define LORA_IO2 23 // GPIO23 - SX1276 IO2 tied by diode to IO0
#define LORA_IRQ 23 // GPIO23 - SX1276 IO0
#define LORA_IO0 LORA_IRQ // alias
#define LORA_IO1 LORA_IRQ // tied by diode to IO0
#define LORA_IO2 LORA_IRQ // tied by diode to IO0
#define LORA_RST NOT_A_PIN
static
const
uint8_t
LED_BUILTIN
=
0
;
// ->2812 RGB !!!
#define BUILTIN_LED LED_BUILTIN // backward compatibility
...
...
@@ -31,6 +33,7 @@ static const uint8_t RX = 3;
static
const
uint8_t
SDA
=
12
;
static
const
uint8_t
SCL
=
13
;
static
const
uint8_t
SS
=
18
;
static
const
uint8_t
MOSI
=
22
;
static
const
uint8_t
MISO
=
37
;
static
const
uint8_t
SCK
=
13
;
...
...
variants/t-beam/pins_arduino.h
View file @
bed9c96f
...
...
@@ -17,7 +17,8 @@
#define LORA_MOSI 27 // GPIO27 - SX1276 MOSI
#define LORA_CS 18 // GPIO18 - SX1276 CS
#define LORA_RST 23 // GPIO23 - SX1276 RST
#define LORA_IO0 26 // GPIO26 - SX1276 IO0
#define LORA_IRQ 26 // GPIO26 - SX1276 IO0
#define LORA_IO0 LORA_IRQ // alias
#define LORA_IO1 33 // GPIO33 - SX1276 IO1
#define LORA_IO2 32 // GPIO32 - SX1276 IO2
...
...
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