Add SSD1315 OLED driver support#410
Add SSD1315 OLED driver support#410rm-hull merged 2 commits intorm-hull:mainrm-hull/luma.oled:mainfrom
Conversation
- Add ssd1315 device class with 128x64 default - Add unit tests and reference data - Add SSD1315 datasheet - Update documentation Fixes rm-hull#409
Summary of ChangesHello @Kihltech, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly expands the library's hardware compatibility by integrating support for the SSD1315 OLED display controller. This enhancement allows users to interface with a new range of OLED displays, complete with robust testing and updated project metadata to ensure seamless adoption and functionality. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request adds support for the SSD1315 OLED driver. The changes are well-structured, including updates to documentation, package configuration, and new unit tests. The implementation correctly treats the SSD1315 as a variant of the SSD1306. I have one suggestion to improve code conciseness by removing a redundant __init__ method.
|
Is there anything I can do to aid this pull request? |
24d984e to
9515b21
Compare
thijstriemstra
left a comment
There was a problem hiding this comment.
unfortunately the build is (temporarily) failing due to coveralls.io being down (coverallsapp/github-action#260) but that is unrelated to the code in this PR.
approving this, @rm-hull can you force merge this (skipping the coveralls error) once you approve it?
Changes
Added ssd1315 device class with 128x64 default resolution
Added unit tests and reference data
Added SSD1315 datasheet to documentation
Updated documentation and setup.cfg
Testing
All 5 new tests pass
Tested on physical hardware (Waveshare 0.49" OLED on Raspberry Pi 4B, using width=64, height=32)
Fixes #409