-
Notifications
You must be signed in to change notification settings - Fork 15
Cumulative changes #24
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
base: master
Are you sure you want to change the base?
Conversation
Merge upstream changes into local
Codecov ReportPatch coverage has no change and project coverage change:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #24 +/- ##
==========================================
- Coverage 75.00% 74.91% -0.09%
==========================================
Files 6 6
Lines 284 279 -5
==========================================
- Hits 213 209 -4
+ Misses 71 70 -1 ☔ View full report in Codecov by Sentry. |
wezm
left a comment
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.
Thanks for this. Left a few comments.
| const ROWS: u16 = 212; | ||
| const COLS: u8 = 104; | ||
|
|
||
| // More documentation for LUTs can be found at https://github.com/pimoroni/inky/blob/master/library/inky/inky.py#L95 |
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.
Good idea but can you make this a permalink (press y on the GitHub page) so that if the code changes the link will still point at the right thing.
| // This is indeed a copy of Pimoroni's Inky LUTs. Saved here for reference. | ||
| // They license it out under the MIT license. Refer to LICENSE-MIT for more details. | ||
|
|
||
| // More documentation for LUTs can be found at https://github.com/pimoroni/inky/blob/master/library/inky/inky.py#L95 |
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.
Same here
| @@ -0,0 +1,49 @@ | |||
| // This is indeed a copy of Pimoroni's Inky LUTs. Saved here for reference. | |||
| // They license it out under the MIT license. Refer to LICENSE-MIT for more details. | |||
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.
We should credit Pimoroni in the LICENSE, please add
Copyright (c) 2018 Pimoroni Ltd.
to the top of LICENSE-MIT
|
|
||
| // More documentation for LUTs can be found at https://github.com/pimoroni/inky/blob/master/library/inky/inky.py#L95 | ||
| #[rustfmt::skip] | ||
| const LUT: [u8; 70] = [ |
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.
Can the example be updated to use the LUTs add to the crate?
Summary of changes