# \[Marlin] M092 - Set Axis Steps-per-unit

{% hint style="success" %}
**📅Update: 2020/09/18**
{% endhint %}

## Description

Use [`M92`](https://app.gitbook.com/docs/gcode/M092.html) to set the steps-per-unit for one or more axes. This setting affects how many steps will be done for each unit of movement. Units will be in steps/mm unless *inch* mode is set with [`G20`](https://app.gitbook.com/docs/gcode/G020.html) (which requires `INCH_MODE_SUPPORT`).

## Notes

* |Get the current steps-per-unit settings with [`M503`](https://app.gitbook.com/docs/gcode/M503.html).

  With `EEPROM_SETTINGS` enabled:
* This setting for all axes is saved with [`M500`](https://app.gitbook.com/docs/gcode/M500.html) and loaded with [`M501`](https://app.gitbook.com/docs/gcode/M501.html).
* [`M502`](https://app.gitbook.com/docs/gcode/M502.html) resets steps-per-unit for all axes to the values from `DEFAULT_AXIS_STEPS_PER_UNIT`.

## Usage

`M92` `[E<steps>]` `[T<index>]` `[X<steps>]` `[Y<steps>]` `[Z<steps>]`

### Parameters

* `[E<steps>]` E steps per unit
* `[T<index>]` Target extruder (Requires DISTINCT\_E\_FACTORS)
* `[X<steps>]` X steps per unit
* `[Y<steps>]` Y steps per unit
* `[Z<steps>]` Z steps per unit

## Examples

Set E steps for a new extruder

```
M92 E688.4
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://manual.rotrics.com/gcode/marlin-original-commands/marlin-m092-set-axis-steps-per-unit.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
