feat: add support for H6671 and H6672 TV LED Backlight 2 14.4 & 18.4ft#1200
Merged
bwp91 merged 1 commit intohomebridge-plugins:latestfrom Nov 29, 2025
Merged
Conversation
This was referenced Nov 27, 2025
|
thank you very much! |
|
@fish-sammy i just upgraded to the version that merged your changes. I'm not seeing my lights get controlled, though. I see the command hit my Homebridge logs but nothing happens on the lights. Did you have to do anything in your branch when you tested? I have a H6671 I'm using that I just set up today. |
Contributor
Author
|
@jandreaucodes I don't have a H6671 to test, but a H6672 at home. It works no problem without me having to do anything. |
|
Weird. I see the same type of logs in Homebridge but there's not actually anything changing with the light strip. |
|
Figured it out. The Govee app said it was connected to WiFi but it actually wasn't. So Homebridge was sending the command but it went nowhere. Did a quick factory reset and now I'm back in business. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
♻️ Current situation
The Govee TV LED Backlight 2 devices (models H6671 and H6672) are not
currently recognized by the plugin. When users attempt to use these devices,
they receive an error message indicating the model is not supported, even
though these devices use the same RGB light protocol as other supported
Govee LED strips.
Users have reported in issues #1185 and #1187 that these devices have
standard WiFi, Bluetooth, and LAN connectivity, and one user confirmed that
H6671 works when manually added to the constants file.
💡 Proposed solution
Add H6671 and H6672 to the
models.rgbarray inlib/utils/constants.js.These TV backlight devices follow the same protocol as other Govee RGB
lights (similar to existing TV backlights H6097, H6168, and H6169 which are
already supported).
The change is minimal - just two new entries in the model list:
Both devices share the same hardware (v3.08.01) and software (v1.00.09)
versions and support all three connection methods.
⚙️ Release Notes
Added Support:
These devices are now recognized as RGB lights with full support for power
control, brightness adjustment, color/RGB control, and all standard scenes
and modes via WiFi, Bluetooth, and LAN connections.
➕ Additional Information
Testing
No new tests were added as this change only extends the existing device
model list. The RGB light handler is already well-tested and handles these
devices automatically once they're added to the
models.rgbarray.User confirmation from issue #1185 indicates H6671 works correctly when
added to constants.js. Both devices use the same hardware/software versions
and should behave identically.
Reviewer Nudging
Start with
lib/utils/constants.jslines 348-352 - the only file changed.The two new model entries are added in numerical order within the existing
models.rgbarray, following the established pattern used for all other RGBdevices including existing TV backlights (H6097, H6168, H6169).