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
Add Fine, Coarse and overflow plots in liveview:
Fine = data & 0b1111111
Coarse = {(data>>7) & 0b111111110} >>1
Overflow = {(data >>7) & 0b000000001}
The text was updated successfully, but these errors were encountered:
Added dark correction to LV, split built frames up into C/OF/F views,…
337e0a2
… added range control to LV, fixed aspect ratio at 1:1 for X/Y. Closes #8, Closes #9
JoshHarris2108
No branches or pull requests
Add Fine, Coarse and overflow plots in liveview:
Fine = data & 0b1111111
Coarse = {(data>>7) & 0b111111110} >>1
Overflow = {(data >>7) & 0b000000001}
The text was updated successfully, but these errors were encountered: