{"id":16266957,"url":"https://github.com/wezm/ssd1675","last_synced_at":"2025-08-19T09:15:12.854Z","repository":{"id":33864361,"uuid":"157529739","full_name":"wezm/ssd1675","owner":"wezm","description":"Rust driver for SSD1675 e-Paper display controller","archived":false,"fork":false,"pushed_at":"2023-08-06T12:52:40.000Z","size":271,"stargazers_count":66,"open_issues_count":9,"forks_count":15,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-02T13:01:18.308Z","etag":null,"topics":["embedded","embedded-hal","epaper","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wezm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2018-11-14T10:12:08.000Z","updated_at":"2025-03-08T20:10:00.000Z","dependencies_parsed_at":"2025-05-08T00:39:23.047Z","dependency_job_id":"ad955627-1fdf-4bc0-a514-73fa06b2cd99","html_url":"https://github.com/wezm/ssd1675","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/wezm/ssd1675","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wezm%2Fssd1675","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wezm%2Fssd1675/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wezm%2Fssd1675/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wezm%2Fssd1675/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wezm","download_url":"https://codeload.github.com/wezm/ssd1675/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wezm%2Fssd1675/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271129119,"owners_count":24703879,"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","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["embedded","embedded-hal","epaper","rust"],"created_at":"2024-10-10T17:43:30.671Z","updated_at":"2025-08-19T09:15:12.830Z","avatar_url":"https://github.com/wezm.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SSD1675 ePaper Display Driver\n\nRust driver for the [Solomon Systech SSD1675][SSD1675] e-Paper display (EPD)\ncontroller, for use with [embedded-hal].\n\n[![Build Status](https://travis-ci.org/wezm/ssd1675.svg?branch=master)](https://travis-ci.org/wezm/ssd1675)\n[![codecov](https://codecov.io/gh/wezm/ssd1675/branch/master/graph/badge.svg)](https://codecov.io/gh/wezm/ssd1675)\n[![crates.io](https://img.shields.io/crates/v/ssd1675.svg)](https://crates.io/crates/ssd1675)\n[![Documentation](https://docs.rs/ssd1675/badge.svg)][crate-docs]\n\n\u003cimg src=\"https://raw.githubusercontent.com/wezm/ssd1675/master/IMG_2198.jpg\" width=\"459\" alt=\"Photo of Inky pHAT ePaper display on Raspberry Pi Zero W\" /\u003e\n\n## Description\n\nThis driver is intended to work on embedded platforms using the `embedded-hal`\ntrait library. It is `no_std` compatible, builds on stable Rust, and only uses\nsafe Rust. It supports the 4-wire SPI interface.\n\n## Tested Devices\n\nThe library has been tested and confirmed working on these devices:\n\n* Red/Black/White [Inky pHAT] version 2 on Raspberry Pi Zero (pictured above)\n\n## Examples\n\n**Note:** To build the examples the `examples` feature needs to be enabled. E.g.\n\n    cargo build --release --examples --features examples\n\n### Raspberry Pi with Inky pHAT\n\nThe [Raspberry Pi Inky pHAT\nexample](https://github.com/wezm/ssd1675/blob/master/examples/raspberry_pi_inky_phat.rs),\nshows how to display information on an [Inky pHAT] using this crate. The photo\nat the top of the page shows this example in action. To avoid the need to\ncompile on the Raspberry Pi itself I recommend cross-compiling with the [cross]\ntool. With `cross` installed build the example as follows:\n\n    cross build --target=arm-unknown-linux-gnueabi --release --example raspberry_pi_inky_phat --features examples\n\nAfter it is built copy\n`target/arm-unknown-linux-gnueabi/release/examples/raspberry_pi_inky_phat` to\nthe Raspberry Pi.\n\n## Credits\n\n* [Waveshare EPD driver](https://github.com/caemor/epd-waveshare)\n* [SSD1306 OLED display driver](https://github.com/jamwaffles/ssd1306)\n* [SSD1322 OLED display driver](https://github.com/edarc/ssd1322)\n* [Pimoroni Python library for the Inky pHAT and Inky wHAT e-paper displays](https://github.com/pimoroni/inky)\n\n## License\n\n`ssd1675` is dual licenced under:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) **or**\n  http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\n[crate-docs]: https://docs.rs/ssd1675\n[cross]: https://github.com/rust-embedded/cross\n[embedded-hal]: https://crates.io/crates/embedded-hal\n[Inky pHAT]: https://shop.pimoroni.com/products/inky-phat\n[LICENSE-APACHE]: https://github.com/wezm/ssd1675/blob/master/LICENSE-APACHE\n[LICENSE-MIT]: https://github.com/wezm/ssd1675/blob/master/LICENSE-MIT\n[SSD1675]: http://www.solomon-systech.com/en/product/advanced-display/bistable-display-driver-ic/SSD1675/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwezm%2Fssd1675","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwezm%2Fssd1675","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwezm%2Fssd1675/lists"}