code stuff
This is my post [video] void setup() { // put your setup code here, to run once: //add serial communication Serial.begin(9600); //declaring digtal outputs for leds pinMode(9, OUTPUT); pinMode(10, OUTPUT); pinMode(11, OUTPUT); //setting up a digital input (pushbutton) pinMode(12, INPUT); digitalWrite(12, HIGH); } void loop() { // put your main code here, to run repeatedly: //is button being pressed? if (digitalRead(12) == 0) { //if so, is potentiometer in first third? if (analogRead(A0) 350 && analogRead(A0) 700) { digitalWrite(9, HIGH); digitalWrite(10, LOW); digitalWrite(11, LOW); } } else { //if button isnt pressed, set everything to LOW instead digitalWrite(9, LOW); digitalWrite(10, LOW); digitalWrite(11, LOW); } }