I need to know what tower 3’s, x and y are doing, but I need to understand where the values of the x and y are coming from. I believe this is z motor and that is why it is different but I am not understanding where the numbers are coming from? (please see below)
// Effective X/Y positions of the three vertical towers. #define SIN_60 0.8660254037844386 #define COS_60 0.5 #define DELTA_TOWER1_X -SIN_60DELTA_RADIUS // front left tower #define DELTA_TOWER1_Y -COS_60DELTA_RADIUS #define DELTA_TOWER2_X SIN_60DELTA_RADIUS // front right tower #define DELTA_TOWER2_Y -COS_60DELTA_RADIUS #define DELTA_TOWER3_X 0.5 // back middle tower #define DELTA_TOWER3_Y DELTA_RADIUS
I believe that Arduino Code and Marlin are generating a effective print radius smaller than I want (refer to image attached). Could anyone tell me if this is true, and if so, is there any solution to gain an effective print radius?(please also see attached image)
My Arduino H configuration;
// Effective X/Y positions of the three vertical towers. #define SIN_60 0.8660254037844386 #define COS_60 0.5 #define DELTA_TOWER1_X -SIN_60DELTA_RADIUS // front left tower #define DELTA_TOWER1_Y -COS_60DELTA_RADIUS #define DELTA_TOWER2_X SIN_60DELTA_RADIUS // front right tower #define DELTA_TOWER2_Y -COS_60DELTA_RADIUS #define DELTA_TOWER3_X 0.5 // back middle tower #define DELTA_TOWER3_Y DELTA_RADIUS
We need all the code. I would suspect an integer round-off error. It might be better to ask on a Marlin board, since there seems to be a lot of stuff behind the scenes.
This question needs to be addressed to a Marlin expert. Marlin is a complex ready-made program. This Forum is about helping people write their own programs.
3 active posts on the front page of the Forum, and you still didn't bother to read the correct way to post here. Please read the post by Nick Gammon at the top of this page, especially about using code tags when posting source code.