Richtel
Well-known member
ok great, i hope i don't cause too much trouble with my problemsOK stop the test , Tomorrow i can try to connect my ZS-X12H test driver to the PCB1.03 ,and give you an answer

ok great, i hope i don't cause too much trouble with my problemsOK stop the test , Tomorrow i can try to connect my ZS-X12H test driver to the PCB1.03 ,and give you an answer
Gute ideeMaybe Bernard can re-measure his resistors or still trace what he soldered in?
Test result confirm what you say .and it did not work also for me.
1.6V on the out of odometry is not suffisant
The solution:
You need to change the resistor R1/R7 and R2/R8 for a bigger value ,but with the same diff R1=2*R7 or near
I have tested with R1=22K and R7=10K and the scope result is OK with 2.8 volt at teensy input.
Also i need to adjust the code to add the support of the reverse Brake level for this driver.
I send you a link to the new code .
Are you sure the wiring phase is OK , It's can append when the wiring is good but not perfect and the result is that wheel rotate faster in forward than in reverse .unfortunately they rotate for different lengths of time
Are you sure the wiring phase is OK , It's can append when the wiring is good but not perfect and the result is that wheel rotate faster in forward than in reverse .
Or make a video.
#if defined (MOW800)
name = "MOW800"; //Set the Name of platform
// ------- wheel motors -----------------------------
motorRightSwapDir = false; // inverse right motor direction?
motorLeftSwapDir = true; // inverse left motor direction?
Moin,Moin,
welcher Motor dreht bei euch länger?
Ich habe das gleiche Problem beim Odometry Test.
Bei mir ist es die rechte Seite, wenn man hinter dem Mower steht. Mal funktioniert der Test und dann auf einmal stoppt der Motor erst viel später oder ich muss ihn manuell stoppen.
Ich habe das bisher auf den motorteiber geschoben.
Nein, das passt bei mirNein Ticks passen bei mir, da zählt er fleißig weiter hoch, er bleibt nur nicht bei der passenden Anzahl Ticks stehen, sondern läuft weiter.
You need to adjust correctly 3 parts into this orderDie Ticks stimmen bei mir auch in etwa. Nur scheint ein Rad langsamer zu drehen als das andere, wenn auch nur minimal.
Man sieht es am besten beim Lanemowing. Da drehen der Mäher erst 135grad, fährt dann ein kleines Stückchen und dreht dann nochmal 45grad. Die letzte Drehung ist dann viel zu weit!
case ACT_MOTOR_RIGHT:
if (RIGHT_MOTOR_DRIVER == 1) {
//setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value, useMotorDriveBrake);
if (value >= 0) {
setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 + (double)motorRightOffsetFwd / 100), useMotorDriveBrake);
}
else {
setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 - (double)motorRightOffsetRev / 100), useMotorDriveBrake);
}
}
if (RIGHT_MOTOR_DRIVER == 4) {
//setZSX12HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value, useMotorDriveBrake);
if (value >= 0) {
setZSX12HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 + (double)motorRightOffsetFwd / 100), useMotorDriveBrake);
}
else {
setZSX12HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 - (double)motorRightOffsetRev / 100), useMotorDriveBrake);
}
}
if (RIGHT_MOTOR_DRIVER == 2) setL298N(pinMotorRightDir, pinMotorRightPWM, pinMotorRightEnable, value);
if (RIGHT_MOTOR_DRIVER == 3) setBTS7960(pinMotorRightDir, pinMotorRightPWM, pinMotorRightEnable, value);
break;
Here the change to have the PWM offset working on right motor.
Into mower.cpp
replace case ACT_MOTOR_RIGHT: by this code :
Code:case ACT_MOTOR_RIGHT: if (RIGHT_MOTOR_DRIVER == 1) { //setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value, useMotorDriveBrake); if (value >= 0) { setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 + (double)motorRightOffsetFwd / 100), useMotorDriveBrake); } else { setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 - (double)motorRightOffsetRev / 100), useMotorDriveBrake); } } if (RIGHT_MOTOR_DRIVER == 4) { //setZSX12HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value, useMotorDriveBrake); if (value >= 0) { setZSX12HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 + (double)motorRightOffsetFwd / 100), useMotorDriveBrake); } else { setZSX12HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value * (1 - (double)motorRightOffsetRev / 100), useMotorDriveBrake); } } if (RIGHT_MOTOR_DRIVER == 2) setL298N(pinMotorRightDir, pinMotorRightPWM, pinMotorRightEnable, value); if (RIGHT_MOTOR_DRIVER == 3) setBTS7960(pinMotorRightDir, pinMotorRightPWM, pinMotorRightEnable, value); break;
case ACT_MOTOR_MOW:
if (MOW_MOTOR_DRIVER == 1) setZSX11HV1(pinMotorMowDir, pinMotorMowPWM, pinMotorMowBrake, abs(value), useMotorDriveBrake);
if (MOW_MOTOR_DRIVER == 2) setL298N(pinMotorMowDir, pinMotorMowPWM, pinMotorMowEnable, abs(value));
if (MOW_MOTOR_DRIVER == 3) setBTS7960(pinMotorMowDir, pinMotorMowPWM, pinMotorMowEnable, abs(value));
break;
case ACT_MOTOR_LEFT:
if (LEFT_MOTOR_DRIVER == 1) {
setZSX11HV1(pinMotorLeftDir, pinMotorLeftPWM, pinMotorLeftBrake, value, useMotorDriveBrake);
}
if (LEFT_MOTOR_DRIVER == 2) setL298N(pinMotorLeftDir, pinMotorLeftPWM, pinMotorLeftEnable, value);
if (LEFT_MOTOR_DRIVER == 3) setBTS7960(pinMotorLeftDir, pinMotorLeftPWM, pinMotorLeftEnable, value);
break;
case ACT_MOTOR_RIGHT:
if (RIGHT_MOTOR_DRIVER == 1) {
setZSX11HV1(pinMotorRightDir, pinMotorRightPWM, pinMotorRightBrake, value, useMotorDriveBrake);
}
if (RIGHT_MOTOR_DRIVER == 2) setL298N(pinMotorRightDir, pinMotorRightPWM, pinMotorRightEnable, value);
if (RIGHT_MOTOR_DRIVER == 3) setBTS7960(pinMotorRightDir, pinMotorRightPWM, pinMotorRightEnable, value);
break;
Maybe you don't use code from my github ?Hello
I wanted to change it yesterday and it gives me the error message that setZSX12HV1 is not declared is.