View Pump and Valve test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int sValve_0 = 1; | |
int sValve_1 = 2; | |
int sValve_2 = 3; | |
int pump = 8; | |
void setup() { | |
Serial.begin(9600); | |
pinMode(sValve_0, OUTPUT); |
View hu_LED hoop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <AlaLedRgb.h> | |
AlaLedRgb Lv1; | |
AlaLedRgb Lv2; | |
AlaLedRgb Lv3; | |
AlaSeq Light1[] = | |
{ | |
{ ALA_OFF, 100, 100, alaPalNull }, |
View Object: Analog I_O and Enclosure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int redPot; | |
int RedGB; | |
int redLED; | |
int greenPot; | |
int RGreenB; | |
int greenLED; | |
int bluePot; | |
int RGBlue; |
View Object: LAB 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <AlaLedRgb.h> | |
AlaLedRgb rgbStripChill; | |
AlaLedRgb rgbStripBurn; | |
AlaLedRgb rgbStripoff; | |
AlaSeq Burn[] = | |
{ | |
{ ALA_OFF, 100, 100, alaPalNull }, | |
{ ALA_FIRE, 1000, 6000, alaPalFire }, |