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

github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/_gcode
diff options
context:
space:
mode:
authorqwertymodo <qwertymodo@gmail.com>2022-08-06 08:27:56 +0300
committerGitHub <noreply@github.com>2022-08-06 08:27:56 +0300
commitf1b0db6cb9c94a0f9647e2bdf0c5ff51253bfa0a (patch)
treef11481b1d1b36eb4525586eaa407fd5c0b762d2c /_gcode
parent27ffd7fb44df508c7af8ac9eb7fdebc2bb70a359 (diff)
M150 K (#458)
MarlinFirmware/Marlin#24315
Diffstat (limited to '_gcode')
-rw-r--r--_gcode/M150.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/_gcode/M150.md b/_gcode/M150.md
index 0dca23de..19af08b3 100644
--- a/_gcode/M150.md
+++ b/_gcode/M150.md
@@ -73,6 +73,14 @@ parameters:
-
tag: strip
type: int
+ -
+ tag: K
+ optional: true
+ requires: NEOPIXEL_LED
+ description: Keep all unspecified values unchanged (Requires `NEOPIXEL_LED`)
+ values:
+ -
+ type: flag
examples:
-
@@ -87,6 +95,9 @@ examples:
-
pre: Set the second NeoPixel strip full white
code: M150 W255 S1
+ -
+ pre: Change red to 50% without changing other components
+ code: M150 K R127
---