HE
HenkKalkwater/fitmetersync
Utitilty program that aims to sync your steps of the wii fit meter to your 3DS
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
- A 3DS
- A Wii U Fit Meter
Current features
- Recording infrared signals and saving them to pcap (Wireshark-compatible) files.
- TODO: add a wireshark protocol definition
- An attempt to emulate a Wii U, which fails for some reason still unknown
Roadmap
Before v0.1 <-- We are here
- Document the outer protocol
- Document the inner protocol
- Document a possible inner-inner protocol
v0.1
- Emulate a wii fit meter or wii u (so they'll sync data)
v0.2
- Sync the steps from the Fit Meter to the 3DS
v1.0
- Make a nice, simple GUI
v2.0
- Sync the rest of the fricking
owldata
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 compileBuild steps (Cross-compiling for the 3DS)
- Make sure devkitpro is installed with the packages for compiling to a 3DS.
- Edit 3ds_cross.txt and make sure that
devkitprois set to the path of your devkitpro installation - 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 compileThanks to:
- The creator of the new-hblauncher for the Makefile
- HenkKalkwater (creator)
- mrbob312 for modifying it
Documentation gathered from
- This page on iFixit telling the Wii Fit Meter uses IrDA. This was the spark that leaded me to write this project.
- The contributers to this project, because I lost a lot of hope until I encountered that project.
- This guy who is reverse engineering the Pokewalker, which seems to be similar to the Wii Fit Meter
- The 3DBREW page about IR
Included code from
On this page
Languages
C++81.3%Makefile9.4%Lua5.2%Python2.1%Meson2.0%
GNU General Public License v3.0
Created February 24, 2019
Updated January 1, 2026