Skip to content
Scott Lahteine edited this page Mar 23, 2016 · 3 revisions

DO NOT EDIT THIS PAGE. The wiki is being ported to a new documentation system.
Please see Issue #3088 "New Documentation" for more information.

Table of Contents

Description

Pause and wait for a user reply, with an optional prompt message to display on the LCD controller screen.

Arguments

 S<sec>    Maximum time (in seconds) to wait before resuming
 P<ms>     Maximum time (in milliseconds) to wait before resuming
 <string>  A string to display on the LCD screen

Examples

 M0 Click When Ready
  • Display Click When Ready on the LCD screen
  • Wait forever for a controller button press
 M0
  • Display Wait for user... on the LCD screen
  • Wait forever for a controller button press
 M0 S10
  • Display Wait for user... on the LCD screen
  • Wait 10 seconds for a controller button press, then continue

Discussion

Notes

  • M1 is a deprecated alias for M0.
  • If both S and P are included, S takes precedence.
  • Without ULTIPANEL M0 does nothing.
Clone this wiki locally