
hello. Nice to meet you. If you look at the picture, it is marked 'PWM' in 'PB_4'.
I tried driving it, but the PWM doesn't work. What's the reason?
Code: Select all
#define BACKLIGHT_LED PB4
void setup(){
pinMode(BACKLIGHT_LED, PWM);
analogWrite(BACKLIGHT_LED, 255);
}