Skip to content

Commit

Permalink
starting Xiao
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Dec 4, 2024
1 parent 7371b8e commit b8eedab
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
24 changes: 24 additions & 0 deletions variants/XIAO_ESP32S3_WIO_SX1262/board_pinout.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#ifndef BOARD_PINOUT_H_
#define BOARD_PINOUT_H_

// LoRa Radio
#define HAS_SX1278
#define RADIO_SCLK_PIN 15
#define RADIO_MISO_PIN 13
#define RADIO_MOSI_PIN 12
#define RADIO_CS_PIN 14
#define RADIO_RST_PIN 2
#define RADIO_BUSY_PIN 25

// Display
#define HAS_DISPLAY

#undef OLED_SDA
#undef OLED_SCL
#undef OLED_RST

#define OLED_SDA 5
#define OLED_SCL 4
#define OLED_RST -1

#endif
8 changes: 8 additions & 0 deletions variants/XIAO_ESP32S3_WIO_SX1262/platformio.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[env:WEMOS-LOLIN32-OLED-DIY]
board = lolin32
build_flags =
${common.build_flags}
-D WEMOS_LOLIN32_OLED_DIY_LoRa
lib_deps =
${common.lib_deps}
${common.display_libs}

0 comments on commit b8eedab

Please sign in to comment.