-
Notifications
You must be signed in to change notification settings - Fork 466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wallhero add model ACL-401S3I #980
Conversation
@@ -21,7 +21,8 @@ local Scenes = zcl_clusters.Scenes | |||
|
|||
local FINGERPRINTS = { | |||
{ mfr = "WALL HERO", model = "ACL-401S4I", switches = 4, buttons = 0 }, | |||
{ mfr = "WALL HERO", model = "ACL-401S8I", switches = 4, buttons = 4 } | |||
{ mfr = "WALL HERO", model = "ACL-401S8I", switches = 4, buttons = 4 }, | |||
{ mfr = "WALL HERO", model = "ACL-401S3I", switches = 3, buttons = 0 } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From a single commit point of view, your code has no problems.
And It’s okay if you don’t add a comma at the end of the line.
But this may introduce problems when the maintainer merges #981.
In that case, the codes would like
local FINGERPRINTS = {
{ mfr = "WALL HERO", model = "ACL-401S4I", switches = 4, buttons = 0 },
{ mfr = "WALL HERO", model = "ACL-401S8I", switches = 4, buttons = 4 },
{ mfr = "WALL HERO", model = "ACL-401S2I", switches = 2, buttons = 0 } -- Syntax Error
{ mfr = "WALL HERO", model = "ACL-401S3I", switches = 3, buttons = 0 }
}
branch should also be rebased here, and yes @liuyd96 is correct: these three fingerprint additions will create conflicts that require a rebase after each is merged |
Channel deleted. |
Minimum allowed coverage is Generated by 🐒 cobertura-action against 62111a3 |
Hi, @thinkaName Please refer to below steps to rebase your branch. (Now I am using your s3i branch as an example)
Now everything is done. You could see there is no merge commit in changelog.
I recommend to use |
Manufacturers wallhero add new model ACL-401S3I zigbee-switch.
Please review it.