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
Hi,
ia am using the Arduino Due with SAM core 1.6.6, after the upgrade to 1.6.7 the Pin 13 in working as previously.
With analogwrite(13, xxx) the value is everytime high.
regards
The text was updated successfully, but these errors were encountered:
@formicamania please share an example sketch to show the behaviour you are seeing.
I am not seeing the issue with the following sketch, the built-in LED pulses.
const int pin = 13; void setup() { pinMode(pin, OUTPUT); } void loop() { for (int i = 0; i < 256; i++ ) { analogWrite(pin, i); delay(20); } for (int i = 256; i >= 0; i-- ) { analogWrite(pin, i); delay(20); } }
However, there were some changes introduced in this area in #3524.
Sorry, something went wrong.
Closing this due to lack of feedback.
No branches or pull requests
Hi,
ia am using the Arduino Due with SAM core 1.6.6, after the upgrade to 1.6.7 the Pin 13 in working as previously.
With analogwrite(13, xxx) the value is everytime high.
regards
The text was updated successfully, but these errors were encountered: