RainDrop Detector Light Up Umbrella Wearable

Hello all. For my final project I made a rain detecting umbrella. To get started the things you will need are: An Umbrella 1 Adafruit Circuit Playground 1 battery pack with batteries 1 JST 2 pin cable for the battery 3 Alligator clips 1 strip of 60 LEDS Scotch Tape 2 wire nuts The first…

Creative switch

Tools: Jar 2 LEDs Conductive Tape Wire Wire cutters Wire strippers Electrical tape Soldering iron Brass/Copper piece of metal Copper fabric Copper tape Line the inside of the lid and rim of the jar with either copper tape or conductive tape. Take four medium pieces of wire and one semi small sized and strip it…

Assignment 1- Julianna Kowalczyk

Below is the code to the first assignment.   PImage img; void setup() { size (500, 550); background (#0F1015); img=loadImage(“hi.JPG”); } void draw() { image(img, 130, 150); image(img, 130, 150, width/2, height/2); frameRate(4); if (mouseX>100); translate(mouseX, mouseY); textSize(25); text(“peace”, 10, 15); fill(random(150, 255), random(150, 255), random(150, 255)); } //<>//