Skip to content

Commit

Permalink
Fix KeyError for gpiozero digital_outputs #414 (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
arturalbov authored Dec 10, 2024
1 parent 678276f commit 8aca4a8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mqtt_io/modules/gpio/gpiozero.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ def set_pin(self, pin: PinType, value: bool) -> None:
self._out_pins[pin].off()

def get_pin(self, pin: PinType) -> bool:
return cast(bool, self._in_pins[pin].is_active)
if pin in self._in_pins:
return cast(bool, self._in_pins[pin].is_active)
elif pin in self._out_pins:
return bool(self._out_pins[pin].value)
else:
raise ValueError(f"Pin {pin} not found")

def setup_interrupt_callback(
self,
Expand Down

0 comments on commit 8aca4a8

Please sign in to comment.