Skip to content

Instantly share code, notes, and snippets.

View erichowey's full-sized avatar

Eric Howey erichowey

  • Talkroute Inc.
  • Las Vegas
View GitHub Profile
int leds = 9;
int increase = 12;
int decrease = 13;
int level = 20;
void setup()
{
pinMode(leds, OUTPUT);
pinMode(increase, INPUT_PULLUP);
pinMode(decrease, INPUT);