new LILYGO® T-Lora C6 works with radiolib #1370
ZappelundStill
started this conversation in
General
Replies: 1 comment
-
Cool, nice to see! If you could be bothered, it would be nice if you can open a Pull Request on RadioBoards to add this board to the repository there as a contributed board. And I recently also moved over all of my PIO projects to the pioarduino package, as none of the new boards is available in Arduino 2.x. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tested this module with the current version (7.1.1) and the following changes were successful:
SPIClass spiSX(SPI); SPISettings spiSettings(2000000, MSBFIRST, SPI_MODE0); SX1262 radio = new Module(18, 23, 21, 22, spiSX, spiSettings);
...
spiSX.begin(6, 1, 0, 18); // SCK/CLK, MISO, MOSI, NSS/CS
...
radio.setRfSwitchPins(14,15);
platformio.ini
[env:esp32-c6-devkitc-1] board = esp32-c6-devkitc-1 build_flags = -DT3_C6 platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.10/platform-espressif32.zip framework = arduino lib_deps = jgromes/RadioLib@^7.1.1
https://github.com/Xinyuan-LilyGO/LilyGo-LoRa-Series/blob/master/schematic/T3-C6_V1.0.pdf
Beta Was this translation helpful? Give feedback.
All reactions