Skip to content

Commit

Permalink
feat(system): add Ignition 8.1.32 new features (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl authored Sep 15, 2023
1 parent 06a4e2a commit e7e8b6b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ on:

jobs:
test:
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v5
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v6
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11"]'
19 changes: 17 additions & 2 deletions stubs/system/bacnet/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ def readRaw(
propertyId: PropertyIdentifier,
propertyArrayIndex: Optional[int] = ...,
) -> List[Any]: ...
def readRawMultiple(
deviceName: AnyStr,
objectTypes: List[ObjectType],
objectIds: List[int],
propertyIds: List[PropertyIdentifier],
) -> List[Any]: ...
def synchronizeTime(deviceName: AnyStr) -> None: ...
def synchronizeTimeUtc(deviceName: AnyStr) -> None: ...
def writeRaw(
Expand All @@ -18,8 +24,17 @@ def writeRaw(
objectId: int,
propertyId: PropertyIdentifier,
value: Any,
priority: int,
propertyArrayIndex: int,
priority: int = ...,
propertyArrayIndex: Optional[int] = ...,
) -> None: ...
def writeRawMultiple(
deviceName: AnyStr,
objectTypes: List[ObjectType],
objectIds: List[int],
propertyIds: List[PropertyIdentifier],
values: List[Any],
priorities: Optional[List[int]] = ...,
propertyArrayIndices: Optional[List[int]] = ...,
) -> None: ...
def writeWithPriority(
deviceName: AnyStr, objectType: int, objectId: int, value: Any, priority: int
Expand Down

0 comments on commit e7e8b6b

Please sign in to comment.