Beispiel RGB LED Strip 12 Volt Variante mit einer Leitung pro Farbe

Dependencies:   mbed

Fork of RGBLEDStrip by smd.iotkit1.ch

https://developer.mbed.org/media/cache/components/components/img_0482.jpg.200x200_q85.jpg

LED Strips (RGB LED Streifen) eröffnen neue Möglichkeiten für die Dekorative Beleuchtungen von Gegenständen und Räumen.

LED Strips werden in Laufmetern mit einer definierten Anzahl von RGB LED's pro Meter verkauft.

Es gibt unterschiedliche Arten der Ansteuerung, alle LED einer Farbe, jedes RGB LED einzeln.

Im aktuellen Beispiel verwenden wird ein 12V LED Strip mit einem Anschluss pro Farbe. Diese brauchen einen Verstärker, z.B. MOSFET.

Die LED Strip wird an den FET D5-D7) Header (+ ist oben) angeschlossen und benötigen für jede Farbe ein DigitalOut (An/Aus) oder PwmOut (Dimming).

Anwendungen

  • Raumbeleuchtung
  • Dekorative Ausleuchtung von Gegenständen
Committer:
marcel1691
Date:
Sun Aug 16 21:30:33 2015 +0200
Revision:
2:4124539a4915
Erweitert um Eclipse/gcc4mbed Konfiguration

Who changed what in which revision?

UserRevisionLine numberNew contents of line
marcel1691 2:4124539a4915 1 # Copyright 2015 Adam Green (http://mbed.org/users/AdamGreen/)
marcel1691 2:4124539a4915 2 #
marcel1691 2:4124539a4915 3 # Licensed under the Apache License, Version 2.0 (the "License");
marcel1691 2:4124539a4915 4 # you may not use this file except in compliance with the License.
marcel1691 2:4124539a4915 5 # You may obtain a copy of the License at
marcel1691 2:4124539a4915 6 #
marcel1691 2:4124539a4915 7 # http://www.apache.org/licenses/LICENSE-2.0
marcel1691 2:4124539a4915 8 #
marcel1691 2:4124539a4915 9 # Unless required by applicable law or agreed to in writing, software
marcel1691 2:4124539a4915 10 # distributed under the License is distributed on an "AS IS" BASIS,
marcel1691 2:4124539a4915 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
marcel1691 2:4124539a4915 12 # See the License for the specific language governing permissions and
marcel1691 2:4124539a4915 13 # limitations under the License.
marcel1691 2:4124539a4915 14
marcel1691 2:4124539a4915 15 PROJECT := RGBLEDStrip
marcel1691 2:4124539a4915 16 NO_FLOAT_SCANF := 1
marcel1691 2:4124539a4915 17 NO_FLOAT_PRINTF := 1
marcel1691 2:4124539a4915 18
marcel1691 2:4124539a4915 19 include $(GCC4MBED_DIR)/build/gcc4mbed.mk
marcel1691 2:4124539a4915 20