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 (>=1.3.1), base (>=4.8 && <5), containers (>=0.5.10), data-default (>=0.7.1), mtl (>=2.2.2), text (>=1.2.3), unordered-containers (>=0.2.9), websockets (>=0.12.5) [details]
License MIT
Copyright (c) 2016-19 Brian W Bush
Author Brian W Bush <code@functionally.io>
Maintainer Brian W Bush <code@functionally.io>
Category Hardware
Home page https://bitbucket.org/functionally/hleap
Bug tracker https://bwbush.atlassian.net/projects/HLEAP/issues/
Source repo head: git clone https://bitbucket.org/functionally/hleap.git
Uploaded by BrianBush at 2019-02-20T14:30:52Z
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 2019-02-20 [all 1 reports]

Readme for hleap-0.2.0.0

[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)