You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i've written this code to test the simultaneous use of the four PWM channels on the WiFimini:
void setup()
{
// put your setup code here, to run once:
pinMode(6, OUTPUT);
pinMode(5, OUTPUT);
pinMode(14, OUTPUT);
pinMode(15, OUTPUT);
}
void loop()
{
// put your main code here, to run repeatedly:
int i=0;
for (i=0; i <= 255; i++){
analogWrite(6,i);
analogWrite(5,i);
analogWrite(14,i);
analogWrite(15,i);
delay(10);
}
}
On my board the 3rd and 4th PWM seems to have a glitch...
When some value below approx. 250 is written to PWM on pin 15 the PWM signal on pin 14 is gone
And when the value is above this value, the PWM on pin 14 is simply switched to high-
Can you confirm that?
The text was updated successfully, but these errors were encountered:
Hi,
i've written this code to test the simultaneous use of the four PWM channels on the WiFimini:
void setup()
{
// put your setup code here, to run once:
pinMode(6, OUTPUT);
pinMode(5, OUTPUT);
pinMode(14, OUTPUT);
pinMode(15, OUTPUT);
}
void loop()
{
// put your main code here, to run repeatedly:
int i=0;
for (i=0; i <= 255; i++){
analogWrite(6,i);
analogWrite(5,i);
analogWrite(14,i);
analogWrite(15,i);
delay(10);
}
}
On my board the 3rd and 4th PWM seems to have a glitch...
When some value below approx. 250 is written to PWM on pin 15 the PWM signal on pin 14 is gone
And when the value is above this value, the PWM on pin 14 is simply switched to high-
Can you confirm that?
The text was updated successfully, but these errors were encountered: