We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SpeedMode
Esp32 is the only chip which does have two groups of channels:
The way the LEDC driver is implemented right now.... you can't really use both groups simultaneously, as the peripheral is a... single one...
Changes necessary:
LEDCF
#[cfg(esp32)]
... because with just 8 channels, you can't drive 3 rgb leds, if I understand it correctly.... :)
The text was updated successfully, but these errors were encountered:
@Vollbrecht ^^^ I'll probably open a PR for this shortly. Need to drive 3 leds on an esp32... Please let me know if I'm missing something.
Sorry, something went wrong.
Addressed by #424
No branches or pull requests
Esp32 is the only chip which does have two groups of channels:
The way the LEDC driver is implemented right now.... you can't really use both groups simultaneously, as the peripheral is a... single one...
Changes necessary:
SpeedMode
configLEDCF
(F = fast) - with#[cfg(esp32)]
... because with just 8 channels, you can't drive 3 rgb leds, if I understand it correctly.... :)
The text was updated successfully, but these errors were encountered: