Skip to content

Commit

Permalink
work(plc4cs/knx): Added new manufacturers.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Jan 20, 2022
1 parent 62e60e2 commit 733d721
Showing 1 changed file with 20 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -600,8 +600,10 @@ public enum KnxManufacturer
M_ACE_TECHNOLOGY = 573,
M_MEX_ELECTRIC_TECHNOLOGY_SHANGHAI_CO___LTD = 574,
M_SUMAMO = 575,
M_ABB___RESERVED = 576,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 577,
M_SVIT = 576,
M_TECGET = 577,
M_ABB___RESERVED = 578,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 579,
}

public static class KnxManufacturerInfo
Expand Down Expand Up @@ -2201,10 +2203,16 @@ public static class KnxManufacturerInfo
case KnxManufacturer.M_SUMAMO: { /* '575' */
return 633;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '576' */
case KnxManufacturer.M_SVIT: { /* '576' */
return 634;
}
case KnxManufacturer.M_TECGET: { /* '577' */
return 635;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '578' */
return 43954;
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '577' */
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '579' */
return 43959;
}
case KnxManufacturer.M_DAETWYLER: { /* '58' */
Expand Down Expand Up @@ -3945,10 +3953,16 @@ public static string Name(this KnxManufacturer value)
case KnxManufacturer.M_SUMAMO: { /* '575' */
return "SUMAMO";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '576' */
case KnxManufacturer.M_SVIT: { /* '576' */
return "SVIT";
}
case KnxManufacturer.M_TECGET: { /* '577' */
return "tecget";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '578' */
return "ABB - reserved";
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '577' */
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '579' */
return "Busch-Jaeger Elektro - reserved";
}
case KnxManufacturer.M_DAETWYLER: { /* '58' */
Expand Down

0 comments on commit 733d721

Please sign in to comment.