Re: Sending Message to LCD screen
M117 calls lcd_setstatus(parser.string_arg); This puts what ever you want on the last line of the display. so all you need to do is add something like the above to the main loop in Marlin_main.cpp and...
View ArticleRe: Sending Message to LCD screen
Thanks for the advice, I have tried lcd_setstatus, but have some trouble with set_status. It works if I just pass in a cstring directly, but I can't get it to work with floats or doubles. Is there a...
View ArticleTrying to get BlTouch to work, Compiling doesn't work :(
Hey all, i have a Creality CR-10s and wanted to use BlTouch so i followed the tutorials out there and tried to compile a working firmware for it to work. The issue is when i try to compile the...
View ArticleRe: Sending Message to LCD screen
Furthermore, if I just say lcd_setstatus("string"), the last line of the LCD screen becomes blank and doesn't output the message properly.
View ArticleRe: Sending Message to LCD screen
currently I have endstops.event_handler(); lcd_setstatus("I am a fish"); idle(); and my printer thinks is a fish, without any issues
View ArticleZ axis gains 2MM at print start
My Cartesian printer is gaining 2-mm on Z after homing and moving into the print area. Needless to say the prints aren't sticking. This is a new built printer and all other features are working now...
View ArticleRe: Z axis gains 2MM at print start
NM Figured it out. I am dumber than my own cat some days.
View ArticleRe: Sending Message to LCD screen
Looking at your code, there are some issues.... mostly with sprintf, It over writes message, and doesnt convert the %f correctly. int sensorValue = analogRead(MFC_SENSOR); char message[25]; char...
View ArticleRe: Trying to get BlTouch to work, Compiling doesn't work :(
Please post your configuration.h
View ArticleRe: Trying to get BlTouch to work, Compiling doesn't work :(
QuoteDust Please post your configuration.h Here i've added it to the attachments.
View Article[2.0.x] Axis is not displayed normally.
The y-axis is not output and the z-axis is only partially visible. (ender-3, marlin 2.0.x) [attachment 107708 sd.jpg]
View ArticleRe: Trying to get BlTouch to work, Compiling doesn't work :(
That is not standard a standard marlin configuration.h seems to be a really bastardized version from TH3D Unified Firmware Package
View ArticleRe: Trying to get BlTouch to work, Compiling doesn't work :(
I downloaded the latest TH3D firmware. Like i said, other people have had the same problem as well. I am willing to try the normal marlin firmware but the issue is i have no clue how to properly...
View ArticleRe: Trying to get BlTouch to work, Compiling doesn't work :(
That code is truly horrible.... and clearly doesn't work for your combination. load up Configuration_backend.h find #if ENABLED(EZABL_ENABLE) #define RESTORE_LEVELING_AFTER_G28 #define...
View ArticleRe: Trying to get BlTouch to work, Compiling doesn't work :(
QuoteDust That code is truly horrible.... and clearly doesn't work for your combination. It now compiles. NB I dont have the right hardware to test this, good luck. Dude it seems to have worked !...
View ArticleCustom command remove filament
Hello All! I'm trying to add an "unload" command to the custom command menu that would retract 400mm filament from the PTFE tube, but whatever command I use, does not work. I tried heated, cold, but...
View ArticleRe: Custom command remove filament
how about posting at least one eg, so we can see how your trying to implement this? Also please take a look at [github.com] ADVANCED_PAUSE_FEATURE might already do what you want.
View ArticleRe: When single nozzle is used for multicolor printing, hold another extruder.
M84 S0 was valid only for XYZ.
View ArticleRe: Custom command remove filament
The latest attempt: #define CUSTOM_USER_MENUS #if ENABLED(CUSTOM_USER_MENUS) #define USER_SCRIPT_DONE "M117 User script done" #define USER_SCRIPT_AUDIBLE_FEEDBACK #define USER_SCRIPT_RETURN // Return...
View Articleadd button in marlin firmware
Hi everyone. I need to do this: modify a reprap hardware add 2 buttons, one is for execute 3 gcode commands and the other is to go back to last position. Does someone know in which libray can i add...
View Article