{"id":17275210,"url":"https://github.com/mjaschen/elgato-light-controller","last_synced_at":"2026-02-13T03:02:24.590Z","repository":{"id":66529645,"uuid":"586200176","full_name":"mjaschen/elgato-light-controller","owner":"mjaschen","description":"Controls Elgato Keylight (Air).","archived":false,"fork":false,"pushed_at":"2024-12-09T07:41:36.000Z","size":7,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-09T01:32:36.799Z","etag":null,"topics":["elgato","elgato-key-light","elgato-key-light-air","keylight"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mjaschen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-07T09:46:40.000Z","updated_at":"2024-12-09T11:30:11.000Z","dependencies_parsed_at":"2025-03-26T13:43:10.792Z","dependency_job_id":"b0b59435-42b3-4c0e-9c8b-86f14a5192f0","html_url":"https://github.com/mjaschen/elgato-light-controller","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mjaschen/elgato-light-controller","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mjaschen%2Felgato-light-controller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mjaschen%2Felgato-light-controller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mjaschen%2Felgato-light-controller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mjaschen%2Felgato-light-controller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mjaschen","download_url":"https://codeload.github.com/mjaschen/elgato-light-controller/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mjaschen%2Felgato-light-controller/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274232026,"owners_count":25245856,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["elgato","elgato-key-light","elgato-key-light-air","keylight"],"created_at":"2024-10-15T08:55:40.485Z","updated_at":"2026-02-13T03:02:19.531Z","avatar_url":"https://github.com/mjaschen.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elc - Elgato Light Controller\n\nThis is a simple CLI programm for controlling Elgato Key Lights.\n\nI searched for a simple project for my very first steps in the Go programming language and decided a CLI controller for my Elgato light would be a good choice.\n\nOne could say this program is nothing else than a strongly typed shell script.\n\nTested with an Elgato Key Light Air.\n\n## Installation\n\n```shell\n# Puts `elc` binary into $HOME/bin\nmake install\n\n\n# Build and run from current directory\nmake elgato-light-controller\n./elgato-light-controller\n```\n\n## Configuration\n\nThere's only one important configuration value – the light's URL. There are two ways to provide the URL to the program:\n\n1. Command-line option: `elgato-light-controller --url=http://keylight.local:9123`\n2. Environment variable `ELGATO_LIGHT_URL` (see \"Usage\" below)\n\n## Usage\n\n```shell\n# Store the light's URL into an environment variable\n% export ELGATO_LIGHT_URL=http://keylight.local:9123\n\n# Ask Keylight for information about itself\n% elc\nProduct Name          : Elgato Key Light Air\nHardware Board Type   : 200\nHardware Revision     : 1\nMAC Address           : 3C:6A:9D:AA:BB:CC\nFirmware Build Number : 218\nFirmware Version      : 1.0.3\nSerial Number         : CW00L0A00000\nDisplay Name          :\nFeatures              : lights\nWifi SSID             : wifi_ssid_name\nWifi Frequency MHz    : 2400\nWifi RSSI             : -38\n\n# Fetch current status (\"status\" or \"s\")\n% elc status\nState             : off\nBrightness        : 40 %\nColor Temperature : 5525 K\n\n# Switch on/off (\"on\" or \"off\", resp. \"1\" or \"0\")\n% elc on\n% elc off\n% elc 1\n% elc 0\n\n# Set brightness (\"brightness\" or \"b\"), value between 0 and 100\n% elc brightness 50\n% elc b 100\n\n# Set color temperature (\"temperature\" or \"t\", value between 2900 and 7000)\n% elc temperature 5500\n% elc t 3300\n\n# Specifying color temperature in short version (value/100)\n% elc temperature 55\n\n# Get status in JSON format\n% elc --format=json status\n{\"state\":false,\"brightness\":40,\"temperature\":5525}\n```\n\n\n## Libraries\n\n- https://github.com/go-resty/resty\n- https://github.com/akamensky/argparse\n- https://github.com/tidwall/gjson\n\n## References\n\n- https://gitlab.com/obviate.io/pyleglight/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmjaschen%2Felgato-light-controller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmjaschen%2Felgato-light-controller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmjaschen%2Felgato-light-controller/lists"}