90 likes | 291 Views
Team PCG November Program Review. Primary Faculty Advisor: Dr. Nuxoll Secondary Faculty Advisor: Dr. Crenshaw Industry Advisor: Andy McConnell Client: Dr. Kevin Cantrell. Ben Co (Fall Team Lead), Wendelin Mueller, Garrett Gustafson, and Julia Weimar-East Project LightBox.
E N D
Team PCGNovember Program Review Primary Faculty Advisor: Dr. Nuxoll Secondary Faculty Advisor: Dr. Crenshaw Industry Advisor: Andy McConnell Client: Dr. Kevin Cantrell Ben Co (Fall Team Lead), Wendelin Mueller, Garrett Gustafson, and Julia Weimar-East Project LightBox
Project Overview Figure 1: Final Product (Upright)
Additional Accomplishments • Changed Design • LEDs • PWM • Established fundamental functionality of project • Volume • Software functionality and integration
Proof of Concept intbluePin = 13; // LED connected to PWM output 13 intredPin = 12; // LED connected to PWM output 12 intgreenPin = 11; // LED connected to PWM output 11 void loop() { int loopnum1 = 2; while (loopnum1 > 0) { //red analogWrite(bluePin, 255); analogWrite(redPin, 0); analogWrite(greenPin, 255); delay(1000); … … } }
Proof of Concept // fade out from max to min in increments of 5 points: for(intfadeValue = 255 ; fadeValue >= 0; fadeValue -=5) { // sets the value (range from 0 to 255): analogWrite(bluePin, 255); analogWrite(redPin, 255); analogWrite(greenPin, fadeValue); // wait for 30 milliseconds to see the dimming effect delay(30); } // fade in from min to max in increments of 5 points: for(intfadeValue = 0 ; fadeValue <= 255; fadeValue +=5) { // sets the value (range from 0 to 255): analogWrite(bluePin, 255); analogWrite(redPin, 255); analogWrite(greenPin, fadeValue); // wait for 30 milliseconds to see the dimming effect delay(30); }
Issues/Concerns • Prototype is not correct size • GUI • Supposed to be done by January 8 (before break is over)
Conclusion • Design works on a small scale. Woohoo. • Spring Team Lead: Garrett • We shall prevail!