-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Matter add controller's Vendor Name to logs and UI (#18794)
- Loading branch information
1 parent
2423392
commit 31b93f8
Showing
9 changed files
with
1,788 additions
and
934 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/*********************************************************************************\ | ||
* List of Matter Vendors | ||
* From: https://on.dcl.csa-iot.org/dcl/vendorinfo/vendors | ||
* | ||
* Generated content, do not edit | ||
\*********************************************************************************/ | ||
#include <stddef.h> | ||
#include <stdint.h> | ||
|
||
typedef struct { | ||
uint16_t id; | ||
const char* name; | ||
} matter_vendor_t; | ||
|
||
const matter_vendor_t matter_Vendors[] = { | ||
|
||
{ 0x100B, "Signify"}, | ||
{ 0x101D, "Assa Abloy"}, | ||
{ 0x1021, "Legrand Group"}, | ||
{ 0x1037, "NXP Semiconductors"}, | ||
{ 0x105E, "Schneider"}, | ||
{ 0x109B, "Leviton"}, | ||
{ 0x10D0, "Qorvo"}, | ||
{ 0x10EE, "UEI"}, | ||
{ 0x10F2, "ubisys"}, | ||
{ 0x111D, "Comcast Communications"}, | ||
{ 0x115A, "Nanoleaf"}, | ||
{ 0x115F, "Aqara"}, | ||
{ 0x1160, "Sengled"}, | ||
{ 0x1168, "Leedarson"}, | ||
{ 0x117E, "Feibit"}, | ||
{ 0x1188, "TP-Link"}, | ||
{ 0x118C, "Midea Group"}, | ||
{ 0x120B, "HEIMAN"}, | ||
{ 0x1217, "Amazon Alexa"}, | ||
{ 0x1219, "ORVIBO"}, | ||
{ 0x125D, "Tuya"}, | ||
{ 0x127F, "Nordic Semiconductor ASA"}, | ||
{ 0x1280, "Siterwell"}, | ||
{ 0x1286, "CoolKit"}, | ||
{ 0x128F, "EGLO"}, | ||
{ 0x130A, "Eve"}, | ||
{ 0x130D, "BouffaloLab"}, | ||
{ 0x1312, "Yeelight"}, | ||
{ 0x131B, "Espressif Systems"}, | ||
{ 0x131E, "CAME S.p.A."}, | ||
{ 0x131F, "Longan.link"}, | ||
{ 0x1321, "SONOFF"}, | ||
{ 0x1333, "Becker Antriebe"}, | ||
{ 0x1339, "GE Lighting, a Savant company"}, | ||
{ 0x133F, "ASR"}, | ||
{ 0x1342, "Beken Corporation"}, | ||
{ 0x1344, "Eltako"}, | ||
{ 0x1345, "Meross"}, | ||
{ 0x1346, "Rafael"}, | ||
{ 0x1349, "Apple Home"}, | ||
{ 0x134E, "tado"}, | ||
{ 0x134F, "mediola"}, | ||
{ 0x1351, "HooRii Technology"}, | ||
{ 0x135D, "Nuki"}, | ||
{ 0x1362, "deveritec GmbH"}, | ||
{ 0x1365, "Dooya"}, | ||
{ 0x136E, "Ambi Labs Limited"}, | ||
{ 0x1371, "Tridonic"}, | ||
{ 0x1372, "innovation matters"}, | ||
{ 0x137F, "NEO"}, | ||
{ 0x1381, "Amazon Prime Video"}, | ||
{ 0x1384, "Apple Keychain"}, | ||
{ 0x1386, "Skylux"}, | ||
{ 0x1387, "Qianyan"}, | ||
{ 0x138A, "Nature"}, | ||
{ 0x1391, "Kasa"}, | ||
{ 0x1392, "Tapo"}, | ||
{ 0x1397, "SwitchBot"}, | ||
{ 0x139C, "Zemismart Technology Limited"}, | ||
{ 0x1400, "Uascent"}, | ||
{ 0x1403, "Arlec Australia"}, | ||
{ 0x1404, "Phaten"}, | ||
{ 0x1407, "ThirdReality"}, | ||
{ 0x1410, "Quectel"}, | ||
{ 0x1413, "1Home"}, | ||
{ 0x1415, "Caveman"}, | ||
{ 0x1419, "Lorex"}, | ||
{ 0x141B, "Rang Dong VN"}, | ||
{ 0x141E, "TUO Accessories LLC"}, | ||
{ 0x141F, "Ductech"}, | ||
{ 0x142D, "QH"}, | ||
{ 0x142F, "QIACHIP"}, | ||
{ 0x6006, "Google LLC"}, | ||
|
||
{ 0xFFFF, NULL }, | ||
}; |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.