HenkKalkwater / fitmetersync

Utitilty program that aims to sync your steps of the wii fit meter to your 3DS
GNU General Public License v3.0
15 stars 2 forks source link
3ds 3ds-homebrew wii-fit-meter wiiu

Fit Meter Sync

Warning This software is not ready for use yet. It is a non-functional prototype at most. I am not responsible for data loss, bricked 3DSs, dead SD cards, your cat being lost, or a thermonuclear crisis.

This tool syncs your 3DS step meter with the Fit Meter via the IR port of the 3DS.

Contributing

If you have a Wii Fit Meter and a 3DS (or another way to read data from the fit meter), could you create an Issue with the only issue template right now?

Suggestions about the protocol are welcome, as well as pull requests as long as they are somehow relevant to the roadmap or

Requirements

Current features

Roadmap

Before v0.1 <-- We are here

v0.1

v0.2

v1.0

v2.0

Directory overview

├── fms-3ds            # Project directory for the old 3DS application
│   └── src
├── fms-cli            # Project directory for the command-line based Linux application
│   └── src
├── libfms             # Cross-platform library for implementing the protocol and platform abstractions
│   └── src
│       ├── core       # Code for data types used in other folders
│       ├── platform   # Platform abstractions for threads, IrDA adapters etc
│       └── protocol   # Protocol implementations
├── LICENSES           # Text of used licenses
├── misc               # Other code
└── testing            # Dumps of communications between Wii U and Fit Meter

Building

This projct uses Meson, because Makefiles are a pain in the behind to use and write.

Build steps (not cross-compiling)

meson setup $builddir # Substitute $builddir with wherever you want to output your build files to
cd $builddir
meson compile

Build steps (Cross-compiling for the 3DS)

  1. Make sure devkitpro is installed with the packages for compiling to a 3DS.
  2. Edit 3ds_cross.txt and make sure that devkitpro is set to the path of your devkitpro installation
  3. Invoke meson as follows:
    meson setup $builddir --cross-file=3ds_cross.txt # Substitute $builddir with wherever you want to output your build files to
    cd $builddir
    meson compile

Thanks to:

Documentation gathered from

Included code from