So i have 5 servos and 5 flex sensors. originally i had all the servos facing the same way, but now i have some upside down and some the same. I am guessing you change this in the map function to reverse the upside down ones. this is the map functions i have currently:
byte servoVal1 = map(FingerV1,0, 500, 0, 255);
byte servoVal2 = map(FingerV2,0, 500, 0, 255);
byte servoVal3 = map(FingerV3,0, 500, 0, 255);
byte servoVal4 = map(FingerV4,0, 500, 0, 255);
byte servoVal5 = map(FingerV5,0, 500, 0, 255);
So i you help me change this so they are reverse that would be great. i have tried for a couple hours now with different values but they are still not doing what i want them to.
Thanks