-
Notifications
You must be signed in to change notification settings - Fork 23
Acep 7color #62
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: main
Are you sure you want to change the base?
Acep 7color #62
Conversation
It looks like this code is all geared towards single bit pixels. I think porting my |
Except I don't believe much of the e-ink infrastructure has actually been written for that library, which is why the release is still < 1.0.0. |
Ah, I see its still stubbed out. My bias is to move towards |
ok we chatted and maybe try to create a new function for setting pixels in 'any' layer from 0-7 rather than hardcoding two. |
this is not working and is probably not the correct approach but wanted to add what i had attempted
👋 Thanks for this pull request! Unfortunately, it looks like the automated continuous integration (CI) test(s) failed. These can be tricky to fix so we've written a guide on how to fix them locally. It has pages about running pre-commit locally and another about building the docs locally with sphinx. Thanks for contributing to CircuitPython! If you have more questions, feel free to join the Adafruit Discord and post in #circuitpython-dev. |
ill hack on it from here :) |
hihi @tannewt & @ladyada - here is the work i've tried so far on the ACeP support. still only getting black and white. i was trying to have it work with how the tricolor displays are written to but the issue with that, if i'm understanding everything correctly, is that the library expects two framebuffers for color displays and the acep only has one (i was referencing the arduino driver).
there's an if/else in _color_dup that checks if the black frame buffer and the color frame buffer are the same and if they are it recognizes it as a monochrome display. i have that commented out here for testing. i noticed in the circuitpython displayio version that there is a parameter that checks if it is an adv color display so maybe i should be adding something like that?