{"id":13613336,"url":"https://github.com/mcauser/micropython-ssd1327","last_synced_at":"2025-10-25T19:30:49.717Z","repository":{"id":54432747,"uuid":"93873457","full_name":"mcauser/micropython-ssd1327","owner":"mcauser","description":"MicroPython driver for SSD1327 128x128 4-bit greyscale OLED displays","archived":false,"fork":false,"pushed_at":"2022-11-03T11:44:00.000Z","size":2870,"stargazers_count":25,"open_issues_count":1,"forks_count":10,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-01T05:11:31.192Z","etag":null,"topics":["grove","grove-oled-display","micropython","oled-display","ssd1327"],"latest_commit_sha":null,"homepage":"","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/mcauser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-09T15:39:41.000Z","updated_at":"2023-09-24T12:26:21.000Z","dependencies_parsed_at":"2022-08-13T15:31:01.960Z","dependency_job_id":null,"html_url":"https://github.com/mcauser/micropython-ssd1327","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcauser%2Fmicropython-ssd1327","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcauser%2Fmicropython-ssd1327/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcauser%2Fmicropython-ssd1327/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcauser%2Fmicropython-ssd1327/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcauser","download_url":"https://codeload.github.com/mcauser/micropython-ssd1327/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219865145,"owners_count":16555931,"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":["grove","grove-oled-display","micropython","oled-display","ssd1327"],"created_at":"2024-08-01T20:00:44.567Z","updated_at":"2025-10-25T19:30:49.267Z","avatar_url":"https://github.com/mcauser.png","language":"Python","readme":"# MicroPython SSD1327\n\nA MicroPython library for SSD1327 128x128 4-bit greyscale OLED displays, over I2C.\n\nFor example, the [Grove - OLED Display 1.12\"](http://wiki.seeed.cc/Grove-OLED_Display_1.12inch/) which features a 96x96 display.\n\n![demo](docs/demo.jpg)\n\n## Example\n\nCopy the file to your device, using ampy, webrepl or compiling and deploying. eg.\n\n```bash\n$ ampy put ssd1327.py\n```\n\n**Hello World**\n\n```python\nimport ssd1327\n\n# using Software I2C\nfrom machine import SoftI2C, Pin\ni2c = SoftI2C(sda=Pin(21), scl=Pin(22)) # TinyPICO\n# i2c = SoftI2C(sda=Pin(0), scl=Pin(1)) # Raspberry Pi Pico\n# i2c = SoftI2C(sda=Pin(4), scl=Pin(5)) # WeMos D1 Mini\n\n# or using Hardware I2C\nfrom machine import I2C, Pin\ni2c = I2C(0) # TinyPICO sda=19, scl=18\n\ndisplay = ssd1327.SEEED_OLED_96X96(i2c)  # Grove OLED Display\n# display = ssd1327.SSD1327_I2C(128, 128, i2c)  # WaveShare, Zio Qwiic\n\ndisplay.text('Hello World', 0, 0, 255)\ndisplay.show()\n\ndisplay.fill(0)\nfor y in range(0,12):\n    display.text('Hello World', 0, y * 8, 15 - y)\ndisplay.show()\n```\n\nSee [/examples](/examples) for more.\n\n## Parts\n\n* [Grove OLED Display 1.12\"](https://www.seeedstudio.com/Grove-OLED-Display-1-12.html)\n* [Zio Qwiic OLED Display (1.5inch, 128x128)](https://www.sparkfun.com/products/15890)\n* [TinyPICO](https://www.tinypico.com/)\n* [Raspberry Pi Pico](https://core-electronics.com.au/raspberry-pi-pico.html)\n* [WeMos D1 Mini](https://www.aliexpress.com/item/32529101036.html)\n* [Grove Male Jumper Cable](https://www.seeedstudio.com/Grove-4-pin-Male-Jumper-to-Grove-4-pin-Conversion-Cable-5-PCs-per-Pack.html)\n\n## Connections\n\nTinyPICO ESP32 | Grove OLED\n-------------- | ----------\nGPIO22 (SCL)   | SCL\nGPIO21 (SDA)   | SDA\n3V3            | VCC\nGND            | GND\n\nRaspberry Pi Pico | Grove OLED\n----------------- | ----------\nGPIO1 (I2C0_SCL)  | SCL\nGPIO0 (I2C0_SDA)  | SDA\n3V3               | VCC\nGND               | GND\n\nWeMos D1 Mini | Grove OLED\n------------- | ----------\nD1 (GPIO5)    | SCL\nD2 (GPIO4)    | SDA\n3V3 (or 5V)   | VCC\nG             | GND\n\n## Links\n\n* [TinyPICO Getting Started](https://www.tinypico.com/gettingstarted)\n* [WeMos D1 Mini](https://www.wemos.cc/en/latest/d1/d1_mini.html)\n* [micropython.org](http://micropython.org)\n* [micropython docs](http://docs.micropython.org/en/latest/)\n* [Adafruit Ampy](https://learn.adafruit.com/micropython-basics-load-files-and-run-code/install-ampy)\n\n## License\n\nLicensed under the [MIT License](http://opensource.org/licenses/MIT).\n","funding_links":[],"categories":["Libraries","精选驱动库"],"sub_categories":["Display","显示类"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcauser%2Fmicropython-ssd1327","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcauser%2Fmicropython-ssd1327","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcauser%2Fmicropython-ssd1327/lists"}