Tyler Camp
Tyler Camp
@diogo7santiago it sounded like you were saying before that if either parent is an alpha then the children will always be an alpha, that's what I'm unsure about
I'm going to put this on hold for now, since breeding an alpha pal doesn't seem to be affected by the parents. The only difference would be in the final...
I set it to 20MHz to start with, and since I wasn't getting any output, I tried lowering it as one of the troubleshooting steps. In order to test output...
Sounds good, I'll give that a try later! Do you happen to know anything about that `cd` pin that's referenced? I'm currently seeing shimmering in the output when using LGFX...
Oh whoops, looks like "CD" was a typo that made its way throughout the sample codebase: ``` #define CD_PIN 15 // Data Command control pin - must use a pin...
@dekesone Could you provide your LGFX config?
@dekesone thanks for the reference, I found that I was missing this: ```cpp cfg.panel_width = cfg.memory_width = 800; cfg.panel_height = cfg.memory_height = 480; ``` I thought I saw init of...
@dekesone Got it! The general commands were correct but there were underlying operations that were missing (e.g. toggling CS pin) since we were interacting with `_bus_instance` directly. I updated the...
@tobozo Since this type of backlight control is specific to the particular `Panel_LCD`, I wonder if any of these minor refactors would be appropriate: ```cpp // additional class to be...
To summarize: The shimmering effect I saw was due to incomplete display init. Assigning `panel_width/height` and `memory_width/height` fixed this problem. We've figured out how to manage backlight control with LGFX...