0.07
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Unofficial Liftmaster MyQ Controller
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0

Runtime

~> 0.12.0
 Project Readme

LiftmasterMyq

Ruby gem to control a Chaimberlain Liftmaster MyQ system. Partial documentation of the API is available at http://docs.unofficialliftmastermyq.apiary.io/

Installation

Add this line to your application's Gemfile:

gem 'liftmaster_myq'

And then execute:

$ bundle

Or install it yourself as:

$ gem install liftmaster_myq-X.X.X.gem (Note: X.X.X should be changed to the current version number)

Usage

To create the gem:

$ gem build /path/to/liftmaster_myq/liftmaster_myq.gemspec

To instantiate the system:

$ require 'liftmaster_myq'
$ system = LiftmasterMyq::System.new('your_username','your_password')

To see your device list in all it's ruby glory:

$ system.gateways
$ system.garage_doors
$ system.garage_doors.count

Have fun with:

$ system.garage_doors[0].open
$ system.garage_doors[0].close
$ system.garage_doors[0].status

Contributing

  1. Fork it
  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 new Pull Request