#define LED_PIN 11
void setup() {
Serial.begin(9600);
pinMode(LED_PIN, OUTPUT);
analogWrite(LED_PIN, 500); // changing the value of would change the intensity.
}
void loop() {
}
#define LED_PIN 11
void setup() {
Serial.begin(9600);
pinMode(LED_PIN, OUTPUT);
analogWrite(LED_PIN, 500); // changing the value of would change the intensity.
}
void loop() {
}