Florida Map: Their Eyes Were Watching God
We just finished reading the book Their Eyes Were Watching God in english class. We had to do a project over the book. My group decided to laser cut a map of Florida which is where the book took place and then etch on where each part of the book took place. On the back of the map, we have each placed named out and a brief summary of what happened in that location.
Our history teacher gave us an art project after we finished reading the Epic Of Gilgamesh. I wanted to use the laser in some way and was trying to think of ways to use it. The book was originally written on rock tablets. I used one of the laser scanned copies of one of the original tablets. I used CorelDraw to vectorize the scan and make some other changes to make the tablet as clear as possible.
The Makerspace Business Club is a new club that was started this year. The students who sign up for it have to come up with products to develop, make, and then sell. My idea was to make custom laser etched wine glasses. On Grandparents Day at our school, we sold wine glasses with the school logo on the front and then laser etch their grandchildren’s name on the back. We now take any custom orders for wine glasses.
To make the coasters, I first design something on the computer that is related to the set I am making. For example, when I was making the New Zealand coasters, I did some research on their national icons. When I found something, I would search for a picture of it that I could use. I would then reformat it so it would look good on wood. Once I had 6 coasters, I would laser cut them. After they were done, I sanded the burned parts and sprayed it with a sealer that would make it waterproof.
This is a model room of the book Maus 1. Our class had to do a project on the book after we finished reading it. My group decided that we wanted to do something with the makerspace so we decided to make a model of one of the rooms described in the book. We had to choose how we where going to make things 3D, and if we were going to make the windows see through, and if we were going to make the door be able open and close or not mechanical. We ended up making the windows and doors out of vinyl. All the the objects in the room were made using a box design and then we glued them together.
Copying one code from a Raspberry Pi to another. Trying to set up a second hydroponics system.
#!/usr/bin/env python import RPi.GPIO import time import sys # The Raspberry Pi pins used to control the power strips setPin = 3 RPi.GPIO.setmode(RPi.GPIO.BCM) runTime = int(sys.argv[1]) timeUnit = 'sec' try: timeUnit = sys.argv[2] if timeUnit == 'min': runTime *= 60 except: print("") print('Defaulting time units to "sec" (other option: "min")') print('> ' + sys.argv[0] + ' sec') print("") #Set up the pin as an output RPi.GPIO.setup(setPin, RPi.GPIO.OUT) print('') startTime = time.strftime('%a, %d %b %y: %H:%M:%S', time.localtime()) print("Start pump at:", startTime) #Turn pin on RPi.GPIO.output(setPin, True) print('on') for i in range(runTime): time.sleep(1) if i%10 == 0: print( '{t}/{n} sec. ({p:.1f}%)'.format(t=i, n=runTime, p=100.0*i/runTime) ) #Turn pin off RPi.GPIO.output(setPin, False) print('off') endTime = time.strftime('%a, %d %b %y: %H:%M:%S', time.localtime()) print("End pumping at:", endTime)
This is Blas’s icosahedra and tetrahedra set that was made as a math project. Then he made it for a present. Later on the Makerspace Business Club started selling them. A tetrahedron has four sides each side has a triangle face. With that in mind Blas decided to add puzzle edges to the sides of the triangles. Inside the big tetrahedra there are a bunch of triangle sides that are used for having fun and creating cool things. It is possible to make an icosahedra with the little triangles. Each edge of the small triangles have either one or two tabs for attaching one to another. Which means there are four different types of puzzle piece. They are fun to play with.
Over the past two days I have been designing and lasering my organizer box. When I first tried to put it together the shelves that I added did not align with the cutout places it was supposed to fit in. So, I redesigned the shelves hoping it would work. But, when I printed it again it did not fit. I ended up sawing off the edges of the shelf where it was supposed to fit in—to make it only insert on one side of the box. I glued the other sides to make sure it wouldn’t fall. Hopefully this will work.
Sarah and I finished making our global rings. We used a photo editing software to make the perfect size for our pictures. We printed them out on cardstock paper with an inkjet printer. Then we glued the pictures in our rings using superglue and put a protective layer of epoxy over them.
Recent Comments