Skip to content

Commit

Permalink
refactor(plc4go/ads): Refactoring of the go ADS drier
Browse files Browse the repository at this point in the history
- Committ of the stuff IntelliJ left out on the last commit.
  • Loading branch information
chrisdutz committed Nov 23, 2022
1 parent 8b0ba3f commit 2a9e84b
Showing 1 changed file with 13 additions and 6 deletions.
Expand Up @@ -629,8 +629,9 @@ public enum KnxManufacturer
M_ESTADA = 602,
M_ZHONGYUNXINZHIKONGGUJITUANYOUXIANGONGSI = 603,
M_STUHL_REGELSYSTEME_GMBH = 604,
M_ABB___RESERVED = 605,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 606,
M_SHENZHEN_GLUCK_TECHNOLOGY_CO___LTD = 605,
M_ABB___RESERVED = 606,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 607,
}

public static class KnxManufacturerInfo
Expand Down Expand Up @@ -2329,10 +2330,13 @@ public static class KnxManufacturerInfo
case KnxManufacturer.M_STUHL_REGELSYSTEME_GMBH: { /* '604' */
return 662;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '605' */
case KnxManufacturer.M_SHENZHEN_GLUCK_TECHNOLOGY_CO___LTD: { /* '605' */
return 663;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '606' */
return 43954;
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '606' */
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '607' */
return 43959;
}
case KnxManufacturer.M_SCHNEIDER_ELECTRIC_INDUSTRIES_SAS: { /* '61' */
Expand Down Expand Up @@ -4160,10 +4164,13 @@ public static string Name(this KnxManufacturer value)
case KnxManufacturer.M_STUHL_REGELSYSTEME_GMBH: { /* '604' */
return "Stuhl Regelsysteme GmbH";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '605' */
case KnxManufacturer.M_SHENZHEN_GLUCK_TECHNOLOGY_CO___LTD: { /* '605' */
return "Shenzhen Gluck Technology Co., LTD";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '606' */
return "ABB - reserved";
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '606' */
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '607' */
return "Busch-Jaeger Elektro - reserved";
}
case KnxManufacturer.M_SCHNEIDER_ELECTRIC_INDUSTRIES_SAS: { /* '61' */
Expand Down

0 comments on commit 2a9e84b

Please sign in to comment.