Skip to content

WWSTCERT-6385 Yale Lock with Matter #2158

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion drivers/SmartThings/matter-lock/fingerprints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ matterManufacturer:
deviceLabel: Level Lock Pro
vendorId: 0x129F
productId: 0x0004
deviceProfileName: lock-nocodes-notamper
deviceProfileName: lock-nocodes-notamper
#Nuki
- id: "4957/161"
deviceLabel: Nuki Smart Lock Ultra
Expand Down Expand Up @@ -94,6 +94,12 @@ matterManufacturer:
vendorId: 0x147F
productId: 0x0001
deviceProfileName: lock-user-pin-battery
#Yale
- id: "4125/1"
deviceLabel: Yale Lock with Matter
vendorId: 0x101D
productId: 0x0001
deviceProfileName: lock-batteryLevel
matterGeneric:
- id: "matter/door-lock"
deviceLabel: Matter Door Lock
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ local NEW_MATTER_LOCK_PRODUCTS = {
{0x115f, 0x2801}, -- AQARA, U300
{0x147F, 0x0001}, -- U-tec
{0x144F, 0x4002}, -- Yale, Linus Smart Lock L2
{0x101D, 0x0001}, -- Yale Lock with Matter
{0x1533, 0x0001}, -- eufy, E31
{0x1533, 0x0002}, -- eufy, E30
{0x1533, 0x0003}, -- eufy, C34
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ local clusters = require "st.matter.clusters"

local mock_device_record = {
profile = t_utils.get_profile_definition("lock-without-codes.yml"),
manufacturer_info = {vendor_id = 0x101D, product_id = 0x1},
manufacturer_info = {vendor_id = 0xDEAD, product_id = 0xBEEF},
endpoints = {
{
endpoint_id = 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ local clusters = require "st.matter.clusters"

local mock_device_record = {
profile = t_utils.get_profile_definition("lock-nocodes-notamper-batteryLevel.yml"),
manufacturer_info = {vendor_id = 0x101D, product_id = 0x1},
manufacturer_info = {vendor_id = 0xDEAD, product_id = 0xBEEF},
endpoints = {
{
endpoint_id = 2,
Expand Down
Loading