Home

Awesome

MCUGotchi - A Tamagotchi P1 emulator for microcontrollers

Synopsis

MCUGotchi is a Tamagotchi P1 emulator for microcontrollers relying on the hardware agnostic Tamagotchi P1 emulation library TamaLIB.

STM32F072 Discovery Board OpenTama Board

For the time being, MCUGotchi supports the STM32F0 MCU from STMicroelectronics, more precisely the STM32F072 discovery board, and the OpenTama board based on a STM32L072, with either an SPI SSD1306 OLED screen or an SPI UC1701x LCD screen connected to it, but it can basically run on any STM32F0/STM32L0 based board almost out of the box, and on any STM32 MCU with some modifications.

For the STM32F072 discovery board, the expected connections are the following:

NamePIN
SSD1306 CLK PINPA5
SSD1306 DIN PINPA7
SSD1306 DC PINPA1
SSD1306 CE PINPA2
SSD1306 RES PINPA6
SSD1306 VCC PINVDD
SSD1306 GND PINGND
Left ButtonPB3/VDD
Middle ButtonPA0/VDD
Right ButtonPB2/VDD

MCUGotchi is also a good example of an embedded implementation of TamaLIB's abstraction layer.

Build instructions

MCUGotchi depends on several components:

  1. Clone MCUGotchi and its submodules:
$ git clone --recursive https://github.com/jcrona/mcugotchi.git
  1. Download/build/install the toolchain, OpenOCD and TamaTool. OpenOCD and the toolchain are expected to be in the parent folder of MCUGotchi, but you can place them wherever you want and adjust the first lines of mcugotchi/Makefile accordingly.
  2. Optional: Convert the ROM to rom_data.h and place it in mcugotchi/src (ROM_BUILT_IN should be enabled in mcugotchi/src/rom.c):
$ tamatool -r rom.bin -H > mcugotchi/src/rom.h
  1. Build MCUGotchi:
$ cd mcugotchi
$ make
  1. Connect your board and program it:
$ make flash
  1. Enable the USB Mode of MCUGotchi and transfer the ROM (it should be called rom0.bin).
  2. Try to keep your Tamagotchi alive !

License

MCUGotchi is distributed under the GPLv2 license. See the LICENSE file for more information.

Hardware information

The Tamagotchi P1 is based on an E0C6S46 Epson MCU, and runs at 32,768 kHz. Its LCD is 32x16 B/W pixels, with 8 icons. To my knowledge, the ROM available online has been extracted from a high-res picture of a die. The ROM mask was clear enough to be optically read. The pictures can be seen there (thx asterick for the link !).
I would love to see the same work done on a P2 and add support for it in TamaLIB/MCUGotchi !

__
Copyright (C) 2022 Jean-Christophe Rona