hcwiid: Library to interface with the wiimote

[ gpl, library, system ] [ Propose Tags ]

HCWiid is a working userspace driver along with various applications implementing event drivers, multiple wiimote connectivity, gesture recognition, and other Wiimote-based functionality.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6.1
Change log CHANGELOG
Dependencies base (>=4 && <5), unix [details]
License GPL-2.0-only
Author Kiwamu Okabe <kiwamu@debian.or.jp>
Maintainer Ivan Perez <ivan.perez@keera.co.uk>
Category System
Home page https://gitorious.org/hcwiid
Source repo head: git clone git@github.com:ivanperez-keera/hcwiid.git
Uploaded by IvanPerez at 2014-05-01T10:28:40Z
Distributions Debian:0.0.6.1, NixOS:0.0.6.1
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 5941 total (21 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for hcwiid-0.0.2

[back to package description]
This is a refurbished version of hcwiid. It will include most of cwiid.
If you find something in cwiid which is not included here and you need it,
please let me know/send a pull request.

First things first: How the frag do I compile the tests in test/?

You need to do two things:
1) Compile the program with -rtsopts (enable RTS command line flags)
2) Run the program with +RTS -V0
   This will disable the internal ticks used for profiling, which
   in turn will make the runtime system not use the SIGALRM signal,
   which libluetooth uses for its own internal purposes and is necessary
   to connect to the wiimote.

   (This bit is the work of Paolo Capriotti, whose mastery of GHC
    baffles me every time.)