Tweak the Logo: Using serial connection and the processing app to make a background change color
This project was based around using the Processing coding software in conjunction with Serial.write monitering the current angle of a potentiometer to change the background color on the Arduino logo. The components here are super simple, just being the potentiometer and the Arduino itself. The potentiometer works by outputting the current angle that is twisted to. It is connected to the power and ground, and its output pin is connected to the Analog 0 slot, which is needed to convey the exact degree it is at. This is by far the most complicated coding I have ever done on any of the Arduino projects, for two reasons. The first is that this time we had to use two applications, one being the Arduino IDE which had a simple code uploaded that just wrote the current value of A0/4 to the monitor. The tough part came in when we needed to use a secondary coding platform, "Processing", in order to modify the background color of the Arduino logo. This project was based ar...