8000
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.
There's a line in the example that crashes the script:
code = decoder.decode_bits(pulses, debug=False)
decode_bits() no longer has that keyword. Changing the code to this makes it work:
code = decoder.decode_bits(pulses)