Page 1 of 1
pot values
Posted: Thu Feb 20, 2014 8:11 am
by jovesdies
Is it possible to give a pot a similar way to move ?

Posted: Fri Feb 21, 2014 5:19 am
by Sweetalk
I think that you have to do a pot skip routine for the constant parts of the taper you want. Then with sof instructions you can reach the center linear taper.
Posted: Sat Feb 22, 2014 5:15 am
by slacker
You should be able to do it using some of the tricks from here
http://www.spinsemi.com/knowledge_base/ ... aring_pots
First shift the range down by 0.5 so it goes from -0.5 to + 0.5. Then multiple it by 4 which would give a range of -2 to +2 except that the range is limited to -1 and +1. Therefore the first quarter of the pot is less than -1 so is limited to - 1, and the upper quarter more than +1 so is limited to +1. This gives you the shape you want. Then divide it by 2 and add 0.5 to get the range back to 0 to 1.
Something like this
Code: Select all
rdax pot0
sof 1, -0.5 ;deduct 0.5
sof -2,0 ;multiply by -2
sof -2,0 ;multiply by - 2 (multiply by 4 in total)
sof 0.5, 0.5 ; divide by 2 and add 0.5
Posted: Sat Feb 22, 2014 8:36 am
by jovesdies
YESSSS ! Thanks a LOT !!!!