[bugfix-2.0.x] RAMPS + DUE = NEOPIXEL_LED causes motors not moving
Hi all, first post. I've got a modified RAMPS with Arduino DUE running Marlin bugfix-2.0.x branch, checkout on 11.11.2018, added neopixel leds today to pin 47 with separate power supply,...
View ArticleRe: Unable to get TMC2130 sensorless homing working
Quotewamonite Yep, that was it. Enabling endstop pullups and inverting endstop logic for my TMC2130s fixed my sensorless homing issues. This would have worked in 1.1.8 (although I was having other...
View ArticleRe: How to set home position in the middle of the bad in Marlin 1.1.0-RC7
HI, Sorry, some more details Printer Malyan m150. My home settings: #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1 // Travel limits after homing (units are in mm) #define X_MIN_POS...
View ArticlePrinthead and bed movements off
Good evening all, I apologize for the poor subject line. The short story is that the printer 'thinks' that the rear corner of the bed is almost in the center of the bed and all the movements it makes...
View ArticleRe: Printhead and bed movements off
This is a discrepancy between what the hardware is set to vs the defined steps/mm I see #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 95 } but I also see #define X_DRIVER_TYPE DRV8825 #define...
View ArticleRe: Printhead and bed movements off
Thank you! I'll give that a shot right now. In black and white 1/32 stepping makes me think that it's capable of more precise movement there fore capable of higher quality prints. Is the hardware...
View ArticleRe: Printhead and bed movements off
On a Cartesian machine 1/32 is over kill in my view. Due to the way steppers work, you don't get increased accuracy, just lower noise (steppers do not move on every micro step) It also limits the max...
View ArticleRe: How to set home position in the middle of the bad in Marlin 1.1.0-RC7
We did this with Z-Safe Homing did not like the nozzle on the corner of the bed. #define Z_SAFE_HOMING #if ENABLED(Z_SAFE_HOMING) #define Z_SAFE_HOMING_X_POINT ((X_MIN_POS + X_MAX_POS) / 2) #define...
View ArticleHelp on single extruder with servo with chimera
Hello.. i need some help if is possible.. I searched a lot but i don't now if is possible or search in wrong way.. I use a mks base 1.4, with a homemade printer based in a FolgerTech i3 2020. And i...
View ArticleRe: Help on single extruder with servo with chimera
Just think on what your trying to do here for a minute... stepper drivers 1 * X 1 * Y 2 * Z 2 * E that is 6 stepper drivers and how many stepper drivers are on your controller? Thats right, 5 stepper...
View ArticleRe: Help on single extruder with servo with chimera
The board has: X, Y, Z, E0, E1 Try to use E1 to Z2 I now that is possible... My problem is the hotend... Is there any configuration that I can change to have 1 extruder but with 2 hotend?
View ArticleRe: Help on single extruder with servo with chimera
Take a look at SWITCHING_EXTRUDER [marlinfw.org] Is that what you have? as 2 hotends and 1 extruder isnt very common
View ArticleRe: Help on single extruder with servo with chimera
Yes... I have 1 stepper for both filament and use a servo to switch between filament. But since I have a chimera... Is to see if can use the 2 nozzle with SWITCHING_EXTRUDER..
View ArticleRe: Dual Nozzle, Dual Stepper, Servo Actuated Nozzle - Marlin Settings?
Hi Everyone Thank you very much for the detailed information on switching extruder. Im looking for a version to configure dual extruder for my project. If someone can help me with the actual version...
View ArticleHow to doing Custom Status Screen ?
Hello. I seached and find; [reprap.org] But I could not I activated "#define CUSTOM_STATUS_SCREEN_IMAGE" and i create 25x25 pixel a icon(bmp) So, [marlinfw.org] convert to bmp status screen I created...
View ArticleRe: Dual Nozzle, Dual Stepper, Servo Actuated Nozzle - Marlin Settings?
I am sure Marlin would do a great job. Personally, I ended up switching from Marlin to Klipper for my dual extrusion needs: [github.com]
View ArticleRe: How to doing Custom Status Screen ?
It seems to be a bit of a bug where it presume there are at least two frames to the image a quick fix is to copy the block in _Statusscreen.h const unsigned char status_screen0_bmp[] PROGMEM = { .......
View ArticleRe: How to doing Custom Status Screen ?
If you take a look at the example CR-10S configurations in [github.com] you can see exactly how to do it... especially important is the lines like #define STATUS_SCREEN_HOTEND_TEXT_X (E) (38 + (E) *...
View ArticleRe: How to doing Custom Status Screen ?
Oh really thanks, this is perfect for me! So i want bed figure animation. can I do it?
View Article