Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def dimming_via_direct_control(self) -> None:
raise Exception("Pattern passt nicht zur Dimmung per Direktsteuerung.")


def create_action(config: DimmingDirectControlSetup):
def create_action(config: DimmingDirectControlSetup, parent_device_type: str):
return DimmingDirectControl(config=config)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def ripple_control_receiver(self) -> float:
return 0


def create_action(config: RippleControlReceiverSetup):
def create_action(config: RippleControlReceiverSetup, parent_device_type: str):
return RippleControlReceiver(config=config)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def control_stepwise(self) -> Optional[float]:
return 1


def create_action(config: StepwiseControlSetup):
def create_action(config: StepwiseControlSetup, parent_device_type: str):
return StepwiseControlEebus(config=config)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def control_stepwise(self) -> Optional[float]:
return 1


def create_action(config: StepwiseControlSetup):
def create_action(config: StepwiseControlSetup, parent_device_type: str):
return StepwiseControlIo(config=config)


Expand Down