hleap: Web Socket interface to Leap Motion controller

[ hardware, library, mit, program ] [ Propose Tags ]

This Haskell package contains functions for interfacing with Leap Motion controllers, <https://www.leapmotion.com/product/desktop>. It is based on the WebSocket API <https://developer.leapmotion.com/documentation/javascript/supplements/Leap_JSON.html> and inspired by <https://bitbucket.org/turion/jedinight/>.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.2.4, 0.1.2.5, 0.1.2.6, 0.1.2.7, 0.2.0.0
Dependencies aeson (>=0.10.0.0), base (>=4.8 && <4.9), containers (>=0.5.6.2), data-default (>=0.5.3), mtl (>=2.2.1), text (>=1.2.1.3), unordered-containers (>=0.2.5.1), websockets (>=0.9.6.1) [details]
License MIT
Copyright (c) 2016 Brian W Bush
Author Brian W Bush
Maintainer b.w.bush@acm.org
Category Hardware
Home page https://bitbucket.org/bwbush/hleap
Bug tracker https://bwbush.atlassian.net/projects/HLEAP/issues/
Source repo head: git clone https://bwbush@bitbucket.org/bwbush/hleap.git
Uploaded by BrianBush at 2016-01-30T18:14:39Z
Distributions
Reverse Dependencies 1 direct, 1 indirect [details]
Executables leap-tracker
Downloads 3279 total (14 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2016-02-12 [all 1 reports]

Readme for hleap-0.1.2.5

[back to package description]

Web Socket interface for Leap Motion controllers

This Haskell package contains functions for interfacing with Leap Motion controllers, <https://www.leapmotion.com/product/desktop>. It is based on the WebSocket API <https://developer.leapmotion.com/documentation/javascript/supplements/Leap_JSON.html> and inspired by <https://bitbucket.org/turion/jedinight/>.

It has been tested with Service Version 2.3.1+31549 of the Web Sockets server from Leap Motion.

Skeletal example

This simple example program prints all Leap Motion events:

main :: IO ()
main =
  runWithHandler def [setFocused True, setGestures True] $ \event ->
    print (event :: Event Float)