const int ledPin = 25;
const int freq = 5000;
const int ledChannel = 0;
const int resolution = 8;
void setup() {
ledcSetup(ledChannel, freq, resolution);
ledcAttachPin(ledPin, ledChannel);
}
void loop() {
ledcWrite(ledChannel, 225 );
delay(15);
}