Tamaguino Update With Huge OLED
![P_20180526_175135.jpg](/proxy/?url=https://content.instructables.com/F6R/OOKV/JHQJI938/F6ROOKVJHQJI938.jpg&filename=P_20180526_175135.jpg)
Greetings!
Today we are going to update Tamaguino with a shiny new huge 2.7" OLED display, kindly provided by DFRobot!
As you may already know, Tamaguino was one of my first Arduino projects and my first game developed to run on a microcontroller. It is a clone of Tamagotchi virtual pet, which were very popular in the 90's, and gaining popularity in last few years too!
First version of Tamaguino used well known 0.96" I2C OLED that is widely available and used by many electronics hobbyists.
Tamaguino has it's own website: https://alojzjakob.github.io/Tamaguino/.
There you can find detailed information and schematics, source code and related libraires, 3D printable cases and much more. It was ported to Arduboy too! ;)
Now that you know the brief history of Tamaguino, lets make it shine on this new big OLED!
Parts Needed
![P_20180527_160908.jpg](/proxy/?url=https://content.instructables.com/FR7/XQPC/JHQJI945/FR7XQPCJHQJI945.jpg&filename=P_20180527_160908.jpg)
To build this project on a breadboard you will need the following:
- Arduino UNO or similar
- breadboard
- 2.7" OLED 128x64 Display Module from DFRobot
- jumper wires
- 3 push buttons
- piezo buzzer / speaker
Wiring
![P_20180527_160130.jpg](/proxy/?url=https://content.instructables.com/FRX/L8XY/JHQJI942/FRXL8XYJHQJI942.jpg&filename=P_20180527_160130.jpg)
Outermost OLED pins are labeled with 1 and 20, so double check if each connection is assigned to proper pin
Please follow this guide for connections:
- OLED PIN 1 (GND) -> ARDUINO GND
- OLED PIN 2 (VCC) -> ARDUINO 5V (should work on 3v3 too)
- OLED PIN 4 (DC) -> ARDUINO PIN 8
- OLED PIN 7 (SCK) -> ARDUINO PIN 13
- OLED PIN 8 (MOSI) -> ARDUINO PIN 11
- OLED PIN 15 (CS) -> ARDUINO PIN 10
- OLED PIN 16 (RST) -> ARDUINO PIN 9
Buttons and buzzer / speaker:
- BUTTON 1 -> ARDUINO PIN 5
- BUTTON 2 -> ARDUINO PIN 6
- BUTTON 3 -> ARDUINO PIN 7
- BUZZER + -> ARDUINO PIN 4
- BUZZER - -> GND
second button pins go to GND
We dont need to use resistors for buttons, because corresponding Arduino pins used for button inputs are initialized with internal pull up resistors in the code.
Uploading the Code
![Selection_026.bmp](/proxy/?url=https://content.instructables.com/FG8/VCDW/JHQJIATU/FG8VCDWJHQJIATU.bmp&filename=Selection_026.bmp)
Source code can be found here:
https://github.com/alojzjakob/Tamaguino
for this build you will need this specific version:
https://github.com/alojzjakob/Tamaguino/tree/maste...
It is a modified version of initial code to be compatible with this screen.
If you were building Tamaguino before, please note that buttons and buzzer are mapped differently on this compared to SSD1306 (I2C) version. It had to be re-arranged so we can use SPI dedicated pins on Arduino.
You will also need this library from Adafruit for SSD1325:
https://github.com/adafruit/Adafruit_SSD1325_Libra...
Now that you have everything ready, load the code and library into Arduino IDE and upload to the board.
Overview
![Tamaguino update with HUGE 2.7" OLED SSD1325 from DFROBOT](/proxy/?url=https://content.instructables.com/FH3/ABW8/JHQJIAWE/FH3ABW8JHQJIAWE.jpg&filename=Tamaguino update with HUGE 2.7" OLED SSD1325 from DFROBOT)
In the video above you can follow me step-by step and build your own Tamaguino pet!