hleap: Web Socket interface to Leap Motion controller

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

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]

Properties

Versions 0.1.2.4, 0.1.2.5, 0.1.2.6, 0.1.2.7, 0.2.0.0, 0.2.0.0
Change log None available
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:22:04Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


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)