Skip to content

Commit

Permalink
Gerätenamen (#1619)
Browse files Browse the repository at this point in the history
* Gerätenamen

* SMA Sunny Home Manager 2.0, Energy Meter
  • Loading branch information
LKuemmel authored Jun 12, 2024
1 parent cab831e commit 46773fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/modules/devices/huawei/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, modbus_id: int = 1, ip_address: Optional[str] = None, port: i

class Huawei:
def __init__(self,
name: str = "Huawei",
name: str = "Huawei Hybrid Wechselrichter",
type: str = "huawei",
id: int = 0,
configuration: HuaweiConfiguration = None) -> None:
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/devices/huawei_smartlogger/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, ip_address: Optional[str] = None, port: int = 502):
@auto_str
class Huawei_Smartlogger:
def __init__(self,
name: str = "Huawei_Smartlogger",
name: str = "Huawei Smartlogger",
type: str = "huawei_smartlogger",
id: int = 0,
configuration: Huawei_SmartloggerConfiguration = None) -> None:
Expand Down
6 changes: 3 additions & 3 deletions packages/modules/devices/sma_shm/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def __init__(self):

class Speedwire:
def __init__(self,
name: str = "SMA Sunny Home Manager 2.0",
name: str = "SMA Sunny Home Manager 2.0, Energy Meter",
type: str = "sma_shm",
id: int = 0,
configuration: SpeedwireComponentConfiguration = None) -> None:
Expand All @@ -25,7 +25,7 @@ def __init__(self, serials: int = None):

class SmaHomeManagerCounterSetup(ComponentSetup[SmaHomeManagerCounterConfiguration]):
def __init__(self,
name: str = "SMA Sunny Home Manager 2.0 Zähler",
name: str = "SMA Sunny Home Manager 2.0, Energy Meter Zähler",
type: str = "counter",
id: int = 0,
configuration: SmaHomeManagerCounterConfiguration = None) -> None:
Expand All @@ -39,7 +39,7 @@ def __init__(self, serials: int = None):

class SmaHomeManagerInverterSetup(ComponentSetup[SmaHomeManagerInverterConfiguration]):
def __init__(self,
name: str = "SMA Sunny Home Manager 2.0 Wechselrichter",
name: str = "SMA Sunny Home Manager 2.0, Energy Meter Wechselrichter",
type: str = "inverter",
id: int = 0,
configuration: SmaHomeManagerInverterConfiguration = None) -> None:
Expand Down

0 comments on commit 46773fc

Please sign in to comment.