RP2040 based firmware and hardware for DIY Taiko no Tatsujin Drum Controllers
Go to file
Frederik Walk 6817ea5ea5 Add README
2023-07-22 21:32:10 +02:00
assets Add Menu Backgrounds 2023-07-16 21:34:00 +02:00
include Add MIDI device mode 2023-07-17 22:50:27 +02:00
libs Update to pico-sdk 1.5.1 2023-06-24 23:09:17 +02:00
pcb Add README for IO Board 2023-07-22 13:06:06 +02:00
src Add MIDI device mode 2023-07-17 22:50:27 +02:00
.gitignore Draw Idle Screen 2023-07-01 10:58:15 +02:00
.gitmodules Initial skeleton 2023-04-10 11:51:45 +02:00
CMakeLists.txt Add ssd1306 display driver 2023-05-22 00:08:23 +02:00
drum.jpg Add README 2023-07-22 21:32:10 +02:00
LICENSE Initial skeleton 2023-04-10 11:51:45 +02:00
README.md Add README 2023-07-22 21:32:10 +02:00

DonCon2040 - A RP2040 based Taiko no Tatsujin arcade controller

DonCon2040 is a firmware (and by extension a PCB) for DIY Taiko no Tatsujin arcade drum controllers based on the RP2040 microcontroller.

Big disclaimer: I've never played on or even touched a real arcade drum, so everything in this project is based on information I could scrape of the internet.

The firmware is pretty much tailored to this specific use case, if you are looking for something universal, ready-to-flash and on-the-fly configurable I'd recommend to have a look at more general approaches like GP2040-CE. If you however want build something more specialized or custom, feel free to use this project as a base, it is designed to be somewhat modular to be easily remodeled. See DivaCon2040 for an example on how this could look like.

DonCon2040

Features

  • Various controller emulation modes
    • HORI PS4-095 Taiko Drum for PS4*
    • HORI NSW-079 Taiko Drum for Switch
    • Dualshock 4*
    • Dualshock 3
    • Switch Pro Controller
    • XInput
    • MIDI
    • Debug mode (will output current state via USB serial)
  • Additional buttons via external i2c GPIO expander
  • Basic configuration via on-screen menu on attached OLED screen
  • Single WS2812 LED for trigger feedback
  • Drumroll counters on display

*: Will not work properly on an actual PS4 since there are measures to prevent unauthorized accessories from being used.

Building

See pico-sdk readme for a list of pre-requisites.

git submodule update --init
git -C libs/pico-sdk submodule update --init
mkdir build && cd build
cmake ..
make

If you want to use a local pico-sdk distribution instead of using git submodule, also see pico-sdk readme for alternatives.

Configuration

Few things which you probably want to change more regularly can be changed using an on-screen menu on the attached OLED display, hold both Start and Select for 2 seconds to enter the menu:

  • Controller emulation mode
  • LED brightness
  • Trigger thresholds and scale level
  • Enter BOOTSEL mode for firmware flashing

Those settings are persisted to flash memory if you choose 'Save' when exiting the Menu and will survive power cycles.

Defaults and everything else are compiled statically into the firmware. You can find everything in include/GlobalConfiguration.h. This covers default controller emulation mode, i2c pins, addresses and speed, default trigger thresholds, scale and debounce delay, button mapping, LED colors and brightness.

Debounce Delay / Hold Time

The debounce delay also implicitly serves as the hold time of the input after a hit. On some platforms inputs won't be registered properly if this time is too short. For example Taiko no Tatsujin on Switch needs at least 25 milliseconds.

If you notice dropped inputs even if the controller signals a hit on the LED/Display, try to increase this value.

Trigger Scale Level

To avoid false inputs for very hard hits, trigger levels of the non-hit pads are scaled dynamically. The trigger scale level defines how much trigger levels are increased.

Increase the value if you get false inputs on hard hits, decrease if simultaneous left and right hits are not registered properly.

Mind that the scaling is non-linear and changes in the higher end of the scale level range have a much larger impact.

Hardware

IO Board

The DonConIO board in the pcb subfolder is designed to be close to the original arcade hardware. It hosts a Seeed Studio XIAO RP2040 and provides signal conditioning for Sensatec GSS-4S* piezo impact sensors. See its README for details.

If you don't want to use this board, the firmware should be usable on most RP2040 boards with appropriate configuration. You may also use a more simple trigger solution, it only has to provide an analog trigger level to the ADC inputs to be compatible.

Controller Buttons and Display

Additional controller buttons and the display are attached to the same (or different if your board has more than one) i2c bus. For the display, use a standard SSD1306 OLED display with 128x64 resolution. The buttons need to be attached to a MCP23017 IO expander.

Mind that currently the display and buttons are mandatory to use the controller.

Physical construction

I'll only give a rough outline of the physical construction since I'm still not completely happy with its performance and I'm still experimenting with some alternatives:

  • The pads are made of 12mm thick multiplex boards. The outer diameter is ~42cm, the inner diameter is ~35cm.
  • Pads are mounted to another 20mm multiplex board with rubber dampeners. The backplates on the arcade drum seem to be thinner, but since those are sturdily mounted to the arcade machine, I figured some more mass couldn't hurt.
  • The rubber dampeners are 15mm of height and 20mm in diameter. The arcade drum seems to use tapered dampeners, but at least the tapered dampeners I could get my hands on felt too soft, so I went with straight ones.
  • For the drum skin I went with a 2mm natural rubber sheet covered by some canvas.

Acknowledgements