Include extended_pan_id when commissioning matter (#22099)

This commit is contained in:
Bram Kragten 2024-09-26 16:46:15 +02:00 committed by GitHub
parent fc8945be60
commit deece20206
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,7 @@ export const startExternalCommissioning = async (hass: HomeAssistant) => {
).tlv,
border_agent_id: preferredDataset.preferred_border_agent_id,
mac_extended_address: preferredDataset.preferred_extended_address,
extended_pan_id: preferredDataset.extended_pan_id,
},
});
}

View File

@ -59,6 +59,7 @@ interface EMOutgoingMessageMatterCommission extends EMMessage {
type: "matter/commission";
payload?: {
mac_extended_address: string | null;
extended_pan_id: string | null;
border_agent_id: string | null;
active_operational_dataset: string | null;
};