jackchaos Posted September 23, 2005 Report Posted September 23, 2005 I need to create a new pot behavior and I was hoping I could get direction on where to start.Some of the parameters I need to send with pots have to transmit sysex strings based on the following:A center detent value would transmit 0x00 (zero)ascii illustration( | )move it to the right and it increments to a max value of 0x3f (63) or (+63 7bit signed)ascii illustration( \ )move it to the left of the center detent it would decrement from 0x7f (127) (-1 7bit signed) down to the min value of 0x41 (64)(-63 7bit signed)ascii illustration( / )My synthesizer for the most part, recieves parameter values 0x00 to 0x3f, which is perfect. But for 28 of them I, it expects a signed value for -63 to +63.Any advise would be greatly appreciated.
TK. Posted October 10, 2005 Report Posted October 10, 2005 Thats easy - just modify the sent value in the following way: addlw 0x40 andlw 0x7fBest Regards, Thorsten.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now