Sep 11

Friday Post: Orlando Maker Faire is here!

Hey All!

Orlando Maker Faire is here!!!  If you are in Orlando, make your way to the Orlando Science Center and come see 300+ exhibits including PiPlay and our custom arcade machine!

IMG_5647.JPG-1 IMG_5648.JPG-1

 

Factur, FamiLAB,  PiPlay, and Free Play Florida also have the worlds largest arcade machine being setup!  It stands at 15 feet tall and plays Bubble Bobble!

IMG_1827 playing_some_bubble_bobble__1024

The screen is 60″ and the buttons are 2.5″.  This thing is a beast.  More pictures to come!

I am exhausted from the push to get this all done today!  Hope to see you there!

Aug 28

Friday Post: Cool Stuff for Maker Faire Orlando

Hey All,

First week of the semester is done!  Can’t say everything went off without a hitch.  Ran into a nasty timezone issue between servers that I just couldn’t figure out.  One image, two servers cloned from that image.  When pulling the info from Python one reported UTC, the other Eastern.  Tried a bunch of different ways to force Eastern, but eventually used this:

from datetime import datetime
from pytz import timezone
fmt = "%m/%d/%Y %I:%M:%S"
# Current time in UTC
now_utc = datetime.now(timezone('UTC'))
print now_utc.strftime(fmt)
# Convert to US/Eastern time zone
now_eastern = now_utc.astimezone(timezone('US/Eastern'))
print now_eastern.strftime(fmt)

So yeah, that was a fun couple days trying to make sure our data wasn’t 4 hours off 🙂  Also, we might be getting hit by a Tropical Storm / Hurricane on Monday.  Yay.

Onto the cool stuff!  Maker Faire Orlando!

I am working on two projects for Maker Faire.  The first is with Factur and FamiLAB.  We are making the worlds LARGEST arcade cabinet!  It is so awesome.  I can’t wait for the electronics to come in so I can help wire it up.  I’ll be posting more details as we get closer to the Faire!

facturworldsbiggest facturforscale

The top panel was recently added on, but I couldn’t get a good picture of it because it is about an inch from touching the ceiling of the warehouse, and I just couldn’t get a good angle on it.  This thing is massive!  It’s a beast!

My personal project is a new modular arcade cabinet.

This is a 3 piece cabinet that breaks down into sections for easy movement, transporation, and customization.  My main requirement was that it had to fit in my PT Cruiser, everything from there was negotiable.  This is what it looks like so far:

2015-08-26 copy1/3 Model.  Cat for Scale.

IMG_5534 IMG_5533 IMG_5516 IMG_5514 IMG_5511Team working the ShopBot CNC Machine.

Also!

3D Printed a Bulbasaur using glow in the dark filament!

IMG_5543

Have a good weekend all!

-Shea