I've been trying for a week to get the Ultibots FSR kit working on my max.
To date i've almost bricked the rambo, nearly broken the build plate and had a darn good stab at breaking the arms of the Z axis.
I have high hopes that somone here will be able to assist in getting the FSR to detect before i succeed in actually damaging the printer.
Below is the endstop config i've been trying, but cannot get the FSR to do anything.
Code: Select all
// ##########################################################################################
// ## Endstop configuration ##
// ##########################################################################################
/* By default all endstops are pulled up to HIGH. You need a pullup if you
use a mechanical endstop connected with GND. Set value to false for no pullup
on this endstop.
*/
#define ENDSTOP_PULLUP_X_MIN true
#define ENDSTOP_PULLUP_Y_MIN true
#define ENDSTOP_PULLUP_Z_MIN true
#define ENDSTOP_PULLUP_X_MAX true
#define ENDSTOP_PULLUP_Y_MAX true
#define ENDSTOP_PULLUP_Z_MAX true
//set to true to invert the logic of the endstops
#define ENDSTOP_X_MIN_INVERTING true
#define ENDSTOP_Y_MIN_INVERTING true
#define ENDSTOP_Z_MIN_INVERTING true
#define ENDSTOP_X_MAX_INVERTING false
#define ENDSTOP_Y_MAX_INVERTING false
#define ENDSTOP_Z_MAX_INVERTING false
// Set the values true where you have a hardware endstop. The Pin number is taken from pins.h.
#define MIN_HARDWARE_ENDSTOP_X false
#define MIN_HARDWARE_ENDSTOP_Y false
#define MIN_HARDWARE_ENDSTOP_Z false
#define MAX_HARDWARE_ENDSTOP_X true
#define MAX_HARDWARE_ENDSTOP_Y true
#define MAX_HARDWARE_ENDSTOP_Z true
tapping the build plate will light up 1-3 of the LEDs on the FSR board, and at the same time will mark the Endstop Min to On when looking at the z calibration screen on the rambo.
Despite this nothing takes any notice of the reading. In its current state every run of OpenDact stop 10mm above the build plate, runs a config in the air then subtracts 10mm from the Z Max and says it's done.
Any hints on how to get this FSR board to work?
(Yes im planning to upgrade to Duet, but that's not an option right now due to other financial commitments)