attempt to read all features

This commit is contained in:
Andrew Kay
2026-02-08 10:54:24 -06:00
parent e929f232bc
commit 24e4983c91

View File

@@ -9,6 +9,9 @@ with open_example_serial_interface() as interface:
ids = interface.execute(commands)
for (a, b) in zip(commands, ids):
print('{0:1X}'.format(a.feature_address) + ' => ' + ('{0:2X}'.format(b) if b is not None else '-'))
features = parse_features(ids, commands)
print(features)