Jason Axelson

Results 305 comments of Jason Axelson

I haven't found any documentation on the orientation (the pinout links to https://pinout.xyz/pinout/inky_impression# but that doesn't help me with the orientation), but the product page has an image that shows...

This is what I receive back from `Inky.EEPROM.read/0`: ``` iex([email protected])1> Inky.EEPROM.read {:ok, %Inky.EEPROM{ color: :unknown, display_variant: "7-Color (UC8159)", height: 192, pcb_variant: 12, timestamp: "2021-08-25 17:12:10.3", width: 88 }} ``` I've...

Some progress! This is effectively what I get if I skip using the cs0 pin entirely (and fix a couple minor bugs in the code): https://user-images.githubusercontent.com/9973/140674500-ee3d9e5d-9e9c-421e-b763-dff37219ea2f.mp4

Update, I'm able to display things now! By generating a buffer with (`w=width h=height`): ``` buffer = for y x > 100 -> true -> end # color = floor(0...

![2021-11-11 21 26 19](https://user-images.githubusercontent.com/9973/141427283-24cace40-f62a-4ef2-8cfc-b828884a7b82.jpg) ![2021-11-11 21 25 55](https://user-images.githubusercontent.com/9973/141427288-1a464f45-8292-4c9a-85aa-82f1c1fddf1c.jpg) Okay, making progress! The bars are *mostly* gone. They seem completely gone for some colors but not others. I'm not quite sure...

![2021-11-13 18 26 14](https://user-images.githubusercontent.com/9973/141667497-ac63c611-c935-40f8-ab13-daedd2c7921e.jpg) I finally got the coordinates working properly, when writing to the display we should treat it as if it's 300x896 instead of 600x448

Thanks! Next up I'm trying to figure out why it takes me 30 seconds to update but all the videos I can find online seem to take about 10 seconds...

As a work-around for this I am doing: ``` add_filter( "rest__query", function( $args, $request ) { $args['orderby'] = 'menu_order'; return $args; }, 10, 2 ); ``` So if you're filtering...

Thanks @cgross that works great for me.