MCPcopy Create free account
hub / github.com/MarlinFirmware/Marlin / M117

Method M117

Marlin/src/gcode/lcd/M117.cpp:33–40  ·  view source on GitHub ↗

* M117: Set LCD Status Message */

Source from the content-addressed store, hash-verified

31 * M117: Set LCD Status Message
32 */
33void GcodeSuite::M117() {
34
35 if (parser.has_string())
36 ui.set_status_no_expire(parser.string_arg);
37 else
38 ui.reset_status();
39
40}
41
42#endif // HAS_STATUS_MESSAGE

Callers

nothing calls this directly

Calls 3

has_stringMethod · 0.80
set_status_no_expireMethod · 0.80
reset_statusMethod · 0.45

Tested by

no test coverage detected