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
Apparently this breaking change commit was merged "recently" (3 years ago) esp8266/Arduino#7456
The text was updated successfully, but these errors were encountered:
Ah nope, was already fixed:
void initAnalogWrite() { #if defined(ESP32) constexpr unsigned nrLedChannelPins = NR_ELEMENTS(ledChannelPin); for (uint8_t x = 0; x < nrLedChannelPins; x++) { ledChannelPin[x] = -1; ledChannelFreq[x] = ledcSetup(x, 1000, 10); // Clear the channel } #endif // if defined(ESP32) #ifdef ESP8266 // See https://github.com/esp8266/Arduino/commit/a67986915512c5304bd7c161cf0d9c65f66e0892 analogWriteRange(1023); #endif // ifdef ESP8266 }
Sorry, something went wrong.
No branches or pull requests
Apparently this breaking change commit was merged "recently" (3 years ago)
esp8266/Arduino#7456
The text was updated successfully, but these errors were encountered: