We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27616ff + 092916f commit f20c13bCopy full SHA for f20c13b
adafruit_focaltouch.py
@@ -86,7 +86,7 @@ def __init__(self, i2c, address=_FT_DEFAULT_I2C_ADDR, debug=False, irq_pin=None)
86
f"lib_ver: {lib_ver:02X}, chip_id: {chip_id:02X}, firm_id: {firm_id:02X}, vend_id: {vend_id:02X}" # noqa: E501
87
)
88
89
- if vend_id not in {0x11, 0x42, 0x01}:
+ if vend_id not in {0x11, 0x42, 0x01, 0x02}:
90
raise RuntimeError("Did not find FT chip")
91
92
if chip_id == 0x06:
0 commit comments