Willkommen auf unserem Seminar-Blog

Immer auf dem aktuellen Stand bleiben

Dieser Seminar-Blog befindet sich noch im Aufbau und wird in den kommenden Tagen entsprechend verfeinert.

Member Login

Lost your password?

Registration is closed

Sorry, you are not allowed to register by yourself on this site!

You must either be invited by one of our team member or request an invitation by email at viad.info {at} zhdk {dot} ch.

06+07 Pulse-Width Modulation

10. November 2011

Aufgabe: Lasst eine LED kontinuierlich von Hell zu Dunkel und wieder zu Hell faden Material: LED, Vorwiderstand Ich habe einen Widerstand von 150Ω benutzt.

// LED ATMEN LASSEN

#define LED_PIN 10 // PWM enabled PIN

void setup()
{
pinMode(LED_PIN, OUTPUT); // Set the PIN as Output
}

void loop()
{
for(int i=0; i<=255; i++) {
analogWrite(LED_PIN, i);
delay(20);
}

for(int i=225; i>=0; i--) {
analogWrite(LED_PIN, i);
delay(20);
}
}