{"id":24994021,"url":"https://github.com/deshrike/pico-waveshare","last_synced_at":"2026-03-03T09:31:20.522Z","repository":{"id":226879227,"uuid":"769864522","full_name":"DeShrike/pico-waveshare","owner":"DeShrike","description":"Experiment with the RP2040 based board with a round 240x240 pixel display.","archived":false,"fork":false,"pushed_at":"2025-02-02T11:22:02.000Z","size":10266,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-19T11:02:12.422Z","etag":null,"topics":["24580","pico","rp2040","waveshare","waveshare-lcd"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DeShrike.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-03-10T09:32:26.000Z","updated_at":"2025-02-21T00:32:37.000Z","dependencies_parsed_at":"2025-04-12T03:13:30.039Z","dependency_job_id":null,"html_url":"https://github.com/DeShrike/pico-waveshare","commit_stats":null,"previous_names":["deshrike/pico-waveshare"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DeShrike/pico-waveshare","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeShrike%2Fpico-waveshare","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeShrike%2Fpico-waveshare/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeShrike%2Fpico-waveshare/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeShrike%2Fpico-waveshare/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeShrike","download_url":"https://codeload.github.com/DeShrike/pico-waveshare/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeShrike%2Fpico-waveshare/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30039884,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T06:58:30.252Z","status":"ssl_error","status_checked_at":"2026-03-03T06:58:15.329Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["24580","pico","rp2040","waveshare","waveshare-lcd"],"created_at":"2025-02-04T14:38:11.056Z","updated_at":"2026-03-03T09:31:20.443Z","avatar_url":"https://github.com/DeShrike.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Waveshare RP2040 Round Touch LCD 1.28\"\n\nExperiment with the RP2040 based board with a round 240x240 pixel display.  \n\nhttps://www.waveshare.com/rp2040-touch-lcd-1.28.htm\n\nRP2040-Touch-LCD-1.28\n\nSKU: 24580\n\n- Linux (tested on Ubuntu 18.04.1)\n- C / C++\n- Command line\n- Pico SDK\n- Docker (optional) \n- LVGL\n\n## Installation\n\n```console\ncd \u003cyour projects folder\u003e\ngit clone https://www.github.com/deshrike/pico-waveshare\ncd pico-waveshare\ngit submudule update --init\n```\n\n## Pico SDK\n\nYou can compile the Pico programs locally, or using Docker.\n\nTo compile locally, install the Pico SDK.\n\nTo use a Docker image, follow these steps:\n\n```console\ncd \u003cyour projects folder\u003e\nmkdir pico-waveshare\ndocker run -d -it --name pc1 --mount type=bind,source=${PWD},target=/home/dev lukstep/raspberry-pi-pico-sdk:latest\n```\n\nAfter a reboot, you will need to restart the container:\n\n```console\ndocker start pc1\n```\n\nConnect to the Docker container:\n\n```console\ndocker exec -it pc1 /bin/sh\n```\n\nInside the Docker container:\n\n```console\ncd /home/dev/pico-waveshare\n```\n\n## Compiling\n\n```console\ncd /home/dev/pico-waveshare  (if using Docker)\ncd \u003cyour projects folder\u003e/pico-waveshare (if you have installed the Pico SDK locally)\n\ncd cdjwatch\nmkdir build\ncd build\ncmake ..\nmake\n```\n\nThe build folder should now contain a file called cdjwatch.uf2.\nCopy this file to the device.\n\nFollow the same steps for the other examples: blink, canvastest and lvgltest.\n\n## Examples\n\n### blink\n\nPico example to blink the on-board LED (Backlight).\n\n### lvgltest\n\nExample from Waveshare. LVGL, Touch, LCD, Sensors.\n\n### cdjwatch\n\nSimple LVGL test showing some text and a logo.\n\n### canvastest\n\nMy own easy framework to write to the screen and read touch input.\n\nDrawing primitives: rectangle, circles, lines, ascii font, ...\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeshrike%2Fpico-waveshare","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeshrike%2Fpico-waveshare","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeshrike%2Fpico-waveshare/lists"}