Replies: 1 comment 4 replies
-
Possible, but at the moment unlikely. The goal of this particular library is to make composite video easily accessible to beginners, keeping the number of options low to minimize confusion. I expect developers who are advanced enough to want to switch between DAC_CHANNEL_1 and DAC_CHANNEL_2 will also be advanced enough to modify the library to suit their needs. Which I understand is exactly what you have done! However, this has not been the only request for advanced feature. I'm trying to figure out how to keep things beginner-friendly while still offering power for advanced users, but nothing well formed yet to announce. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As you know, there are two DAC_CHs on the ESP32.
However, the output of ESP_8_BIT_composite is fixed to CH1.
ex)
dac_output_enable(DAC_CHANNEL_1); // DAC, video on GPIO25
Is it possible to change the CH to switch between DAC_CHANNEL_1 and DAC_CHANNEL_2 instead of fixed?
Here is what I modified
https://github.com/chrmlinux/ESPDisplay/
Beta Was this translation helpful? Give feedback.
All reactions