keyleds

Version, currently 1.0.01 version
  • 1.0.0latestApr 9, 2021

github.com/nickbclifford/keyleds.cr

A Crystal interface to keyleds

1 stars
0 dependents
License: GPLv3

Installation

# Add this to your shard.yml
dependencies:
  keyleds:
    github: nickbclifford/keyleds.cr
    version: ~> 1.0.0

Then run:

shards install

shard.yml

Crystal
1.0.0
License
GPLv3
Author
Nick Clifford

Dependencies

This version declares no dependencies.

README

keyleds.cr

A Crystal interface to the libkeyleds library.

License

As a derived work of keyleds, these bindings are licensed under the GNU GPLv3.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      keyleds:
        github: nickbclifford/keyleds.cr
  2. Run shards install

Usage

require "keyleds"

APP_ID = 1_u8

Keyleds::Device.open("/dev/hidraw1", APP_ID) do |device|
  puts device.name

  device.set_led_block(:logo, red: 0, blue: 255, green: 0)
  device.commit_leds
end

Contributing

  1. Fork it (https://github.com/nickbclifford/keyleds.cr/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors