int freq = 5000; // 주파수 int ledChannel = 0; // 채널 (0 ~ 15 선택) int resolution = 10; // 해상도 (1 ~ 16bit resolution 선택) int R = 0;
voidsetup(){ Serial.begin(115200); ledcSetup(ledChannel, freq, resolution); // 지정된 채널, 주파수 및 해상도 설정 ledcAttachPin(RED_LED, ledChannel); // LED 핀과 채널 연결 }
voidloop(){ float raw = analogRead(analogPin); R = map(raw, 0, 4095, 0, 1023); // 12bit -> 10bit