Skip to content

Commit

Permalink
fix led error
Browse files Browse the repository at this point in the history
  • Loading branch information
ihidchaos committed Dec 19, 2024
1 parent 1e712f6 commit 16f9f90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/fake_onoff_led.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def off(self):


matter = cm.CircuitMatter()
led = LED("led1")
led = LED("led1", None)
matter.add_device(led)
led = LED("led2")
led = LED("led2", None)
matter.add_device(led)
while True:
matter.process_packets()

0 comments on commit 16f9f90

Please sign in to comment.