{"id":48109416,"url":"https://github.com/Hahihula/ESP32-C6-Touch-LCD-Rust-Demo","last_synced_at":"2026-04-20T01:01:15.242Z","repository":{"id":344780523,"uuid":"1182674035","full_name":"Hahihula/ESP32-C6-Touch-LCD-Rust-Demo","owner":"Hahihula","description":"ESP32-C6 Touch LCD Rust Demo","archived":false,"fork":false,"pushed_at":"2026-03-16T08:52:24.000Z","size":23,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-19T10:38:37.661Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/Hahihula.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-15T20:33:50.000Z","updated_at":"2026-03-16T08:54:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Hahihula/ESP32-C6-Touch-LCD-Rust-Demo","commit_stats":null,"previous_names":["hahihula/esp32-c6-touch-lcd-rust-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Hahihula/ESP32-C6-Touch-LCD-Rust-Demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hahihula%2FESP32-C6-Touch-LCD-Rust-Demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hahihula%2FESP32-C6-Touch-LCD-Rust-Demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hahihula%2FESP32-C6-Touch-LCD-Rust-Demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hahihula%2FESP32-C6-Touch-LCD-Rust-Demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hahihula","download_url":"https://codeload.github.com/Hahihula/ESP32-C6-Touch-LCD-Rust-Demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hahihula%2FESP32-C6-Touch-LCD-Rust-Demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32028547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"ssl_error","status_checked_at":"2026-04-20T00:17:31.068Z","response_time":55,"last_error":"SSL_read: 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":[],"created_at":"2026-04-04T16:00:33.627Z","updated_at":"2026-04-20T01:01:15.235Z","avatar_url":"https://github.com/Hahihula.png","language":"Rust","funding_links":[],"categories":["Projects"],"sub_categories":["`no_std`"],"readme":"# ESP32-C6 Touch LCD Rust Demo\n\nA `no_std` Rust demo for the Waveshare ESP32-C6-Touch-LCD-1.47 module.\n\n## Hardware\n\n- **Board**: ESP32-C6-Touch-LCD-1.47 (Waveshare)\n- **Display**: 172x320 RGB565 TFT LCD (JD9853 controller)\n- **Touch**: AXS5106L capacitive touch controller (I2C)\n- **IMU**: QMI8658 6-axis sensor (accelerometer + gyroscope)\n- **MCU**: ESP32-C6 (RISC-V, 160 MHz, 512 KB RAM, 8 MB Flash)\n\n## Features\n\n- SPI LCD display with RGB565 color format\n- Touch input detection with visual feedback (red circles at touch points)\n- IMU sensor readings (accelerometer + gyroscope)\n- Built-in temperature sensor\n- Button navigation between demo pages:\n  - **Page 0**: Touch demo - draw circles where you touch\n  - **Page 1**: IMU demo - display accelerometer/gyroscope X, Y, Z values\n  - **Page 2**: System info - chip info and temperature\n\n## Pin Configuration\n\n| Function | GPIO |\n|----------|------|\n| SPI SCK | 1 |\n| SPI MOSI | 2 |\n| SPI CS | 14 |\n| LCD DC | 15 |\n| LCD RST | 22 |\n| LCD Backlight | 23 |\n| I2C SDA | 18 |\n| I2C SCL | 19 |\n| Touch RST | 20 |\n| Touch INT | 21 |\n| Button | 9 |\n\n## Requirements\n\n- Rust toolchain with `rustup target add riscv32imc-unknown-none-elf`\n- `espflash` CLI: `cargo install espflash`\n- ESP32-C6 flashed with bootloader (see [ESP Rust Book](https://docs.espressif.com/projects/rust/book/))\n\n## Build \u0026 Flash\n\n```bash\n# Build and flash\ncargo espflash flash --release\n\n# Open serial monitor\ncargo espflash monitor\n```\n\nPress the button (GPIO9) to cycle through demo pages.\n\n## Dependencies\n\n- `esp-hal` 1.0.0-rc.0\n- `embassy-executor` for async runtime\n- `embedded-graphics` for 2D graphics\n- `mipidsi` for display driver\n- `axs5106l` for touch controller\n- `ph-qmi8658` for IMU sensor\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHahihula%2FESP32-C6-Touch-LCD-Rust-Demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHahihula%2FESP32-C6-Touch-LCD-Rust-Demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHahihula%2FESP32-C6-Touch-LCD-Rust-Demo/lists"}