Skip to content
New issue

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

Wrong PWM resolution #271

Closed
FernandoGarcia opened this issue Mar 22, 2022 · 2 comments
Closed

Wrong PWM resolution #271

FernandoGarcia opened this issue Mar 22, 2022 · 2 comments

Comments

@FernandoGarcia
Copy link

Hi!

In the versions above 2.6.3 the analogWrite function works with 8 bit resolution instead 10 bit.

Using the code below you will get 3.3 V instead 1.61 V on output.

#include "Arduino.h"

const int LED_PIN = D7;
const int PWM_VALUE = 500;

void setup()
{
  pinMode(LED_PIN, OUTPUT);
  analogWrite(LED_PIN, PWM_VALUE);
}

void loop()
{
}

Here some pics showing the problem.

Code:

230code

Platformio.ini using v3.2.0:

320ini

Oscilloscope measurements:

320osc

Platformio.ini using v2.6.3

263ini

Oscilloscope measurements:

263osc

Best regards.

@mcspr
Copy link
Contributor

mcspr commented Mar 22, 2022

See esp8266/Arduino#7456 and esp8266/Arduino#2895
Notice that this repo is for PlatformIO-specific build tools, Arduino Core related issues and it's development are at https://github.com/esp8266/Arduino

@FernandoGarcia
Copy link
Author

Thanks you very much for the info.
Sorry by post the issue in wrong place.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants