int redPin=11;//red LED assigned to digital pin 11 int bluePin=6;//red LED assigned to digital pin 6 int tempPin=3;//Temperature Sensor Pin int temp;//this is the variabel that will store current temp int lowTemp=220; //calibrated low temp int highTemp=300;//calibrated high temp int blueVal;//PMW output val blue int redVal;//PMW output val red void setup(){ delay(5000); Serial.begin(9600); //used for trouble shooting only pinMode(redPin, OUTPUT); pinMode(bluePin, OUTPUT); } void loop(){ /* if(temp>highTemp){ highTemp=temp; }else if(templowTemp && temp