Skip to content

Commit

Permalink
Add ARDUINO_TTGO_T_PICO_C3
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Jul 25, 2023
1 parent 8af0194 commit 8410072
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/BlynkEdgentNCP.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ class BlynkNcpClient
SerialNCP.setTX(SERIAL3_TX);
SerialNCP.setRX(SERIAL3_RX);
}
#elif defined(ARDUINO_TTGO_T_PICO_C3)
#define SerialNCP Serial2
void ncpInitialize() {
SerialNCP.setFIFOSize(2048);
SerialNCP.setTX(8);
SerialNCP.setRX(9);
}
#elif defined(ARDUINO_SAMD_NANO_33_IOT)
#define SerialNCP SerialNina
void ncpInitialize() {
Expand Down

0 comments on commit 8410072

Please sign in to comment.