README.md in maclight-2.0.0 vs README.md in maclight-3.0.0

- old
+ new

@@ -1,8 +1,8 @@ # MacLight [![Dependency Status](https://gemnasium.com/busyloop/maclight.png)](https://gemnasium.com/busyloop/maclight) -MacLight lets you control the keyboard-LEDs (capslock, numlock) on your Mac. +MacLight lets you control the keyboard LEDs on your Mac or Macbook. ## Screenshot ![capslock](https://github.com/busyloop/maclight/raw/master/ass/screenshot_capslock.jpg?raw=true) @@ -15,11 +15,11 @@ ``` $ maclight --help Usage: maclight <command> -MacLight v1.0.0 - LED control utility +MacLight v3.0.0 - LED control utility Options: --version: Print version and exit --help, -h: Show this message @@ -33,19 +33,19 @@ ```ruby #!/usr/bin/env ruby require 'maclight' -# Turn both LEDs on -MacLight.capslock(true) -MacLight.numlock(true) +# Turn LEDs on +MacLight.all_leds(true) sleep 2 -# Turn both LEDs off -MacLight.capslock(false) -MacLight.numlock(false) +# Turn LEDs off +MacLight.all_leds(false) ``` -## Credits +## Notice -MacLight is based on HID demonstration code by [Amit Singh](http://googlemac.blogspot.de/2008/04/manipulating-keyboard-leds-through.html). +MacLight can currently only toggle all LEDs at once +and has only been tested on OSX 10.11.3 (El Capitan). +