missionfloyd

Results 192 comments of missionfloyd

The name is fine how it is. Everyone insists on coming up with ambiguous names for their projects. If you didn't know any better, what would you assume 'vim' or...

You can use Pillow's [transpose](https://pillow.readthedocs.io/en/stable/reference/Image.html?highlight=transpose#PIL.Image.Image.transpose) method to turn the entire image upside down. ```python image_rotated = image.transpose(Image.ROTATE_180) ```

The HAT doesn't work right with the Pi 0. You have to use the cable. They know about the problem and say they may fix it in the future.

Are you connecting VCC to 3.3V? Connecting it to 5V is what makes it crash.

That's the 880x528 black/white/red panel. Have you tried [epd_7in5b_HD_test.py](https://github.com/waveshare/e-Paper/blob/master/RaspberryPi%26JetsonNano/python/examples/epd_7in5b_HD_test.py)?

```python from PIL import Image img = Image.open('808080.png') # solid grey image img_dithered = img.convert('1') # uses floyd-steinberg dithering by default img_dithered.save('dithered.png') ``` PIL only supports Floyd-Steinberg, however.

If you'd like, I have one [here](https://github.com/missionfloyd/CitiesSkylinesLauncher).

The solution to this (for emulators that support it, anyway) is to move them into their own folder and make a playlist. ``` WING COMMANDER III - HEART OF THE...

Here's what I have. The commands this generates work when entered in the terminal, but for some reason don't work when run with Steam. This seems to be the case...