const byte ledPinG = 16;
const byte ledPinR = 17;

const int frequency = 10000;
const int ledChannel= 0;
const int resolution = 8;

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println("Hello, ESP32!");

  ledcSetup(ledChannel, frequency, resolution);
  ledcAttachPin(ledPinR, ledChannel);
}

void loop() {
  // put your main code here, to run repeatedly:
  byte brightness;
  for(int dutyCycle = 0; dutyCycle <= 100, dutyCycle=dutyCycle+5){
    brightness = map(dutyCycle, 0, 100, 0, 255);
    ledcWrite(ledChannel, brightness);
    Serial.println(brightness);
    delay(50);
  }
}
$abcdeabcde151015202530fghijfghij
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
led1:A
led1:C
r1:1
r1:2
led2:A
led2:C
r2:1
r2:2