Created
June 3, 2016 14:07
-
-
Save funzeye/71a76892c6a8de1e726cb2eb2decad08 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const int greenLEDPin = 9; | |
const int redLEDPin = 11; | |
const int blueLEDPin = 10; | |
const int redSensorPin = A0; | |
const int greenSensorPin = A1; | |
const int blueSensorPin = A2; | |
int redValue = 0; | |
int greenValue = 0; | |
int blueValue = 0; | |
int redSensorValue = 0; | |
int greenSensorValue = 0; | |
int blueSensorValue = 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment