Releases: elyons/pinduino
Added Data Port
This release includes a new module for the core pinduino library for controlling relays for high-voltage circuits. This module is called DataPort, and is accessible through the core pinduino library by calling the pinduino object (e.g., pd):
pd.port1()->high();
delay(75);
pd.port1()->low();
This would send a high signal down the first port of the pinduino, which would hold a relay or tranistor on for 75 milliseconds before being turned to low.
Updated dataStream functions
Fixed a minor bug in the dataStream function. Added two new functions for dataStreamNoTail that let the color change as the LED moves along the strip. Function names are:
dataStreamNoTail2RGB
dataStreamNoTail2Color
Updated dataStream functions
Updated and cleaned up the dataStream lighting effects. Also added in dataStreamNoTail (and dataStreamRGBNoTail) for dataStream effects without a fading tail.
Updated fadeIn/fadeOut functions for all addressable LEDs
Minor update with improved handling for fading in and out all addressable LEDs connected to a pinduino.