#define LED_RED 11
#define LED_GREEN 10
#define LED_BLUE 9
void setup() {
// put your setup code here, to run once:
pinMode(LED_RED, OUTPUT);
pinMode(LED_GREEN, OUTPUT);
pinMode(LED_BLUE, OUTPUT);
analogWrite(LED_RED, 0);
analogWrite(LED_GREEN, 200); //Farbe einstellen
analogWrite(LED_BLUE, 255);
}
void loop() {
// put your main code here, to run repeatedly:
}