Skip to content

Commit

Permalink
chore: Updated vendor ids
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Mar 13, 2024
1 parent 645eeba commit dbb84b5
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 22 deletions.
34 changes: 25 additions & 9 deletions plc4go/protocols/knxnetip/readwrite/model/KnxManufacturer.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -771,9 +771,11 @@ public enum KnxManufacturer {
M_SHENZHEN_EASYDETEK_TECHNOLOGY_CO_LTD(
(int) 667, (int) 725, (String) "Shenzhen easydetek technology Co.Ltd"),
M_MUTLUSAN_ELECTRIC((int) 668, (int) 726, (String) "Mutlusan Electric"),
M_ABB___RESERVED((int) 669, (int) 43954, (String) "ABB - reserved"),
M_HANGZHOU_BROADLINK_TECHNOLOGY_CO__LTD_(
(int) 669, (int) 727, (String) "Hangzhou BroadLink Technology Co.,Ltd."),
M_ABB___RESERVED((int) 670, (int) 43954, (String) "ABB - reserved"),
M_BUSCH_JAEGER_ELEKTRO___RESERVED(
(int) 670, (int) 43959, (String) "Busch-Jaeger Elektro - reserved");
(int) 671, (int) 43959, (String) "Busch-Jaeger Elektro - reserved");
private static final Map<Integer, KnxManufacturer> map;

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export interface Option {
key: string;
type: OptionType;
defaultValue?: any;
description: string;
required: boolean;
description: string;
}

export interface Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -693,8 +693,9 @@ public enum KnxManufacturer
M_SHENZHEN_HAIZHICHUANG_TECHNOLOGY_CO___LTD = 666,
M_SHENZHEN_EASYDETEK_TECHNOLOGY_CO_LTD = 667,
M_MUTLUSAN_ELECTRIC = 668,
M_ABB___RESERVED = 669,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 670,
M_HANGZHOU_BROADLINK_TECHNOLOGY_CO__LTD_ = 669,
M_ABB___RESERVED = 670,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 671,
}

public static class KnxManufacturerInfo
Expand Down Expand Up @@ -2603,13 +2604,16 @@ public static class KnxManufacturerInfo
case KnxManufacturer.M_MUTLUSAN_ELECTRIC: { /* '668' */
return 726;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '669' */
return 43954;
case KnxManufacturer.M_HANGZHOU_BROADLINK_TECHNOLOGY_CO__LTD_: { /* '669' */
return 727;
}
case KnxManufacturer.M_EIBMARKT_GMBH: { /* '67' */
return 106;
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '670' */
case KnxManufacturer.M_ABB___RESERVED: { /* '670' */
return 43954;
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '671' */
return 43959;
}
case KnxManufacturer.M_WAREMA_RENKHOFF_SE: { /* '68' */
Expand Down Expand Up @@ -4626,13 +4630,16 @@ public static string Name(this KnxManufacturer value)
case KnxManufacturer.M_MUTLUSAN_ELECTRIC: { /* '668' */
return "Mutlusan Electric";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '669' */
return "ABB - reserved";
case KnxManufacturer.M_HANGZHOU_BROADLINK_TECHNOLOGY_CO__LTD_: { /* '669' */
return "Hangzhou BroadLink Technology Co.,Ltd.";
}
case KnxManufacturer.M_EIBMARKT_GMBH: { /* '67' */
return "EIBMARKT GmbH";
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '670' */
case KnxManufacturer.M_ABB___RESERVED: { /* '670' */
return "ABB - reserved";
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '671' */
return "Busch-Jaeger Elektro - reserved";
}
case KnxManufacturer.M_WAREMA_RENKHOFF_SE: { /* '68' */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1417,8 +1417,9 @@
['666' M_SHENZHEN_HAIZHICHUANG_TECHNOLOGY_CO___LTD ['724', '"Shenzhen Haizhichuang Technology Co., Ltd"']]
['667' M_SHENZHEN_EASYDETEK_TECHNOLOGY_CO_LTD ['725', '"Shenzhen easydetek technology Co.Ltd"']]
['668' M_MUTLUSAN_ELECTRIC ['726', '"Mutlusan Electric"']]
['669' M_ABB___RESERVED ['43954', '"ABB - reserved"']]
['670' M_BUSCH_JAEGER_ELEKTRO___RESERVED ['43959', '"Busch-Jaeger Elektro - reserved"']]
['669' M_HANGZHOU_BROADLINK_TECHNOLOGY_CO__LTD_ ['727', '"Hangzhou BroadLink Technology Co.,Ltd."']]
['670' M_ABB___RESERVED ['43954', '"ABB - reserved"']]
['671' M_BUSCH_JAEGER_ELEKTRO___RESERVED ['43959', '"Busch-Jaeger Elektro - reserved"']]
]
Expand Down

0 comments on commit dbb84b5

Please sign in to comment.