{"id":31914796,"url":"https://github.com/cedrickring/hue-to-govee","last_synced_at":"2026-07-28T08:32:20.300Z","repository":{"id":318678638,"uuid":"1072274298","full_name":"cedrickring/hue-to-govee","owner":"cedrickring","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-09T11:25:35.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-22T05:33:08.119Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/cedrickring.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-08T13:49:45.000Z","updated_at":"2025-10-09T11:25:01.000Z","dependencies_parsed_at":"2025-10-08T16:29:20.583Z","dependency_job_id":"8ab7e218-9be1-4ced-ba22-19cb873c67ef","html_url":"https://github.com/cedrickring/hue-to-govee","commit_stats":null,"previous_names":["cedrickring/hue-to-govee"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cedrickring/hue-to-govee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedrickring%2Fhue-to-govee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedrickring%2Fhue-to-govee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedrickring%2Fhue-to-govee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedrickring%2Fhue-to-govee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cedrickring","download_url":"https://codeload.github.com/cedrickring/hue-to-govee/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedrickring%2Fhue-to-govee/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35985972,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-28T02:00:06.341Z","response_time":109,"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":[],"created_at":"2025-10-13T19:41:47.540Z","updated_at":"2026-07-28T08:32:20.251Z","avatar_url":"https://github.com/cedrickring.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hue Govee Synchronizer\n\nA Go application that synchronizes Philips Hue lights with Govee devices using the Hue v2 API and Govee LAN control features. This allows you to keep your Hue and Govee lights in sync, creating a unified lighting experience across different brands. \n\n## Prerequisites\n\n- Philips Hue Bridge (v2 only)\n- Govee devices with LAN control support\n- Go 1.24+ (if building from source)\n- Network access to both Hue Bridge and Govee devices (LAN control enabled)\n\n## Configuration\n\nCreate a `config.yaml` file with your device settings:\n```yaml\nhue_bridge_id: \"001788fffe123456\"\nhue_bridge_username: \"abcdef1234567890abcdef1234567890abcdef12\"\n\ngovee_multicast_ip: \"239.255.255.250\"\n\nsynchronizations:\n- hue_light_id: \"12345678-1234-5678-9abc-def012345678\"\n  hue_room_id: \"87654321-4321-8765-cba9-876543210987\"\n  govee_device_id: \"AA:BB:CC:DD:EE:FF:11:22\" # living room lamp\n- hue_light_id: \"98765432-8765-4321-1234-567890abcdef\"\n  hue_room_id: \"11223344-5566-7788-99aa-bbccddeeff00\"\n  govee_device_id: \"11:22:33:44:55:66:77:88\" # bedroom strip lights\n\nlog_level: \"INFO\"\n```\n### Configuration Parameters\n\n- **hue_bridge_id**: Your Hue Bridge's unique identifier\n- **hue_bridge_username**: Authentication username for API access\n- **govee_multicast_ip**: Multicast IP for Govee device discovery (typically `239.255.255.250`)\n- **synchronizations**: Array of light pairs to synchronize\n  - **hue_light_id**: UUID of the Hue light device\n  - **hue_room_id**: UUID of the Hue room containing the light\n  - **govee_device_id**: MAC address of the Govee device\n- **log_level**: Logging verbosity (`DEBUG`, `INFO`, `WARN`, `ERROR`)\n\nRefer to the Philips Hue documentation on how to retrieve the bridge ID and username: https://developers.meethue.com/develop/get-started-2/\n\nTo get the Hue light and room ids, refer to the API documentation: https://developers.meethue.com/develop/hue-api-v2/\n\n## Usage\n\n### Docker\nUse the following command to run `hue2govee` with docker:\n```bash\ndocker run -d --rm -v $(pwd)/config.yaml:/config.yaml ghcr.io/cedrickring/hue-to-govee:latest\n```\n\n### Local\n\nDownload the latest release from the [releases page](https://github.com/josh-justjosh/hue2govee/releases).\n\nor \n\nrun the script:\n```bash\ncurl -fSsl https://raw.githubusercontent.com/cedrickring/hue-to-govee/main/scripts/get | bash\n```\n\n1. Create your `config.yaml` file with the appropriate values\n2. Run the application:\n   ```bash\n   ./hue2govee\n   ```\n\nThe application will start monitoring your configured Hue lights and synchronize their state (on/off, brightness, color) with the corresponding Govee devices.\n\n## Troubleshooting\n\n- **Bridge Connection Issues**: Ensure your bridge IP is correct and the bridge is on the same network\n- **Authentication Errors**: Verify your username is valid and was created properly\n- **Device Not Found**: Check that light IDs and room IDs are correct using the API endpoints above\n- **Govee Connectivity**: Ensure Govee devices support LAN control and are on the same network\n- **Network Issues**: Verify multicast traffic is allowed on your network for Govee discovery\n\n## Development\n\n### Building from Source\n\n1. Clone the repository\n2. Run `go build -o bin/hue2govee home/cmd/hue2govee` to build the application\n3. Run `./hue2govee` to start the application\n\n### Building Docker Image\n\n1. Run `docker build -t \u003cimage\u003e .` to build the image\n2. Run `docker run -d --rm -v $(pwd)/config.yaml:/config.yaml \u003cimage\u003e` to run the image\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedrickring%2Fhue-to-govee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcedrickring%2Fhue-to-govee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedrickring%2Fhue-to-govee/lists"}