├── .gitattributes ├── LICENSE ├── README.md ├── functions └── POST_identify.md └── resources ├── accessory-info ├── GET_accessory-info.md ├── PUT_accessory-info.md └── README.md └── lights ├── GET_lights.md ├── PUT_lights.md ├── README.md └── settings ├── GET_settings.md ├── PUT_settings.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/README.md -------------------------------------------------------------------------------- /functions/POST_identify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/functions/POST_identify.md -------------------------------------------------------------------------------- /resources/accessory-info/GET_accessory-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/accessory-info/GET_accessory-info.md -------------------------------------------------------------------------------- /resources/accessory-info/PUT_accessory-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/accessory-info/PUT_accessory-info.md -------------------------------------------------------------------------------- /resources/accessory-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/accessory-info/README.md -------------------------------------------------------------------------------- /resources/lights/GET_lights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/lights/GET_lights.md -------------------------------------------------------------------------------- /resources/lights/PUT_lights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/lights/PUT_lights.md -------------------------------------------------------------------------------- /resources/lights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/lights/README.md -------------------------------------------------------------------------------- /resources/lights/settings/GET_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/lights/settings/GET_settings.md -------------------------------------------------------------------------------- /resources/lights/settings/PUT_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/lights/settings/PUT_settings.md -------------------------------------------------------------------------------- /resources/lights/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamesch/elgato-key-light-api/HEAD/resources/lights/settings/README.md --------------------------------------------------------------------------------