-
Notifications
You must be signed in to change notification settings - Fork 1.3k
RGBMatrix: document constructor arguments #8319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay! Style comments.
//| :param Sequence[digitalio.DigitalInOut] rgb_pins: The display's "RGB pins" | ||
//| :param Sequence[digitalio.DigitalInOut] addr_pins: The display's "address pins" | ||
//| :param digitalio.DigitalInOut clock_pin: The display's "clock pin" | ||
//| :param digitalio.DigitalInOut latch_pin: The display's "latch pin" | ||
//| :param digitalio.DigitalInOut output_enable_pin: The display's "output enable" pin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure why these are in quotes. It's not a "pretend" clock pin, which is sometimes what putting something in quotes means. I think you could drop the quotes. Also I would say "matrix" instead of "display".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed! & made some additional updates
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Closes: #8283