Jan 24

IPS LCD Upgrade for a GBA SP

Hey All,

Well this has been a week! Here’s to hoping President Biden can usher in some new progressive policies and finally have a government that takes the Coronavirus Pandemic seriously. All I want is my vaccination ASAP!

Tryign to take my mind off everythign I’ve been throwing myself into lots of projects that I KNOW I can complete. One of those was to upgrade one of my older GBA SP AGS-001 consoles with an awesome IPS LCD screen.

The difference between the original frontlit screen versus the new one is night and day!

This is a time-lapse of me refurbishing and upgrading a beat up original Japanese imported GameBoy Advance that used a front-lit screen.

I take it apart, clean it all out, then replace the screen with a back-lit IPS LCD and new casing for the screen.

The actual hardware swap took less than an hour including soldering the LCD brightness control wire and then me messing up and forgetting to put in the hinge locking screw the first time around.

The screen (and new cases) are easily found on eBay – https://www.ebay.com/itm/V2-IPS-GBA-SP-Backlight-Backlit-LCD-For-Game-Boy-Advance-SP-Pre-cut-Shell-Case/184107831403 – That’s the one I used!

I also found some awesome shiny “silk” green PLA filament and printed this giant Bulbasaur!

It came out so great!

Finally, the Raspberry Pi Foundation released a new board! The Rasberry Pi Pico! Their first microcontroller!

I haven’t had much need for advanced microcontrollers like these, a regular Arduino is plenty for the little hobby projects I work on, but for $5, I’m definitely going to see if I can swap these in at some point.

Have a great week all!

Nov 16

Things I did in 2020

So, like my last post stated, I did some things while stuck at home.

My absolute favorite project was this:

I followed this guide (https://github.com/geaz/simplyRetro-D8) and built this awesome 3D printable desktop arcade cabinet. It of course uses a Raspberry Pi running RetroPi and uses an awesome readily available 4 x 3 LCD screen!

And of course my little guy helping me build and test it 😀

I got a small CNC machine in January and hadn’t had time to use it until recently but I have been having fun making some videos of it in action.

That’s a 3040T CNC Machine. You can find a lot of them on eBay and various other importing sites. More fun hobbies that involve turning one thing into another thing 🙂

On that note, I repurposed my 4k LED display for a lot of statements this year!

Image
ImageImageImage

My house got egged for one of those statements. Worth it.

Image

I edited and 3D Printed a mini Dreamcast case for the Raspberry Pi! Did you know you can play Dreamcast games at 60FPS on the Pi4 now? No? WELL YOU CAN! Using Redream it’s totally possible! You can download the case files here https://thingiverse.com/thing:4539273.

And we got a new kitten!

Image

Say hi to Dash. Our Manx kitty. He’s kinda awesome.

If you’ve gotten to this part of the post, all I can say is thank you! It’s been a year. Please stay safe out there. Wear a mask. Keep on making. I’ve missed y’all!

-Shea

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