Questions tagged [wii-balanceboard]
9 questions
5
votes
3 answers
Read data from Wii-balanceboard
Im trying to get the output from a Wii Fit (balance board). I can find the device via the C++ Bluetooth enumerators but attempts to connect via a windows socket are failing.
Im wondering if anyone has had success in such a direction (C++, windows)…

ethrbunny
- 10,379
- 9
- 69
- 131
5
votes
1 answer
How to connect wii balance board with android
How to connect Wii balance board with android?
Is there are any useful Library in android and how to use it?
My goal now is to connect it together and can receive data from it.
I'm new with android and Bluetooth development

JiratPasuksmit
- 672
- 7
- 18
2
votes
1 answer
Android 10 L2CAP connection IOException timeout Wii Balance Board
Background
A long time ago I was tasked with making a android app for the Wii Balance Board, after some screwing around I found that android no longer supported L2CAP. More research lead to understand that it was being re-added in Android 10. With…

Jameson
- 190
- 1
- 11
2
votes
1 answer
android 6+ How to connect wii balance board?
I made an Android app that connected and readed input fine with Wii balance board, based on Fitscales code.
My app worked like a charm with SDK 15 & 16 until Android 4.4 (KitKat), when Android stopped the Wii support.
Wii support is now re-enabled,…

Rudy
- 181
- 2
- 10
2
votes
0 answers
How to read and translate data from wii balance board
By the advise from How to connect wii balance board with android
Through 0x32,
According to data pattern below , Byte no. 0 and 1 is serve for core buttons. Another 8 bytes left is for the extension (Balance Board)
From my observation, Bit no.…

JiratPasuksmit
- 672
- 7
- 18
1
vote
1 answer
Unable to get C# server to play nicely with Python client on separate computers on same network
Any ideas on why I can't get a unity C# server and python client on the same network to play nicely?
C# server
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using UnityEngine;
public class…

AwesomePants
- 31
- 8
1
vote
1 answer
Wiibalance board java example
Does anyone have some source for connecting to a Wiibalance board using java? I have looked at Wiiboard_simple project on google, but it never seems to connect correctly. I have seen other examples in C# and javascript, but none in java.

Milhous
- 14,473
- 16
- 63
- 82
1
vote
0 answers
What signal does the front button of a Wii Board send, to be consumed by a Python script?
I am trying to write a daemon which would listen to incoming messages from a Wii Board and translate them into a weight (and send it further to an existing dashboard). This will heavily reuse some existing implementations.
I have the code from the…

WoJ
- 27,165
- 48
- 180
- 345
0
votes
0 answers
Is there a way to encode/decode hex like from Python 2?
Summary:
I'm creating a project using the Wii Balance Board and Python. I found a module to use in GitHub.
It is unfortunately written in Python 2. I fixed the code using 2to3, except I couldn't find a workaround for functions like x.decode('hex')…