JOS – Updated!!!

I did it, I finally found some down time to update JOS to work with current libraries from Adafruit. Below is a link to the new code on Github. A few notes to look at are listed below.

First, this is code for the Touch Shield, but it can easily be changed to the breakout board, and don’t forget to uncomment the ‘#define USE_ADAFRUIT_SHIELD_PINOUT’ line in Adafruit_TFTLCD.h file.

Also, this sketch has pin 3 setup as the backlight on the shield. This way you have PWM control over the backlight. You can accomplish this by cutting the VCC trace and soldering the PIN3 jumper on the back of the shield. You can read more on how to do that here.

This sketch has EEPROM settings, if you have not used them before, the values will be zero and need to be set. There are notes about this in the sketch on lines 92 & 93.

If you don’t know what JOS is, you can check it out here. (What’s a JOS anyway?)

Happy sketching! The code is here: https://github.com/jersagfast/JOS—TFT-Menu-System

Really Small(s) GPS

Hi peeps, I have been wanting to make a small GPS device (GPS receiver and some sort of screen) that I could carry around for a while now, but I didn’t want it to be too big, so I made this. Mission accomplished.

This unit is explained in the video above, but is basically a GPS receiver, 1 CR1220 battery for the RTC on the GPS breakout, one of my Square Inch of Goodness boards, one 128×32 OLED display, three 6mm buttons, and a 400mAh Li-Po Battery (from Sparkfun). It even has FTDI headers on it so I can update the firmware with ease (with my own FTDI adapter!). The awesome part is that all of those things fit in an Altoids Smalls tin, measuring 2.15″ (W), 1.35″ (L), and .56″ (H), or 55mm (W), 34mm (L), and 14mm (H).

The GPS breakout board is from Adafruit and uses the MTK3339 GPS module, and man does it work well. I have had other GPS modules that worked, but it was a fight. If you’re thinking about putting GPS in a project, use this. They also have a great library for it. They even have the raw MTK3339 GPS module if you want to use your board. Read the Adafruit product page for all the features, there are many.

The 128×32 OLED display is also from Adafruit, it works well and has the typical OLED crispiness. Very easy to read, even in sunlight, for the size and you can even multiply the text size if you want to.

So I’m going up to NY in a few days, and I wanted a new and exciting way to talk with the TSA folks, so I figured this would work. (kidding) If only Hollywood had not trained everyone to think a gadget with a few wires and a flashing red LED, that they didn’t understand, was a bomb.. ugh. (not kidding)

*UPDATE – there is a set on Flickr for this with teardown pictures.

*UPDATE #2 – Oops, I forgot to put the link to the code on Github. 0_0

Fast Voltage Switching FTDI Adapter

I have been working more with 3.3 volt projects lately and wanted to make programming them with an FTDI adapter as easy as possible. Sure you can switch most FTDI adapters from 3.3 to 5 volts (the FT232RL chip has a built in 3.3 output as well as logic level selection), but it involves scratching a jumper wire and soldering pads. This isn’t bad to do once, but to go back and forth is time consuming and rough on the boards.

So, I made my own FTDI adapter with an easily changed jumper for voltage selection. I also added a power LED to let me know that it’s plugged in and ready to go, threw in some RX and TX indicator LED’s and all required caps (read the data sheet), and mini USB jack. I ordered the boards from OHSPark.com, and as always, they were great.

Eagle files are on my Github page, or you can grab just the schematic in PDF format here.

Adafruit has an FTDI Friend and Sparkfun has an FTDI Basic if your not up to soldering 28 Pin SSOP packages, or just want one. 🙂

One Square Inch of Goodness

So a while ago I discovered that I needed a microcontroller in a really tight space. I tried an ATmega328P PU (DIP package), but try as I may, It would not fit. The answer? The ATmega328P AU (TQFP) this is a much smaller package, and for an added bonus, it has 2 extra ADC’s. This a great little board to squeeze in various projects, and opens the door to some very cool stuff I have coming up. Some of you might remember I put this board in a project I did a while ago when space was very limited. It’s just a handy little board to have on hand. 🙂

In the video above, I show some soldering with TQFP packages, as well as a little soldering with hot air. I need to figure out a way to record video from my brain. It would make things so much easier..

Oh, I almost forgot, the flux pen I used, found at Sparkfun.

The Eagle files for this board are on my Github page. Or just the schematic PDF.

Serial or Speed..

This video above demonstrates the speed difference between serial enabled/disabled on an Arduino Uno while toggling a pin output. Just a really simple test of how fast it can pull a pin high and low (without using direct port manipulation), with and with out serial enabled. I think that was the smallest Arduino sketch I ever wrote..