Calm down! Pocket Scouser is here

app screenshotThat’s right, all your scouse prayers have been answered. My first Android app is now officially on the market, and it’s free! It’s basically a scouse accent soundboard. You press the buttons and it says stuff in a scouse accent. You know, like how people from Liverpool talk. But more comedy.

It’s a pretty basic app, but I just wanted to get to grips with the Android platform. I also wanted something that was visually more interesting than the average Android app (yes I know I’m not a graphical wizard, but the bar is pretty low here), and wanted to make sure it supported all the different screen sizes in both portrait and landscape mode. The official dev guide says this is easy to do, but as soon as you start using custom graphics then it becomes a bit more challenging. Unfortunately this is a reality of the platform, so I felt it was important to try and do it right. So let me know if it’s displaying weirdly on your device!

I’ve learned a lot about Android in doing this little app, and I hope to write up a post soon with some tips for beginners so others don’t have to fall into the same traps.

If you’re reading this from your Android device, you can install the app directly with this link. Or if you’re a QR code kind of person:

QR code for app URL on market

Arduino Christmas tunes player

I made a thing! A festive Arduino thing!

It’s a Christmas tunes player, and lets you choose from four different Christmas songs to play. You select a tune by twisting the potentiometer, and the four LEDs give you feedback as to which song is selected. You then start the song playing by pressing the microswitch.

(OK so technically I made it last year, but have only just gotten round to documenting it now)

If you want to try this out yourself, all the necessary electronics are included in the amazing oomlaut starter kit, and you can get my source code here, which has full instructions in the comments.

Here’s a photo of the circuit itself:

Christmas Tunes circuit

Overhead view of circuit (big image, for great zooming justice)

It’s a bit chaotic on there, so here are the important bits:

  • Piezo speaker
    • Input from: Digital 9
    • Other pin: Ground
  • Potentiometer
    • Output to: Analog In 2
  • Microswitch
    • Output to: Digital 2 (tied to +5V using 10kΩ resistor (brown-black-orange))
    • Other pin: Ground
  • LEDs
    • Inputs from: Digital 3,4,5,6
    • Each LED goes to Ground via a 560Ω resistor (green-blue-brown)

Now obviously it doesn’t have to be a Christmas tunes player – you can put any tunes you want onto it! You can edit the source code and write a different tune using the simple grammar, which basically consists of a string of [note][duration]s, with a full stop (.) at the end. So for example, We Wish You a Merry Christmas looks like this:

d4g4g2a2g2f#2e4c4e4a4a2b2a2g2f#4d4f#4b4b2C2b2a2g4e4d2d2e4a4f#4g8,8.

You can also set a tempo for each song. I won’t bore you with all the details here, but if you want to write your own tunes then there are full instructions over at GitHub.