diff --git a/org.fortiss.af3.platform.raspberry/trunk/lib/inc/PWM.h b/org.fortiss.af3.platform.raspberry/trunk/lib/inc/PWM.h index 6519009a21346d3f461efeb21d9e927453e3f7d5..8b72ff55c3c088674d84053c0a64b5e6fdfafdf2 100644 --- a/org.fortiss.af3.platform.raspberry/trunk/lib/inc/PWM.h +++ b/org.fortiss.af3.platform.raspberry/trunk/lib/inc/PWM.h @@ -12,7 +12,10 @@ #include "inc/libmaestro.h" // macros -#define PWM_ADJUST_VALUE(x) (6000 + 4 * x / 66) +// 6072 is the value for 0, max. value to motor is currently 7572 +// from AF3 you get a max. speed value in mm/s : 1471 +// Hence, add the constant 6072 and map values -1471-1471 to -1500-1500 +#define PWM_ADJUST_VALUE(x) (6072 + 1500 * x /1471) // types typedef unsigned char PWM_CHANNEL_T;