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
If you pass data ≠0 with id = 0 to set_data(), the DMX data stream will be incorrect, because the first data byte is expected as zero.
To prevent this, the user data could start at zero like this:
def set_data(self,id,data): self.data[id+1]=data
or something like this:
def set_data(self,id,data): if id == 0: return self.data[id]=data
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you pass data ≠0 with id = 0 to set_data(), the DMX data stream will be incorrect, because the first data byte is expected as zero.
To prevent this, the user data could start at zero like this:
or something like this:
The text was updated successfully, but these errors were encountered: