-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from loopj/additional-station-types
Add a bunch of missing station types
- Loading branch information
Showing
13 changed files
with
122 additions
and
6 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
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,10 @@ | ||
"""Contact Input.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .station_object import StationObject | ||
|
||
|
||
@dataclass | ||
class ContactInput(StationObject): | ||
"""Contact Input.""" |
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,10 @@ | ||
"""DIN Contact Input Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .din_station import DINStation | ||
|
||
|
||
@dataclass | ||
class DINContactInput(DINStation): | ||
"""DIN Contact Input Station.""" |
10 changes: 10 additions & 0 deletions
10
src/aiovantage/config_client/models/din_high_voltage_relay_station.py
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,10 @@ | ||
"""DIN High Voltage Relay Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .din_station import DINStation | ||
|
||
|
||
@dataclass | ||
class DINHighVoltageRelayStation(DINStation): | ||
"""DIN High Voltage Relay Station.""" |
10 changes: 10 additions & 0 deletions
10
src/aiovantage/config_client/models/din_low_voltage_relay_station.py
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,10 @@ | ||
"""DIN Low Voltage Relay Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .din_station import DINStation | ||
|
||
|
||
@dataclass | ||
class DINLowVoltageRelayStation(DINStation): | ||
"""DIN Low Voltage Relay Station.""" |
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,10 @@ | ||
"""Base class for DIN station objects.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .station_object import StationObject | ||
|
||
|
||
@dataclass | ||
class DINStation(StationObject): | ||
"""Base class for DIN station objects.""" |
10 changes: 10 additions & 0 deletions
10
src/aiovantage/config_client/models/high_voltage_relay_station.py
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,10 @@ | ||
"""High Voltage Relay Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .station_object import StationObject | ||
|
||
|
||
@dataclass | ||
class HighVoltageRelayStation(StationObject): | ||
"""High Voltage Relay Station.""" |
10 changes: 10 additions & 0 deletions
10
src/aiovantage/config_client/models/low_voltage_relay_station.py
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,10 @@ | ||
"""Low Voltage Relay Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .station_object import StationObject | ||
|
||
|
||
@dataclass | ||
class LowVoltageRelayStation(StationObject): | ||
"""Low Voltage Relay Station.""" |
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,10 @@ | ||
"""RS-232 Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .station_object import StationObject | ||
|
||
|
||
@dataclass | ||
class RS232Station(StationObject): | ||
"""RS-232 Station.""" |
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,10 @@ | ||
"""RS-485 Station.""" | ||
|
||
from dataclasses import dataclass | ||
|
||
from .station_object import StationObject | ||
|
||
|
||
@dataclass | ||
class RS485Station(StationObject): | ||
"""RS-485 Station.""" |
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