diff options
| -rw-r--r-- | drivers/onewire/ds18x20.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/onewire/ds18x20.py b/drivers/onewire/ds18x20.py index bf0609483..272642239 100644 --- a/drivers/onewire/ds18x20.py +++ b/drivers/onewire/ds18x20.py @@ -13,7 +13,7 @@ class DS18X20: self.buf = bytearray(9) def scan(self): - return [rom for rom in self.ow.scan() if rom[0] == 0x10 or rom[0] == 0x28] + return [rom for rom in self.ow.scan() if rom[0] in (0x10, 0x22, 0x28)] def convert_temp(self): self.ow.reset(True) |
