New issue
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
maschine mikro mk2: rework and update #67
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using the HIDRAW API, time read and write durations. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
This open the libUSB backend to maschine, removing the requirement on the /dev/hidraw interface. Currently the bytes are only read, and they are not decoded properly, due to an offset difference between the HidRaw buffer (including endpoint as first byte) and libUSB data (without said first byte). Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
Need to rework filters for new arrival rate of data, which means that in general the "feel" for the pads will need to be re-evaluated. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
Lights verified as working now Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
This commit adds basic screen infrastructure. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
This commit enables the blit to screen function to push a single channel bitmap of binary data from the application to the screen on the maschine. The maschine driver performs the required multiplexing of and xfer header mushing to make it happen. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
Using standard qsort() method for now. This provides a large improvement in single-pad handling. Multiple pads still seeing issues. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
Increased threshold, seems to trigger exactly as desired, need to work on linearity of velocity yet. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
After testing, the sensetivity of the pads needed some updates. Future commits will amend and improve these values more. Signed-off-by: Harry van Haaren <harryhaaren@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Large rework and updates for the mikro mk2, including using LibUSB as a backend, improvements to the filtering of the pad data (better note-press detection), and initial enabling of pushing bits to the screen.