8000 GitHub - mwhuss/hue: Work with Philips Hue from Ruby
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mwhuss/hue

 
 

Repository files navigation

Hue

Work with Philips Hue light bulbs from Ruby.

Code Climate Dependency Status Gem Version

Installation

Add this line to your application's Gemfile:

gem 'hue'

And then execute:

$ bundle

Or install it yourself as:

$ gem install hue

Usage

The first time you use it, it will automatically create a user for you. Doing this requires you to have pushed the button on your bridge in the last 30 seconds. If you haven't it will throw an exception and let you know you need to push the button. Simply press the button and run the command again.

From CLI:

$ hue all on
$ hue all off
$ hue light 2 on
$ hue light 2 --bri 20

From Ruby:

> client = Hue::Client.new
> light = client.lights.first
> light.on = true
> light.hue = 46920
> light.color_temperature = 100
> light.set_state({:color_temperature => 400, :transition => 100})

Contributing

See the contributing guide.

About

Work with Philips Hue from Ruby

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%
0