I want to shine LED in 64 of 255 duty cycles = level of brightness but it pops up this error (see picture). Can anybody tell me why and help me ? Thank you.
void setup() {
// put your setup code here, to run once:
}
void loop() {
analogWrite(11, 64)
delay{1000};
analogWrite(11, 0)
delay(1000);
// put your main code here, to run repeatedly:
}
