We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
seems like this line is problematic dmx_channel.py line 91
assert 0 <= k.val_target <= 255 ** self._CHANNEL_SIZE
this does not work when using 16bit+ channels. The upper limit of fade value would be 65025 or 0xFE01 instead of the expected 0xFFFF
Value should be compared against (256 ** channel_size) - 1 instead
The text was updated successfully, but these errors were encountered:
Thanks for your report - I'll fix it right away!
Sorry, something went wrong.
bb03bea
0.8.1:
55603e2
- Fixed an issue with the max value for channels with 16bits and more (closes #8)
No branches or pull requests
seems like this line is problematic
dmx_channel.py line 91
assert 0 <= k.val_target <= 255 ** self._CHANNEL_SIZE
this does not work when using 16bit+ channels. The upper limit of fade value would be 65025 or 0xFE01 instead of the expected 0xFFFF
Value should be compared against (256 ** channel_size) - 1 instead
The text was updated successfully, but these errors were encountered: