• Stars
    star
    160
  • Rank 234,703 (Top 5 %)
  • Language
    C
  • License
    MIT License
  • Created over 2 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🌟LilyGO T-PicoC3🌟

Quick start:

Notice

In TYPE-C, you can determine whether the current connection is PICO or ESP32C3 through positive and negative access.

When connecting, the onboard LED lamp will be indicated according to the connected chip (due to cable problems, it is possible that the indicator light is opposite to the actual connected chip, or even two LED lights at the same time, please replace another cable when two led lights up at the same time), the main judgment is that the currently connected device is displayed in the serial port name.

RP2040 :

Arduino

  1. Open up the Arduino IDE and go to File->Preferences.
  2. Unofficial libraries are used in the Arduino examples.In the dialog that pops up, enter the following URL in the "Additional Boards Manager URLs" field:
https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
  1. Go to Tools->Boards->Board Manager in the IDE
  2. Type "pico" in the search box and select "Add":
  3. Copy TFT_eSPI to the <C:\Users\Your User Name\Documents\Arduino\libraries> directory
  4. Open Arduino IDE, find TFT_eSPI in the file and example, the T-Display factory test program is located at TFT_eSPI -> FactoryTest, you can also use other sample programs provided by TFT_eSPI
  5. In the Arduino IDE tool options, select the development board Raspberry Pi Pico, Other keep the default
  6. Hold down the BOOT button, click the reset button, and release the BOOT button after a delay of one second or after waiting for the computer to eject a new disk
  7. Finally, click upload or drag the firmware to the new disk

MicroPython

  1. install Thonny Python IDE
  2. After the installation is complete, you need to click on the toolbar, click Run -> Select Interpreter, enter the following interface, select Raspberry Pi Pico, you need to configure Pico before configuring the following ports
  3. Press the BOOT button, click RES, then go back to Thonny Python IDE and change the port to the serial port where Pico is located. If you don't find it, click Install or update firmware.
  4. Enter or save as a script to run
from machine import Pin, Timer
led = Pin(25,Pin.OUT)
tim = Timer()
def tick(timer):
    global led
    led.toggle()
tim.init(freq=2.5, mode=Timer.PERIODIC, callback=tick)
  1. If you need to save to the chip, you need to click File->Save As->rp2040.
  1. For more usage methods, please refer to the Micro python documentation.

ESP32-C3

Arduino

  1. Open up the Arduino IDE and go to File->Preferences.
  2. In the dialog that pops up, enter the following URL in the "Additional Boards Manager URLs" field:
  • Stable release link:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
  • Development release link:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json
  1. Go to Tools->Boards->Board Manager in the IDE
  2. Type "EPS32C3 Dev" in the search box and select "Add":
  3. Click any "file-> example-> all esp32 esamle" and upload the run

âš âš âš  If you have an ESP32C3 upload error, please check this video. If you use a non-standard TYPE-C cable, the blue and green lights of the board will be on. At this time, it is impossible to judge which disconnection is C3. Please replace the data cable. The operation method in the video is to short-circuit the IO09 pad and GND before starting, and then plug it into the USB port. At this time, the ESP32C3 is in the waiting burning mode, and then write.

This video operation method only needs to be used when it cannot be written. If you are using Arduino, you don’t need to follow this method after the second and third times.


ESP32-C3 Upload method

  • ESP32C3 mainly uses ESP32-AT firmware here. If you want to use it as a coprocessor, you can modify the firmware.
  • Method 1: if the serial port is displayed with the word jatg when connecting to USB, you can upload it directly using USB. (please note that do not use USB pins to define other functions, otherwise it will be troublesome to upload next time).
  • Method 2: (if there is no serial port when connecting ESP32C3 USB) disconnect USB, short connect ESP32C3-IO9 and GND, and then reconnect USB (note that ESP32C3 device is selected to connect USB).
Product Product Link
T-PicoC3 Amazon(USA)
Pins RP2040
TFT Driver ST7789(240*135)
TFT_MISO N/A
TFT_MOSI 3
TFT_SCLK 2
TFT_CS 5
TFT_DC 1
TFT_RST 0
TFT_BL 4
PWR_ON 22
BOTTON1 6
BOTTON2 7
RedLED 25

More Repositories

1

TTGO-T-Display

C
938
star
2

TTGO_TWatch_Library

C
800
star
3

T-Display-S3

C
778
star
4

LilyGo-LoRa-Series

LILYGO LoRa Series examples
C
502
star
5

LilyGo-T-Call-SIM800

409
star
6

LilyGo-EPD47

C
400
star
7

T-Wristband

DIY Programmable Bracelet
C
310
star
8

LilyGO-T-SIM7000G

LilyGO T-SIM7000G
C++
276
star
9

T-Deck

C
250
star
10

LilyGo-T5-Epaper-Series

C
178
star
11

LilyGO-T-ETH-Series

C
167
star
12

T-Display-S3-AMOLED

An upgraded version of T-Display-S3. It has a high-resolution color screen and more configurable GPIO ports. Enrich your needs.
C
147
star
13

T-Echo

C
145
star
14

T-Dongle-S3

An ESP32S3 development board that can freely use WIFI, BLE, TF, LED, TFT_LCD functions.
C
127
star
15

T-SIM7600X

C++
123
star
16

LilyGO-T-A76XX

LilyGo A7670X A7608X SIM7670G series
C++
116
star
17

LilyGo-HiGrow

https://pt.aliexpress.com/item/32815782900.html
C++
115
star
18

LilyGo-AMOLED-Series

LilyGo AMOLED Series
C
113
star
19

T-TWR

Programmable walkie-talkie.
C
102
star
20

T-QT

C
100
star
21

lilygo-micropython

Micropython for LILYGO boards
C
98
star
22

T-CAN485

C++
91
star
23

TTGO-T-Watch

Obsolete, please visit https://github.com/Xinyuan-LilyGO/TTGO_TWatch_Library
C
91
star
24

LilyGo-T-PCIE

Python
89
star
25

T-Embed

C
85
star
26

T-Watch-2021

C
82
star
27

LILYGO-T-display-RP2040

C
82
star
28

LilyGo-T-RGB

C
82
star
29

T-ZigBee

Zigbee Ultra Low Power IOT Development Board
C
75
star
30

LilyGo-T-OI-PLUS

esp32-c3 development board with 16340 battery holder
C++
72
star
31

LilyGo-T-Relay

C
70
star
32

T-keyboard

mini ble Keyboard for IOS/Android/Windows
C
64
star
33

T-Impulse

Wristband with LoRa and GPS
C
51
star
34

LilyGo-Document

48
star
35

T-Internet-COM

C
48
star
36

LilyGo-T-SIM7080G

C++
47
star
37

LilyGo-T-Display-S2

C
47
star
38

T-HMI

C
46
star
39

LilyGo-Cam-ESP32S3

C
46
star
40

T-FPGA

The circuit board is an integrated ESP32S3 and FPGA (GW1NSR-LV4CQN48PC6/I5) control chip. With the power management AXP2101 can be used to switch the voltage of different BANK areas.
GLSL
43
star
41

T-Display-S3-Long

C
42
star
42

LilyGO-T-DisplayGD32

LilyGo GD32
C
37
star
43

T-Display-S3-Pro

C
35
star
44

LilyGO-T-Wristband-and-T-Glass

C
35
star
45

LilyGo-esp32s2-base

C
33
star
46

esp32-camera-plus-bigiot

Use TTGO-Camera-Plus to upload captured images to the BIGIOT platform every 10 seconds
C
30
star
47

LilyGo-T-Wristband-NRF52

C
28
star
48

TTGO_Camera_Mini

TTGO_Camera_Mini
C
26
star
49

Wrist-E-Paper

C
25
star
50

CH9102_Driver

24
star
51

T7-S3

ESP32-S3 Development Board
23
star
52

LilyGo-HeartRate-Kit

C
22
star
53

T-Halow

C
22
star
54

T-01C3

C++
21
star
55

T-Keyboard-S3

A Smart Screen Keyboard Based on ESP32s3
C
21
star
56

T-A7608X

21
star
57

LilyGo-TTV

C
20
star
58

T-Dongle-ESP32S2

C
20
star
59

T-Touch_Bar

C
20
star
60

LilyGo-Display-IDF

This project is an esp-idf sample repository for the LilyGo display family.
C
19
star
61

T-Panel

This is an RGB screen with a pixel resolution of 480x480, featuring dual chips on board, ESP32S3 and ESP32H2 chips, supporting 7-24V voltage input, RS485 communication, and more.
C
18
star
62

LilyGo-W5500-Lite

C++
17
star
63

T-RSC3

C++
16
star
64

ESP32_S2

15
star
65

RFID-UHF-reader

MagicRF M100/QM100
C++
14
star
66

T-Encoder-Pro

T-Encoder-Pro is a smart control knob equipped with a AMOLED screen, developed based on the ESP32S3R8 chip, which is controlled by a dial.
C
14
star
67

LilyGo-HAL

13
star
68

TTGO-Camer-Mic

TTGO Camera Microphone version
C
13
star
69

T-Encoder

C++
13
star
70

T-U2T

12
star
71

twatch-series-modules

C
12
star
72

T-Motor

C
12
star
73

LilyGo-eink-v2.3-micropython

Python
11
star
74

LilyGO-Mini-Epaper

C
11
star
75

LilyGO-T-HiGrow-LoRaWLAN

C++
11
star
76

T-solar

C
10
star
77

T-HC32

10
star
78

T-Track

C
10
star
79

LilyGO-T-Motion

LilyGO-T-Motion
10
star
80

T8-C3

AGS Script
9
star
81

T-HiGrow-Dashboard

Rich Text Format
8
star
82

T-Encoder-shield

Customize Macro Keys and APA102 RGB Full Color LED light.
C
8
star
83

TTCar_3D_Model

C++
8
star
84

T-Micro32-Series

AGS Script
7
star
85

T-0.99TFT

C++
7
star
86

T-Camera

OV2640 V16
HTML
7
star
87

T-Display-keyboard

C
7
star
88

T-Touchbar-AMOLED

C
7
star
89

T96-OLED-SSD1306

6
star
90

T5-ePaper-NewPanel

C
6
star
91

EPD47-HC08

6
star
92

SX1302_HAL_GATEWAY

6
star
93

T-NixieTube

C
5
star
94

LilyGo-K210-Script

Python
5
star
95

T-Vending

C++
5
star
96

LilyPi

C
5
star
97

LILYGO-T8

5
star
98

LilyGo-T-PicoPro

C
5
star
99

LilyGo-T5-Grayscale

C
5
star
100

T-QT-C6

TQT-C6 is a mini development board based on the ESP32C6 chip, which is only the size of two thumbnails. It features a 128x128px TFT full-color touch screen, a separate charging indicator light, and an independent battery. It can communicate with the power path management chip to modify the power bus status and limit values.
C
5
star