# Heating The Bed & Nozzle

## Heating Modes

### Active

An "Active" heater means:

1. The tool associated with the heater is ***selected and is tool used to print***. All other tools will display a "standby" message below their heater (even if its the same heater).
2. The heater ***can*** start heating, to given active temperatures.

### Standby

A "Standby" heater means:

1. The tool associated with the heater is ***not selected***.
2. The heater ***can*** start heating to given standby temperatures.

### Off

An "Off" heater means:

1. The tool associated with the heater is ***not selected***.
2. The heater ***cannot*** start heating.

### Fault

A "Fault" heater means:

1. The tool associated with the heater is ***not selected***.
2. The heater ***cannot*** start heating.
3. The heater will not change to a different state, unless the fault is addressed.&#x20;
4. See [Heater Troubleshooting](https://promega.printm3d.com/how-to-troubleshoot/heater) page for help.

## **Heating: The Bed**

### Using The Web Interface

Look the "Bed" row.

![](https://3381616767-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH1ZPQUJrjMM5Ql5c--%2F-LPCvow6SrIu0pHkM31z%2F-LPCyLx1sw4jbN87wE7c%2Fbed%20row.png?alt=media\&token=5123b451-a029-4044-8f7c-4e41f5a9f6b2)

The bed only has two states: Active or Off.

Enter desired temperature.

![](https://3381616767-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH1ZPQUJrjMM5Ql5c--%2F-LPCvow6SrIu0pHkM31z%2F-LPCyNqJ_LWBJ18o_8AD%2Fbed%20temp%20enter.png?alt=media\&token=33013671-2231-4ee4-931e-e892c1359bfe)

Hit "Enter" key.

### Using G-Code

#### There are two ways to heat the bed: Fast or Slow

1. Definition of ***Slow***: Set the bed temperature. All future G-code commands ***will not be*** executed immediately. It will wait until the bed reaches temperature.
2. Definition of ***Fast***: Set the bed temperature. All future G-code commands ***will be*** executed immediately.

Navigate to the "G-Code Console" Tab

![](https://3381616767-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH1ZPQUJrjMM5Ql5c--%2F-LPCvow6SrIu0pHkM31z%2F-LPCwbr18dUSv-IcX-e6%2Fgconsole%20location.PNG?alt=media\&token=1bba2e5a-e9b9-49ca-9d8d-62e1ed5aecab)

#### Input Code (Slow):

```
M190 S75; This sets the bed temperature to 75 C
```

#### Input Code (Fast):

```
M140 S75; This sets the bed temperature to 75 C
```

## Heating: The Nozzle

### Using The Web Interface

Look for the desired tool.

![](https://3381616767-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH1ZPQUJrjMM5Ql5c--%2F-LPCvow6SrIu0pHkM31z%2F-LPCyj8gzTyqNXThe84h%2Ftool%20rows.png?alt=media\&token=b9f0f3a8-e564-42a5-9560-48e08d4a5fe7)

Choose a mode: Active or Standby

![](https://3381616767-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH1ZPQUJrjMM5Ql5c--%2F-LPCvow6SrIu0pHkM31z%2F-LPCyhn6UnwfgjDfnsjQ%2Ftemp%20state%20columns.png?alt=media\&token=80e6c79f-b319-4bda-8042-759e108f74fd)

Enter a number.

Hit "Enter" key.

### Using G-Code

#### There are two ways to heat the extruder: Fast or Slow

1. Definition of ***Slow***: Set the extruder temperature. All future G-code commands ***will not be*** executed immediately. It will wait until the bed reaches temperature.
2. Definition of ***Fast***: Set the extruder temperature. All future G-code commands ***will be*** executed immediately.

Navigate to the "G-Code Console" Tab

![](https://3381616767-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH1ZPQUJrjMM5Ql5c--%2F-LPCvow6SrIu0pHkM31z%2F-LPCwfD8j7go88_0gqJO%2Fgconsole%20location.PNG?alt=media\&token=2a758924-4273-48c6-b888-40e89289bd3b)

#### Input Code (Slow):

```
M109 S75 T1; This sets the extruder temperature to 75 C. Applies to tool 1.
```

#### Input Code (Fast):

```
G10 T1 R75 S50; This sets the active temperature to 75 C and the standby temperature to 50. Applies to tool 1.
```
