Riskable
Riskable
@caemor Should I also change functions like `update_partial_frame()` to take the rotation into account so that the `x` and `y` variables get swapped if it's 270° or 90°?
Example of how another `embedded-graphics` crate handles dimensions after rotation: https://github.com/jamwaffles/ssd1306/blob/master/src/lib.rs#L279 ...and: https://github.com/jamwaffles/ssd1306/blob/master/src/mode/buffered_graphics.rs#L237
Turns out it was pretty easy to fix this... Just a bit tedious (had to make small changes to `graphics.rs` for every supported display). Here's the confirmation that it works...
That sounds perfect 👍
All fixed I hope! I followed your instructions as best I understood them and also made `Delay()` work! Though to use it you have to do something like this: ```rust...
Just want to mention #10 so this PR gets tracked in that issue.
I made the changes necessary to make Clippy happy but they weren't to my code... That's why I left them alone previously (because I didn't want to mess up your...
I have decided to become the hero we all deserve! Just pushed something awesome: Not only do we now support sequences but _they can be of nearly limitless length_! Muwahahaha!...
Those two are not equivalents. I get the same error as I get when I changed it to `for key_event in events.chunks(chunk_length).next()`:  I'm still trying to figure it out....
Aha! Thanks to some help in Discord I've successfully made Clippy happy. I was *so* confused on that one, haha. I also re-ran both the `rust-analyzer` fmt and `rustfmt` on...