You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This class represents an RGB (red-green-blue) LED. An RGB LED is a light emitting diode that has three channels, one for each color. By varying the brightness of each of the three channels, an RGB LED can create any color.
It will send a voltage to each of three pins to control the brightness of each channel. The constructor should take the three pins as arguments and store them.
On Dec 5, 2016 9:42 PM, "Josh Alan" ***@***.***> wrote:
This class represents an RGB (red-green-blue) LED. An RGB LED is a light
emitting diode that has three channels, one for each color. By varying the
brightness of each of the three channels, an RGB LED can create any color.
It will send a voltage to each of three pins to control the brightness of
each color. The constructor should take the three pins as arguments and
store them.
Needed Arduino Functions:
pinMode() <https://www.arduino.cc/en/Reference/pinMode>
analogWrite() <https://www.arduino.cc/en/Reference/DigitalWrite>
The class should have the following public functions:
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ANSuOVbJiYYwc_Er7q3V4eR0Qwm3Wun-ks5rFPXcgaJpZM4LFC5E>
.
This class represents an RGB (red-green-blue) LED. An RGB LED is a light emitting diode that has three channels, one for each color. By varying the brightness of each of the three channels, an RGB LED can create any color.
It will send a voltage to each of three pins to control the brightness of each channel. The constructor should take the three pins as arguments and store them.
Needed Arduino Functions:
pinMode()
analogWrite()
The class should have the following public functions:
The text was updated successfully, but these errors were encountered: