{"id":13802114,"url":"https://github.com/mattytrentini/ssd1675a","last_synced_at":"2025-05-13T12:32:24.550Z","repository":{"id":142827835,"uuid":"109830914","full_name":"mattytrentini/ssd1675a","owner":"mattytrentini","description":"A Micropython driver for the SSD1675A","archived":false,"fork":false,"pushed_at":"2017-11-25T04:56:28.000Z","size":10,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-06T17:07:38.661Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/mattytrentini.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}},"created_at":"2017-11-07T12:10:34.000Z","updated_at":"2025-01-23T20:58:42.000Z","dependencies_parsed_at":"2023-03-30T12:35:06.835Z","dependency_job_id":null,"html_url":"https://github.com/mattytrentini/ssd1675a","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fssd1675a","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fssd1675a/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fssd1675a/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fssd1675a/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattytrentini","download_url":"https://codeload.github.com/mattytrentini/ssd1675a/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253942620,"owners_count":21988098,"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":[],"created_at":"2024-08-04T00:01:36.358Z","updated_at":"2025-05-13T12:32:24.301Z","avatar_url":"https://github.com/mattytrentini.png","language":"Python","funding_links":[],"categories":["Libraries"],"sub_categories":["Display"],"readme":"# Micropython SSD1675A driver\n\nThe [SSD1675](http://www.solomon-systech.com/en/product/advanced-display/Dot-Matrix_Bistable_Display/SSD1675/) \nis a commonly used controller for E-Paper displays manufactured by [Solomon Systech](http://www.solomon-systech.com/). \n\nThis driver is initially trying to support \n[Mike Rankin's ESP32 E-Paper board](https://twitter.com/mikerankin/status/916268694489096192) (thanks for the prototype Mike!)\nunder [Micropython](https://micropython.org/). However the intent is to provide a useful Micropython driver for\n_any_ SSD1675a-powered display.\n\n## Other libraries\n\n[Drewler's Arduino driver](https://github.com/drewler/arduino-SSD1675A) was _very_ helpful,\nespecially for initialization.\n\n[Radomir Dopieralski's drivers](https://bitbucket.org/thesheep/micropython-ili9341), particularly for the\n[SSD1606](https://bitbucket.org/thesheep/micropython-ili9341/src/1fd322f33fb68194e9a848d9fe5c74789aea15b8/ssd1606.py?at=default\u0026fileviewer=file-view-default), were also useful:\n\n[Peter Hinch's epaper library](https://github.com/peterhinch/micropython-epaper) was another useful reference.\n\n## Example\n\n```python\nimport ssd1675a\nfrom machine import Pin, SPI\neink = ssd1675a.SSD1675A(spi=SPI(1,\n                                 baudrate=100000,\n                                 mosi=Pin(23, Pin.OUT),\n                                 sck=Pin(18, Pin.OUT),\n                                 miso=Pin(19, Pin.IN)),\n                         cs=Pin(4, Pin.OUT),\n                         dc=Pin(16, Pin.OUT),\n                         busy=Pin(17, Pin.IN))\neink.rect(20, 20, 100, 100, 1)\neink.show()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattytrentini%2Fssd1675a","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattytrentini%2Fssd1675a","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattytrentini%2Fssd1675a/lists"}