Concept
While looking through the old computer art magazines, I came across a design that instantly reminded me of pixels and TV static. The random arrangement of small squares felt similar to the scattered and colourful pattern on an old television screen.After seeing this, I wanted to recreate something along those lines, using code to generate a pixelated display that mimics this static.
This project was the perfect opportunity to experiment with loops and randomness, especially when it came to generating different colors for each pixel. So, by using a loop to fill the screen with these randomly colored squares, I was able to create a simple yet visually interesting effect that kind of recreated the essence of this TV static.
Process
For this project, the TV frame and buttons were easy to set up, where I used basic shapes like rectangles and ellipses.
//tv fill(50); rect(100, 100, 300, 220, 30); // antenna stroke(50); line(150, 70, 200, 100); line(350, 70, 300, 100); ellipse(150, 70, 10, 10); ellipse(350, 70, 10, 10);
The most interesting part was creating the static effect on the screen. In this case I used used two nested for loops to generate the grid of small squares, each filled with a random color. This randomness gave the appearance of the moving static, similar to an old television with no signal. One challenge was making sure the pixels aligned correctly within the shape of the tv, which required adjusting the starting and ending values of the loops. Once that was fixed, the effect worked well, and I liked how the simple loop and random color values could create something visually engaging.
// pixels in tv for (let y = 120; y < 280; y += 10) { for (let x = 135; x < 355; x += 10) { fill(random(200), random(200), random(200)); rect(x, y, 10, 10); } } }
Reflections & Improvements for Future Work
Overall I’m very happy with how my project turned out. However if I were to improve this I could add more interactivity. To do this I could make the pixels change color when the mouse hovers over them or allow a mouse click to generate a new static pattern. I could also add like different channels to the tv, and add a remote control to allow the users to change channels.