12864 command M701 S"nnn"
-
Good day.
Is it possible to add command M701 S"ABS" to menu.
Tryed to write command:button R20 C2 T"LOAD ABS" A"M701 S#0" L"ABS"
but nothing happened.
-
Perhaps it doesn't like the
S#0
? -
The command must be
M701 S"ABS"
but in configuration menu file I cannot write like this
button R20 C2 T"LOAD ABS" A"M701 S"ABS""
Doudble double quote will not working correctly.
How to write this command correctly? -
@demonlibra try this:
button R20 C2 T"LOAD ABS" A"M701 S""ABS"""
-
button R20 C2 T"LOAD ABS" A"M701 S""ABS"""
The line can be selected, but no characters are displayed.
The filament load command does not start. -
-
@Phaedrux
Sorry, I dont understand -
@demonlibra Nevermind, I misstook the command.
I'm not sure what the problem would be.
-
@phaedrux To use command M701 we must put in double quote name of the filament.
But to write line in menu we must put in double quote whole command.
Double double quote did not working.Sorry for my english.
-
How about making a macro file containing the command, then just call the macro with the button line?
-
@rjenkinsgb I am already thinking about it.
I will use this option if I don’t find another solution. -
created folder "/menu/filaments"
created files pla, abs, petg with content
M701 S"PLA"
M701 S"ABS"
...
Working fine.