Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/endocrimes/keylightctl
CLI for managing Elgato Keylight (Air)
https://github.com/endocrimes/keylightctl
elgato elgato-key-light keylight
Last synced: 2 months ago
JSON representation
CLI for managing Elgato Keylight (Air)
- Host: GitHub
- URL: https://github.com/endocrimes/keylightctl
- Owner: endocrimes
- License: gpl-3.0
- Created: 2020-04-29T08:23:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-05T23:49:37.000Z (about 2 years ago)
- Last Synced: 2024-10-14T13:10:49.670Z (3 months ago)
- Topics: elgato, elgato-key-light, keylight
- Language: Go
- Homepage:
- Size: 3.15 MB
- Stars: 39
- Watchers: 7
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# keylightctl
A command line tool for controlling Elgato [Key
Lights](https://www.elgato.com/en/gaming/key-light) and [Key Light
Airs](https://www.elgato.com/en/gaming/key-light-air).A library for interacting with the lights yourself is available at
[endocrimes/keylight-go](https://github.com/endocrimes/keylight-go).## Example
```bash
[keylightctl(master)] $ ./bin/keylightctl describe --all
+---+--------------------------+-------------+------------+-------------+
| # | NAME | POWER STATE | BRIGHTNESS | TEMPERATURE |
+---+--------------------------+-------------+------------+-------------+
| 0 | Elgato\ Key\ Light\ 861A | on | 50 | 295 |
+---+--------------------------+-------------+------------+-------------+
[keylightctl(master)] $ ./bin/keylightctl switch --light 861A off
[keylightctl(master)] $ ./bin/keylightctl describe --all
+---+--------------------------+-------------+------------+-------------+
| # | NAME | POWER STATE | BRIGHTNESS | TEMPERATURE |
+---+--------------------------+-------------+------------+-------------+
| 0 | Elgato\ Key\ Light\ 861A | off | 50 | 295 |
+---+--------------------------+-------------+------------+-------------+
[keylightctl(master)] $ ./bin/keylightctl switch --light 861A --brightness 25 on
[keylightctl(master)] $ ./bin/keylightctl describe --all
==> Found no matching lights during discovery
[keylightctl(master)] $ ./bin/keylightctl describe --all
+---+--------------------------+-------------+------------+-------------+
| # | NAME | POWER STATE | BRIGHTNESS | TEMPERATURE |
+---+--------------------------+-------------+------------+-------------+
| 0 | Elgato\ Key\ Light\ 861A | on | 25 | 295 |
+---+--------------------------+-------------+------------+-------------+
[keylightctl(master)] $
```