Welcome to mirror list, hosted at ThFree Co, Russian Federation.

M304.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab29e03f43540c1459102b1e48cca80caa22a7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
tag: m0304
title: Set Bed PID
brief: Set PID values for the heated bed.
author: thinkyhead

requires: PIDTEMPBED
group: thermal

codes: [ M304 ]

notes:
  - Requires `PIDTEMPBED`.
  - View current bed PID values with [`M503`](/docs/gcode/M503.html)
  - If `EEPROM_SETTINGS` is enabled, bed PID values are saved with [`M500`](/docs/gcode/M500.html), loaded with [`M501`](/docs/gcode/M501.html), and reset with [`M502`](/docs/gcode/M502.html)

parameters:
  -
    tag: P
    optional: true
    description: Proportional value
    values:
      -
        tag: value
        type: float
  -
    tag: I
    optional: true
    description: Integral value
    values:
      -
        tag: value
        type: float
  -
    tag: D
    optional: true
    description: Derivative value
    values:
      -
        tag: value
        type: float

---

Set the values that control the PID loop for the heated bed.