const int pwmPin = 13;
const int freq = 200000;
const int ledChannel = 0;
const int resolution = 8;
void setup() {
ledcAttach(13, 1, 8);
ledcWrite(ledChannel, 255);
}
void loop() {
}
const int pwmPin = 13;
const int freq = 200000;
const int ledChannel = 0;
const int resolution = 8;
void setup() {
ledcAttach(13, 1, 8);
ledcWrite(ledChannel, 255);
}
void loop() {
}