{"id":28754894,"url":"https://github.com/androidcrypto/esp32_c6_waveshare_st7789_starter","last_synced_at":"2025-06-17T01:39:58.737Z","repository":{"id":294411524,"uuid":"986887258","full_name":"AndroidCrypto/ESP32_C6_Waveshare_ST7789_Starter","owner":"AndroidCrypto","description":"Getting started with an ESP32-C6 Waveshare device with a mounted 1.47 inch TFT display with ST7789 chip","archived":false,"fork":false,"pushed_at":"2025-05-20T09:17:16.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-20T10:28:45.764Z","etag":null,"topics":["esp32","esp32-c6","spi","st7789","tft-display","waveshare"],"latest_commit_sha":null,"homepage":"https://medium.com/@androidcrypto/getting-started-with-an-esp32-c6-waveshare-lcd-device-with-1-47-inch-st7789-tft-display-07804fdc589a","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndroidCrypto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-20T09:09:34.000Z","updated_at":"2025-05-20T09:17:26.000Z","dependencies_parsed_at":"2025-05-20T10:38:57.074Z","dependency_job_id":null,"html_url":"https://github.com/AndroidCrypto/ESP32_C6_Waveshare_ST7789_Starter","commit_stats":null,"previous_names":["androidcrypto/esp32_c6_waveshare_st7789_starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndroidCrypto/ESP32_C6_Waveshare_ST7789_Starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndroidCrypto%2FESP32_C6_Waveshare_ST7789_Starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndroidCrypto%2FESP32_C6_Waveshare_ST7789_Starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndroidCrypto%2FESP32_C6_Waveshare_ST7789_Starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndroidCrypto%2FESP32_C6_Waveshare_ST7789_Starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndroidCrypto","download_url":"https://codeload.github.com/AndroidCrypto/ESP32_C6_Waveshare_ST7789_Starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndroidCrypto%2FESP32_C6_Waveshare_ST7789_Starter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260273567,"owners_count":22984531,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["esp32","esp32-c6","spi","st7789","tft-display","waveshare"],"created_at":"2025-06-17T01:39:53.381Z","updated_at":"2025-06-17T01:39:58.727Z","avatar_url":"https://github.com/AndroidCrypto.png","language":null,"readme":"# ESP32-C6 Waveshare with ST7789 1.47 inch TFT display Starter\nGetting started with an **ESP32-C6 Waveshare** device and an 1.47 inch TFT display with driver chip **ST7789**.\n\nThis is the accompanying repository for my article \"**Getting Started with an ESP32-C6 Waveshare LCD device with 1.47 inch  ST7789 TFT display**\": https://medium.com/@androidcrypto/getting-started-with-an-esp32-c6-waveshare-lcd-device-with-1-47-inch-st7789-tft-display-07804fdc589a.\n\nThe display is a 1.47 inch large TFT display with 172 x 320 pixels.\n\n## Settings for the display specific setup file\n\nI'm using a display specific setup file for the combination ESP32-C6 Waveshare with TFT display driver ST7789. This file contains e.g. the display driver, size and pins for the ESP32-device.  \n\n### Copy a file to the User_Setups folder\n\nPlease copy the file\n\n    Setup701_C6_WS_ST7789_172x320.h\n\nto the **User_Setups** folder.\n\n### Edit the User_Setup_Select.h file\n\nYou need to place the following line in the root folder's \"**User_Setup_Select.h**\" file\n\n    #include \u003cUser_Setups/Setup701_C6_WS_ST7789_172x320.h\u003e // ESP32-C6 Supermini, 80 MHz\n\nSecond: please comment all other \"#include...\" entries like this, especially the \"//#include \u003cUser_Setup.h\u003e\" entry.\n\n````\n// Example User_Setup files are stored in the \"User_Setups\" folder. These can be used\n// unmodified or adapted for a particular hardware configuration.\n#ifndef USER_SETUP_LOADED //  Lets PlatformIO users define settings in\n                          //  platformio.ini, see notes in \"Tools\" folder.\n///////////////////////////////////////////////////////\n//   User configuration selection lines are below    //\n///////////////////////////////////////////////////////\n// Only ONE line below should be uncommented to define your setup.  Add extra lines and files as needed.\n//#include \u003cUser_Setup.h\u003e                       // Default setup is root library folder\n// Setup file in folder Arduino/libraries (updates will not overwrite your setups)\n#include \u003cUser_Setups/Setup701_C6_WS_ST7789_172x320.h\u003e // ESP32-C6 Waveshare, 80 MHz\n````\n\n## Troubleshooting for upload problems\n\nI'm used to being able to start the upload directly on other boards, but this failed on my board. The reason is simple - the board is not automatically in upload mode. To resolve this problem,  I have to press the **Boot button** and hold it pressed, then press the **Reset button** and now release the **Boot button**. That's it, the board is in upload mode and receives the new code.\n\nBut that's not all: after uploading the sketch, you have to press the **Reset button** again to bring the board back to regular mode.\n\n## Important note\n\nYou need to modify the display library TFT_eSPI to get the code to work. Please find instructions on how to do this in my forked TFT_eSPI repository here on GitHub: [https://github.com/AndroidCrypto/TFT_eSPI](https://github.com/AndroidCrypto/TFT_eSPI).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroidcrypto%2Fesp32_c6_waveshare_st7789_starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandroidcrypto%2Fesp32_c6_waveshare_st7789_starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroidcrypto%2Fesp32_c6_waveshare_st7789_starter/lists"}