Skip to content

Instantly share code, notes, and snippets.

@funzeye
Created June 3, 2016 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funzeye/71a76892c6a8de1e726cb2eb2decad08 to your computer and use it in GitHub Desktop.
Save funzeye/71a76892c6a8de1e726cb2eb2decad08 to your computer and use it in GitHub Desktop.
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