1 / 9

Team PCG November Program Review

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.

Télécharger la présentation

Team PCG November Program Review

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 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

  2. Project Overview Figure 1: Final Product (Upright)

  3. Milestones

  4. Additional Accomplishments • Changed Design • LEDs • PWM • Established fundamental functionality of project • Volume • Software functionality and integration

  5. Upcoming Milestones

  6. 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); … … } }

  7. 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); }

  8. Issues/Concerns • Prototype is not correct size • GUI • Supposed to be done by January 8 (before break is over)

  9. Conclusion • Design works on a small scale. Woohoo. • Spring Team Lead: Garrett • We shall prevail!

More Related