Kaelin Laundry
Kaelin Laundry
The major issue I see here is that most of our current display API is really just exposing the PILlow drawing object. I think we do still have wrapper methods...
I agree with David here — I think the text mode functionality would be best suited for its own class and API. It's useful, but it isn't a replacement for...
That sounds excellent. Thanks! Apologies for being slow to respond; my internet connection is two tin cans and some string at the moment so I'm not checking GitHub very often.
I think we should leave it open even though it's deprioritized. This is always available if someone wants to take it on and is useful to reference what is/isn't implemented.
[`PLAY_NO_WAIT_FOR_COMPLETE`](https://ev3dev-lang.readthedocs.io/projects/python-ev3dev/en/stable/sound.html#ev3dev2.sound.Sound.PLAY_NO_WAIT_FOR_COMPLETE) specifies that the function should return immediately and leave the sound to play in the background. In other words, it means that the function is "non-blocking" — your code...
Hey @attilavago! Did you get a chance to test this? If not I can+will still update the docs, but I wanted to confirm this solved your issue.
`MoveTank` does not support two different types of motor by default. You can, if it's helpful, construct a `MotorSet` with the two different motors in it, and that will get...
Do we have interest in pursuing this? I never actually got to testing it on the EV3 but I can if the perf boost is beneficial.
That's without the Pillow patch, right?
I believe this also requires changing the Python library to use the native packer. Should be... ``` im.tobytes("raw", "RGB") ```