Creative Coding Week 10.5
								
								
								So I went back and tried to figure out things more clearly after I resolved my hardware and software issues, turns out things
								were not cooperating because I totally forgot to add the extra resistor that stops that interferance. 
								
	
								To test my switches and LED to make sure my wiring was all correct I set my board to have the RGB LED default as red 
								and switch to blue when one button is pressed and green when the other is pressed. 
								
	
								For the love game scenerio I set it up so that a couple would need to press the buttons together. When you do so, you'll get 
								a random color ((random 0,255) for red, green, and blue). You can hold it down and when you let go, you'll be presented 
								with your answer. I was thinking that if it came out more red you'll have a firey relationship, blue for a calm one, and green 
								for successful!
								
								
							
								
						
							
								home
                    while (!deck.isInOrder()) {
                    print 'Iteration ' + i;
                    deck.shuffle();
                     i++;
                    }
                    print 'It took ' + i + ' iterations to sort the deck.';