https://github.com/danielhe4rt/elgato-control-center
A Rust approach of Elgato Control Center
https://github.com/danielhe4rt/elgato-control-center
Last synced: 11 months ago
JSON representation
A Rust approach of Elgato Control Center
- Host: GitHub
- URL: https://github.com/danielhe4rt/elgato-control-center
- Owner: danielhe4rt
- Created: 2024-07-04T19:30:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T20:45:01.000Z (almost 2 years ago)
- Last Synced: 2025-07-09T17:01:49.892Z (12 months ago)
- Language: Rust
- Size: 51.8 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Elgato Control Center
This repository aims to control all devices that can be handled in the Elgato Control Center.

## Devices Tested
- [x] Key Light
- [x] Light-strip
## Dev Notes
### Get Devices
- Fetch the network interfaces
- Find the default network (I/O)
- Scan the devices looking for 9123 opened ports
### Application
Diff between lights:
#### Light Strip Payload
```json
{
"numberOfLights": 1,
"lights": [
{
"on": 1,
"hue": 332.000000,
"saturation": 81.000000,
"brightness": 99
}
]
}
```
### Keylight Payload
```json
{
"numberOfLights": 1,
"lights": [
{
"on": 1,
"brightness": 12,
"temperature": 143
}
]
}
```