3.11.12

Old MacDonald Hacked A Farm

My kids have a plastic farm toy. It neighs, it baas, and frankly, it grates. But since I tricked it out with a microcontroller brain, at least it can play Simon.




One of the marvels of parenthood is the sheer volume of noisy plastic junk that gets thrown your kids' way. It makes tremendous hacking fodder. For a while I had been watching to see if either of my daughters still expressed any interest in this moo-ing, oinking, polyethylene monstrosity. When the moment was right I grabbed it for re-purposing.


Grown up children of a certain age may recall a disc shaped memory game with the anthropomorphic name. Yes, I'm talking about Simon, from MB Electronics. In fact this evergreen toy never went away, and it has been recreated over and over in many different forms.

Getting a microcontroller to play Simon is, well, simple — as you might expect, given that the original game was programmed on a 4 bit chip with just 8192 bits of ROM. It helps that enthusiasts have catalogued everything about Simon that you could possibly want to know.

I chose to use the Atmel Attiny2313. This low cost chip had plenty of IO pins so that no multiplexing would be necessary. The code would easily fit in its 2K of flash memory, and 256 bytes of RAM could store enough moves for the most elephantine of memories.


Bastardizing the hardware


Hacking the toy was child's play. There was masses of room inside the base to work with. 3x AA batteries provided 4.5 V supply for a PCB with a blob on that made all the noises. The PCB had connections for 6 switches that triggered the noises. The switches were SPST and the corresponding noise inputs were all active high. I connected the switches to the microcontroller input pins via 10 kΩ series resistors with 100 kΩ pulldown resistors. I also chose 10 kΩ series resistors between the output pins and the noise-sensing inputs on the blob.

Hacked farm toy base showing microcontroller stripboard
Base of farm toy with microcontroller board

To add a bit of bling I tricked out the animal stalls with ultrabright LEDs. I sized the series resistors to for 30 mA current based on the forward voltage of the LEDs and the expected sag of the Attiny output. After a bit of experimentation, fitting different values of resistor into an 8 pin DIP socket, I settled on 22 Ω for the blue LED (3.6 V), 56 Ω for the green and yellow LEDs (2.1 V), and 68 Ω for the red LED (2.0 V). These values gave LED outputs of roughly equal intensity. 

Bottom of farm toy showing LEDsBottom of farm toy showing ICD header board and resistors for LEDs


I added a second slide switch to select between the original press-button-make-noise farm toy mode and the new Simon game. The farm mode turned out to be a useful debug setting to test each switch and the associated LED and animal noise.

Hacked farm toy showing new slide switch on base
Base showing new slide switch


Software implementation


The software retains the main features of the game, although there are a few adaptations:

  1. No multiplayer games
  2. Speed increases after 8, 14, and 20 moves instead of preset skill levels
  3. Much slower display of the move sequence initially so that complete animal noises are heard
  4. Extra time for user input to reach the various switches

The game was realized as a Finite State Machine. In START_SIMON mode the microcontroller initializes the random move vector. Next is LISTEN mode in which the sequence is displayed. REPEAT mode follows which seeks input from the user by way of the switches. Incorrect responses lead to LOSE mode. Correct responses lead back to LISTEN mode with a longer sequence unless the maximum length sequence is reached, in which case WIN mode follows. WIN and LOSE modes both lead back to START_SIMON mode. Moving the slide switch in REPEAT mode leads back to FARM mode.

Interrupt-based timing routines were used to debounce the switches and implement delays of various kinds. The microcontroller was allowed to idle between interrupts, thereby saving power. Pin change interrupts were used in preference to polling the switches. Pseudorandom sequences of moves were generated using a Galois Linear Feedback Shift Register.

Making the noises involved a bit of trickery. The animal noises were too long for quick play and needed to be truncated. The animal noise could be curtailed by sounding a different animal noise while the first noise was still sounding. The problem arose when sounding the same noise twice in a row. This was done by sounding a different intermediate noise very quickly.


Playability


The animal noises were rather long and the switches rather clumsy: both of these factors necessitated a  slow game pace. This actually made the game harder because you have to remember the sequences for longer than you otherwise would. The interrupt based debounce routine really seemed to work. The noise triggers worked fine. The pretriggering trick required to sound consecutive animal noises of the same kind was audible although not distracting. As for the kids? Well, they thought the LEDs were really cool but were just too young to grasp the memory game. As a parent I can vouch for the fact that they have a hard time retaining information between the ears for long than a millisecond or two.

Farm toy hack schematic
Microcontroller board schematic


Programming the Attiny2313


All the code, plus additional documentation such as the schematic above, is located in a github repository. The firmware uses the default fuse settings and the code has already been compiled. All that needs to be done is to upload the hex files onto the chip.

You will need some method of programming the AVR chip. USBasp programmers can be found on ebay for less than $5: I used a DIY version. Another option if your computer has a serial port is to make a simple bit banging programmer built into a DB9 connector. I didn't put an ISP header on the microcontroller board but it is easy enough to program the attiny2313 on a breadboard.

Once your target board is set up just type this into the command line, substituting the name of your programmer and its port location as appropriate:
avrdude -c usbasp -p t2313 -P com16 -U flash:w:simon1-attiny2313.hex

Materials


Atmel Attiny2313 in 20 pin DIP socket
7x 100 kΩ pulldown resistors for switches
7x 10 kΩ series input resistors for switches
6x 10 kΩ series output resistors for noise signals
4.7 kΩ pull-up resistor for Reset pin
100 nF bypass capacitor
8 pin DIP socket
4 ultrabright LEDs plus suitable resistors (22 Ω, 2x 56 Ω, 68 Ω)
striopboard
hookup wire
heat shrink
ribbon cable


Contruction tips


This should be an easy hack. But don't hot glue the LEDs in place like I did — if they burn out you'll have a tough time rewiring. Also I had to chop away the lip of the base to get it to fit back on flush.


Linkbacks


Hack A Day
Nerdcore

No comments:

Post a Comment