diff options
Diffstat (limited to 'decoders/onewire_network')
-rw-r--r-- | decoders/onewire_network/onewire_network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/onewire_network/onewire_network.py b/decoders/onewire_network/onewire_network.py index 5587f97..d2b86a0 100644 --- a/decoders/onewire_network/onewire_network.py +++ b/decoders/onewire_network/onewire_network.py @@ -77,7 +77,7 @@ class Decoder(srd.Decoder): [code, val] = data # State machine. - if (code == "RESET"): + if (code == "RESET/PRESENCE"): self.state = "COMMAND" self.search = "P" self.bit_cnt = 0 |