Преглед изворни кода

Patch up some verbiage in configs

Scott Lahteine пре 6 година
родитељ
комит
39a545b3f8
39 измењених фајлова са 722 додато и 723 уклоњено
  1. 19
    19
      Marlin/Configuration.h
  2. 19
    19
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration.h
  3. 19
    19
      Marlin/example_configurations/AliExpress/CL-260/Configuration.h
  4. 19
    19
      Marlin/example_configurations/Anet/A6/Configuration.h
  5. 19
    19
      Marlin/example_configurations/Anet/A8/Configuration.h
  6. 19
    19
      Marlin/example_configurations/BQ/Hephestos/Configuration.h
  7. 19
    19
      Marlin/example_configurations/BQ/Hephestos_2/Configuration.h
  8. 19
    19
      Marlin/example_configurations/BQ/WITBOX/Configuration.h
  9. 19
    19
      Marlin/example_configurations/Cartesio/Configuration.h
  10. 19
    19
      Marlin/example_configurations/Creality/CR-10/Configuration.h
  11. 19
    19
      Marlin/example_configurations/Felix/Configuration.h
  12. 19
    19
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  13. 19
    19
      Marlin/example_configurations/Folger Tech/i3-2020/Configuration.h
  14. 19
    19
      Marlin/example_configurations/Geeetech/GT2560/Configuration.h
  15. 19
    19
      Marlin/example_configurations/Geeetech/I3_Pro_X-GT2560/Configuration.h
  16. 19
    19
      Marlin/example_configurations/Infitary/i3-M508/Configuration.h
  17. 19
    19
      Marlin/example_configurations/Malyan/M150/Configuration.h
  18. 0
    1
      Marlin/example_configurations/Micromake/C1/README.md
  19. 19
    19
      Marlin/example_configurations/Micromake/C1/basic/Configuration.h
  20. 19
    19
      Marlin/example_configurations/Micromake/C1/enhanced/Configuration.h
  21. 19
    19
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  22. 19
    19
      Marlin/example_configurations/RigidBot/Configuration.h
  23. 19
    19
      Marlin/example_configurations/SCARA/Configuration.h
  24. 19
    19
      Marlin/example_configurations/Sanguinololu/Configuration.h
  25. 19
    19
      Marlin/example_configurations/TinyBoy2/Configuration.h
  26. 19
    19
      Marlin/example_configurations/Velleman/K8200/Configuration.h
  27. 19
    19
      Marlin/example_configurations/Velleman/K8400/Configuration.h
  28. 19
    19
      Marlin/example_configurations/Velleman/K8400/Dual-head/Configuration.h
  29. 19
    19
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  30. 19
    19
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h
  31. 19
    19
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h
  32. 19
    19
      Marlin/example_configurations/delta/generic/Configuration.h
  33. 19
    19
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  34. 19
    19
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  35. 19
    19
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  36. 19
    19
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration.h
  37. 19
    19
      Marlin/example_configurations/makibox/Configuration.h
  38. 19
    19
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  39. 19
    19
      Marlin/example_configurations/wt150/Configuration.h

+ 19
- 19
Marlin/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/AlephObjects/TAZ4/Configuration.h Прегледај датотеку

@@ -1628,17 +1628,17 @@
1628 1628
  * Adds the M150 command to set the LED (or LED strip) color.
1629 1629
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1630 1630
  * luminance values can be set from 0 to 255.
1631
- * For Neopixel LED overall brightness parameters is also available
1631
+ * For Neopixel LED an overall brightness parameter is also available.
1632 1632
  *
1633 1633
  * *** CAUTION ***
1634 1634
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1635 1635
  *  as the Arduino cannot handle the current the LEDs will require.
1636 1636
  *  Failure to follow this precaution can destroy your Arduino!
1637
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1638
- *  cannot handle such current, separate 5V power supply must be used
1637
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1638
+ *  more current than the Arduino 5V linear regulator can produce. 
1639 1639
  * *** CAUTION ***
1640 1640
  *
1641
- * LED type. This options are mutualy exclusive. Uncomment only one.
1641
+ * LED Type. Enable only one of the following two options.
1642 1642
  *
1643 1643
  */
1644 1644
 //#define RGB_LED
@@ -1654,11 +1654,11 @@
1654 1654
 // Support for Adafruit Neopixel LED driver
1655 1655
 //#define NEOPIXEL_LED
1656 1656
 #if ENABLED(NEOPIXEL_LED)
1657
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1657
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1658 1658
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1659
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1660
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1661
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1659
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1660
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1661
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1662 1662
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1663 1663
 #endif
1664 1664
 
@@ -1677,18 +1677,18 @@
1677 1677
   #define PRINTER_EVENT_LEDS
1678 1678
 #endif
1679 1679
 
1680
-/*********************************************************************\
1681
-* R/C SERVO support
1682
-* Sponsored by TrinityLabs, Reworked by codexmas
1683
-**********************************************************************/
1680
+/**
1681
+ * R/C SERVO support
1682
+ * Sponsored by TrinityLabs, Reworked by codexmas
1683
+ */
1684 1684
 
1685
-// Number of servos
1686
-//
1687
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1688
-// set it manually if you have more servos than extruders and wish to manually control some
1689
-// leaving it undefined or defining as 0 will disable the servo subsystem
1690
-// If unsure, leave commented / disabled
1691
-//
1685
+/**
1686
+ * Number of servos
1687
+ *
1688
+ * For some servo-related options NUM_SERVOS will be set automatically.
1689
+ * Set this manually if there are extra servos needing manual control.
1690
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1691
+ */
1692 1692
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1693 1693
 
1694 1694
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/AliExpress/CL-260/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Anet/A6/Configuration.h Прегледај датотеку

@@ -1767,17 +1767,17 @@
1767 1767
  * Adds the M150 command to set the LED (or LED strip) color.
1768 1768
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1769 1769
  * luminance values can be set from 0 to 255.
1770
- * For Neopixel LED overall brightness parameters is also available
1770
+ * For Neopixel LED an overall brightness parameter is also available.
1771 1771
  *
1772 1772
  * *** CAUTION ***
1773 1773
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1774 1774
  *  as the Arduino cannot handle the current the LEDs will require.
1775 1775
  *  Failure to follow this precaution can destroy your Arduino!
1776
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1777
- *  cannot handle such current, separate 5V power supply must be used
1776
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1777
+ *  more current than the Arduino 5V linear regulator can produce. 
1778 1778
  * *** CAUTION ***
1779 1779
  *
1780
- * LED type. This options are mutualy exclusive. Uncomment only one.
1780
+ * LED Type. Enable only one of the following two options.
1781 1781
  *
1782 1782
  */
1783 1783
 //#define RGB_LED
@@ -1793,11 +1793,11 @@
1793 1793
 // Support for Adafruit Neopixel LED driver
1794 1794
 //#define NEOPIXEL_LED
1795 1795
 #if ENABLED(NEOPIXEL_LED)
1796
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1796
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1797 1797
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1798
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1799
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1800
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1798
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1799
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1800
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1801 1801
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1802 1802
 #endif
1803 1803
 
@@ -1816,18 +1816,18 @@
1816 1816
   #define PRINTER_EVENT_LEDS
1817 1817
 #endif
1818 1818
 
1819
-/*********************************************************************\
1820
-* R/C SERVO support
1821
-* Sponsored by TrinityLabs, Reworked by codexmas
1822
-**********************************************************************/
1819
+/**
1820
+ * R/C SERVO support
1821
+ * Sponsored by TrinityLabs, Reworked by codexmas
1822
+ */
1823 1823
 
1824
-// Number of servos
1825
-//
1826
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1827
-// set it manually if you have more servos than extruders and wish to manually control some
1828
-// leaving it undefined or defining as 0 will disable the servo subsystem
1829
-// If unsure, leave commented / disabled
1830
-//
1824
+/**
1825
+ * Number of servos
1826
+ *
1827
+ * For some servo-related options NUM_SERVOS will be set automatically.
1828
+ * Set this manually if there are extra servos needing manual control.
1829
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1830
+ */
1831 1831
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1832 1832
 
1833 1833
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Anet/A8/Configuration.h Прегледај датотеку

@@ -1616,17 +1616,17 @@
1616 1616
  * Adds the M150 command to set the LED (or LED strip) color.
1617 1617
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1618 1618
  * luminance values can be set from 0 to 255.
1619
- * For Neopixel LED overall brightness parameters is also available
1619
+ * For Neopixel LED an overall brightness parameter is also available.
1620 1620
  *
1621 1621
  * *** CAUTION ***
1622 1622
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1623 1623
  *  as the Arduino cannot handle the current the LEDs will require.
1624 1624
  *  Failure to follow this precaution can destroy your Arduino!
1625
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1626
- *  cannot handle such current, separate 5V power supply must be used
1625
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1626
+ *  more current than the Arduino 5V linear regulator can produce. 
1627 1627
  * *** CAUTION ***
1628 1628
  *
1629
- * LED type. This options are mutualy exclusive. Uncomment only one.
1629
+ * LED Type. Enable only one of the following two options.
1630 1630
  *
1631 1631
  */
1632 1632
 //#define RGB_LED
@@ -1642,11 +1642,11 @@
1642 1642
 // Support for Adafruit Neopixel LED driver
1643 1643
 //#define NEOPIXEL_LED
1644 1644
 #if ENABLED(NEOPIXEL_LED)
1645
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1645
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1646 1646
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1647
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1648
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1649
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1647
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1648
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1649
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1650 1650
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1651 1651
 #endif
1652 1652
 
@@ -1665,18 +1665,18 @@
1665 1665
   #define PRINTER_EVENT_LEDS
1666 1666
 #endif
1667 1667
 
1668
-/*********************************************************************\
1669
-* R/C SERVO support
1670
-* Sponsored by TrinityLabs, Reworked by codexmas
1671
-**********************************************************************/
1668
+/**
1669
+ * R/C SERVO support
1670
+ * Sponsored by TrinityLabs, Reworked by codexmas
1671
+ */
1672 1672
 
1673
-// Number of servos
1674
-//
1675
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1676
-// set it manually if you have more servos than extruders and wish to manually control some
1677
-// leaving it undefined or defining as 0 will disable the servo subsystem
1678
-// If unsure, leave commented / disabled
1679
-//
1673
+/**
1674
+ * Number of servos
1675
+ *
1676
+ * For some servo-related options NUM_SERVOS will be set automatically.
1677
+ * Set this manually if there are extra servos needing manual control.
1678
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1679
+ */
1680 1680
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1681 1681
 
1682 1682
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/BQ/Hephestos/Configuration.h Прегледај датотеку

@@ -1599,17 +1599,17 @@
1599 1599
  * Adds the M150 command to set the LED (or LED strip) color.
1600 1600
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1601 1601
  * luminance values can be set from 0 to 255.
1602
- * For Neopixel LED overall brightness parameters is also available
1602
+ * For Neopixel LED an overall brightness parameter is also available.
1603 1603
  *
1604 1604
  * *** CAUTION ***
1605 1605
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1606 1606
  *  as the Arduino cannot handle the current the LEDs will require.
1607 1607
  *  Failure to follow this precaution can destroy your Arduino!
1608
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1609
- *  cannot handle such current, separate 5V power supply must be used
1608
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1609
+ *  more current than the Arduino 5V linear regulator can produce. 
1610 1610
  * *** CAUTION ***
1611 1611
  *
1612
- * LED type. This options are mutualy exclusive. Uncomment only one.
1612
+ * LED Type. Enable only one of the following two options.
1613 1613
  *
1614 1614
  */
1615 1615
 //#define RGB_LED
@@ -1625,11 +1625,11 @@
1625 1625
 // Support for Adafruit Neopixel LED driver
1626 1626
 //#define NEOPIXEL_LED
1627 1627
 #if ENABLED(NEOPIXEL_LED)
1628
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1628
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1629 1629
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1630
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1631
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1632
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1630
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1631
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1632
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1633 1633
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1634 1634
 #endif
1635 1635
 
@@ -1648,18 +1648,18 @@
1648 1648
   #define PRINTER_EVENT_LEDS
1649 1649
 #endif
1650 1650
 
1651
-/*********************************************************************\
1652
-* R/C SERVO support
1653
-* Sponsored by TrinityLabs, Reworked by codexmas
1654
-**********************************************************************/
1651
+/**
1652
+ * R/C SERVO support
1653
+ * Sponsored by TrinityLabs, Reworked by codexmas
1654
+ */
1655 1655
 
1656
-// Number of servos
1657
-//
1658
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1659
-// set it manually if you have more servos than extruders and wish to manually control some
1660
-// leaving it undefined or defining as 0 will disable the servo subsystem
1661
-// If unsure, leave commented / disabled
1662
-//
1656
+/**
1657
+ * Number of servos
1658
+ *
1659
+ * For some servo-related options NUM_SERVOS will be set automatically.
1660
+ * Set this manually if there are extra servos needing manual control.
1661
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1662
+ */
1663 1663
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1664 1664
 
1665 1665
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/BQ/Hephestos_2/Configuration.h Прегледај датотеку

@@ -1609,17 +1609,17 @@
1609 1609
  * Adds the M150 command to set the LED (or LED strip) color.
1610 1610
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1611 1611
  * luminance values can be set from 0 to 255.
1612
- * For Neopixel LED overall brightness parameters is also available
1612
+ * For Neopixel LED an overall brightness parameter is also available.
1613 1613
  *
1614 1614
  * *** CAUTION ***
1615 1615
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1616 1616
  *  as the Arduino cannot handle the current the LEDs will require.
1617 1617
  *  Failure to follow this precaution can destroy your Arduino!
1618
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1619
- *  cannot handle such current, separate 5V power supply must be used
1618
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1619
+ *  more current than the Arduino 5V linear regulator can produce. 
1620 1620
  * *** CAUTION ***
1621 1621
  *
1622
- * LED type. This options are mutualy exclusive. Uncomment only one.
1622
+ * LED Type. Enable only one of the following two options.
1623 1623
  *
1624 1624
  */
1625 1625
 //#define RGB_LED
@@ -1635,11 +1635,11 @@
1635 1635
 // Support for Adafruit Neopixel LED driver
1636 1636
 //#define NEOPIXEL_LED
1637 1637
 #if ENABLED(NEOPIXEL_LED)
1638
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1638
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1639 1639
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1640
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1641
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1642
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1640
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1641
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1642
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1643 1643
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1644 1644
 #endif
1645 1645
 
@@ -1658,18 +1658,18 @@
1658 1658
   #define PRINTER_EVENT_LEDS
1659 1659
 #endif
1660 1660
 
1661
-/*********************************************************************\
1662
-* R/C SERVO support
1663
-* Sponsored by TrinityLabs, Reworked by codexmas
1664
-**********************************************************************/
1661
+/**
1662
+ * R/C SERVO support
1663
+ * Sponsored by TrinityLabs, Reworked by codexmas
1664
+ */
1665 1665
 
1666
-// Number of servos
1667
-//
1668
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1669
-// set it manually if you have more servos than extruders and wish to manually control some
1670
-// leaving it undefined or defining as 0 will disable the servo subsystem
1671
-// If unsure, leave commented / disabled
1672
-//
1666
+/**
1667
+ * Number of servos
1668
+ *
1669
+ * For some servo-related options NUM_SERVOS will be set automatically.
1670
+ * Set this manually if there are extra servos needing manual control.
1671
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1672
+ */
1673 1673
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1674 1674
 
1675 1675
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/BQ/WITBOX/Configuration.h Прегледај датотеку

@@ -1599,17 +1599,17 @@
1599 1599
  * Adds the M150 command to set the LED (or LED strip) color.
1600 1600
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1601 1601
  * luminance values can be set from 0 to 255.
1602
- * For Neopixel LED overall brightness parameters is also available
1602
+ * For Neopixel LED an overall brightness parameter is also available.
1603 1603
  *
1604 1604
  * *** CAUTION ***
1605 1605
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1606 1606
  *  as the Arduino cannot handle the current the LEDs will require.
1607 1607
  *  Failure to follow this precaution can destroy your Arduino!
1608
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1609
- *  cannot handle such current, separate 5V power supply must be used
1608
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1609
+ *  more current than the Arduino 5V linear regulator can produce. 
1610 1610
  * *** CAUTION ***
1611 1611
  *
1612
- * LED type. This options are mutualy exclusive. Uncomment only one.
1612
+ * LED Type. Enable only one of the following two options.
1613 1613
  *
1614 1614
  */
1615 1615
 //#define RGB_LED
@@ -1625,11 +1625,11 @@
1625 1625
 // Support for Adafruit Neopixel LED driver
1626 1626
 //#define NEOPIXEL_LED
1627 1627
 #if ENABLED(NEOPIXEL_LED)
1628
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1628
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1629 1629
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1630
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1631
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1632
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1630
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1631
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1632
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1633 1633
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1634 1634
 #endif
1635 1635
 
@@ -1648,18 +1648,18 @@
1648 1648
   #define PRINTER_EVENT_LEDS
1649 1649
 #endif
1650 1650
 
1651
-/*********************************************************************\
1652
-* R/C SERVO support
1653
-* Sponsored by TrinityLabs, Reworked by codexmas
1654
-**********************************************************************/
1651
+/**
1652
+ * R/C SERVO support
1653
+ * Sponsored by TrinityLabs, Reworked by codexmas
1654
+ */
1655 1655
 
1656
-// Number of servos
1657
-//
1658
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1659
-// set it manually if you have more servos than extruders and wish to manually control some
1660
-// leaving it undefined or defining as 0 will disable the servo subsystem
1661
-// If unsure, leave commented / disabled
1662
-//
1656
+/**
1657
+ * Number of servos
1658
+ *
1659
+ * For some servo-related options NUM_SERVOS will be set automatically.
1660
+ * Set this manually if there are extra servos needing manual control.
1661
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1662
+ */
1663 1663
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1664 1664
 
1665 1665
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Cartesio/Configuration.h Прегледај датотеку

@@ -1607,17 +1607,17 @@
1607 1607
  * Adds the M150 command to set the LED (or LED strip) color.
1608 1608
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1609 1609
  * luminance values can be set from 0 to 255.
1610
- * For Neopixel LED overall brightness parameters is also available
1610
+ * For Neopixel LED an overall brightness parameter is also available.
1611 1611
  *
1612 1612
  * *** CAUTION ***
1613 1613
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1614 1614
  *  as the Arduino cannot handle the current the LEDs will require.
1615 1615
  *  Failure to follow this precaution can destroy your Arduino!
1616
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1617
- *  cannot handle such current, separate 5V power supply must be used
1616
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1617
+ *  more current than the Arduino 5V linear regulator can produce. 
1618 1618
  * *** CAUTION ***
1619 1619
  *
1620
- * LED type. This options are mutualy exclusive. Uncomment only one.
1620
+ * LED Type. Enable only one of the following two options.
1621 1621
  *
1622 1622
  */
1623 1623
 //#define RGB_LED
@@ -1633,11 +1633,11 @@
1633 1633
 // Support for Adafruit Neopixel LED driver
1634 1634
 //#define NEOPIXEL_LED
1635 1635
 #if ENABLED(NEOPIXEL_LED)
1636
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1636
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1637 1637
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1638
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1639
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1640
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1638
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1639
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1640
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1641 1641
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1642 1642
 #endif
1643 1643
 
@@ -1656,18 +1656,18 @@
1656 1656
   #define PRINTER_EVENT_LEDS
1657 1657
 #endif
1658 1658
 
1659
-/*********************************************************************\
1660
-* R/C SERVO support
1661
-* Sponsored by TrinityLabs, Reworked by codexmas
1662
-**********************************************************************/
1659
+/**
1660
+ * R/C SERVO support
1661
+ * Sponsored by TrinityLabs, Reworked by codexmas
1662
+ */
1663 1663
 
1664
-// Number of servos
1665
-//
1666
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1667
-// set it manually if you have more servos than extruders and wish to manually control some
1668
-// leaving it undefined or defining as 0 will disable the servo subsystem
1669
-// If unsure, leave commented / disabled
1670
-//
1664
+/**
1665
+ * Number of servos
1666
+ *
1667
+ * For some servo-related options NUM_SERVOS will be set automatically.
1668
+ * Set this manually if there are extra servos needing manual control.
1669
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1670
+ */
1671 1671
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1672 1672
 
1673 1673
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Creality/CR-10/Configuration.h Прегледај датотеку

@@ -1618,17 +1618,17 @@
1618 1618
  * Adds the M150 command to set the LED (or LED strip) color.
1619 1619
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1620 1620
  * luminance values can be set from 0 to 255.
1621
- * For Neopixel LED overall brightness parameters is also available
1621
+ * For Neopixel LED an overall brightness parameter is also available.
1622 1622
  *
1623 1623
  * *** CAUTION ***
1624 1624
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1625 1625
  *  as the Arduino cannot handle the current the LEDs will require.
1626 1626
  *  Failure to follow this precaution can destroy your Arduino!
1627
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1628
- *  cannot handle such current, separate 5V power supply must be used
1627
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1628
+ *  more current than the Arduino 5V linear regulator can produce. 
1629 1629
  * *** CAUTION ***
1630 1630
  *
1631
- * LED type. This options are mutualy exclusive. Uncomment only one.
1631
+ * LED Type. Enable only one of the following two options.
1632 1632
  *
1633 1633
  */
1634 1634
 //#define RGB_LED
@@ -1644,11 +1644,11 @@
1644 1644
 // Support for Adafruit Neopixel LED driver
1645 1645
 //#define NEOPIXEL_LED
1646 1646
 #if ENABLED(NEOPIXEL_LED)
1647
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1647
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1648 1648
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1649
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1650
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1651
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1649
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1650
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1651
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1652 1652
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1653 1653
 #endif
1654 1654
 
@@ -1667,18 +1667,18 @@
1667 1667
   #define PRINTER_EVENT_LEDS
1668 1668
 #endif
1669 1669
 
1670
-/*********************************************************************\
1671
-* R/C SERVO support
1672
-* Sponsored by TrinityLabs, Reworked by codexmas
1673
-**********************************************************************/
1670
+/**
1671
+ * R/C SERVO support
1672
+ * Sponsored by TrinityLabs, Reworked by codexmas
1673
+ */
1674 1674
 
1675
-// Number of servos
1676
-//
1677
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1678
-// set it manually if you have more servos than extruders and wish to manually control some
1679
-// leaving it undefined or defining as 0 will disable the servo subsystem
1680
-// If unsure, leave commented / disabled
1681
-//
1675
+/**
1676
+ * Number of servos
1677
+ *
1678
+ * For some servo-related options NUM_SERVOS will be set automatically.
1679
+ * Set this manually if there are extra servos needing manual control.
1680
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1681
+ */
1682 1682
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1683 1683
 
1684 1684
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Felix/Configuration.h Прегледај датотеку

@@ -1590,17 +1590,17 @@
1590 1590
  * Adds the M150 command to set the LED (or LED strip) color.
1591 1591
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1592 1592
  * luminance values can be set from 0 to 255.
1593
- * For Neopixel LED overall brightness parameters is also available
1593
+ * For Neopixel LED an overall brightness parameter is also available.
1594 1594
  *
1595 1595
  * *** CAUTION ***
1596 1596
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1597 1597
  *  as the Arduino cannot handle the current the LEDs will require.
1598 1598
  *  Failure to follow this precaution can destroy your Arduino!
1599
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1600
- *  cannot handle such current, separate 5V power supply must be used
1599
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1600
+ *  more current than the Arduino 5V linear regulator can produce. 
1601 1601
  * *** CAUTION ***
1602 1602
  *
1603
- * LED type. This options are mutualy exclusive. Uncomment only one.
1603
+ * LED Type. Enable only one of the following two options.
1604 1604
  *
1605 1605
  */
1606 1606
 //#define RGB_LED
@@ -1616,11 +1616,11 @@
1616 1616
 // Support for Adafruit Neopixel LED driver
1617 1617
 //#define NEOPIXEL_LED
1618 1618
 #if ENABLED(NEOPIXEL_LED)
1619
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1619
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1620 1620
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1621
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1622
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1623
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1621
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1622
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1623
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1624 1624
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1625 1625
 #endif
1626 1626
 
@@ -1639,18 +1639,18 @@
1639 1639
   #define PRINTER_EVENT_LEDS
1640 1640
 #endif
1641 1641
 
1642
-/*********************************************************************\
1643
-* R/C SERVO support
1644
-* Sponsored by TrinityLabs, Reworked by codexmas
1645
-**********************************************************************/
1642
+/**
1643
+ * R/C SERVO support
1644
+ * Sponsored by TrinityLabs, Reworked by codexmas
1645
+ */
1646 1646
 
1647
-// Number of servos
1648
-//
1649
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1650
-// set it manually if you have more servos than extruders and wish to manually control some
1651
-// leaving it undefined or defining as 0 will disable the servo subsystem
1652
-// If unsure, leave commented / disabled
1653
-//
1647
+/**
1648
+ * Number of servos
1649
+ *
1650
+ * For some servo-related options NUM_SERVOS will be set automatically.
1651
+ * Set this manually if there are extra servos needing manual control.
1652
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1653
+ */
1654 1654
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1655 1655
 
1656 1656
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Felix/DUAL/Configuration.h Прегледај датотеку

@@ -1590,17 +1590,17 @@
1590 1590
  * Adds the M150 command to set the LED (or LED strip) color.
1591 1591
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1592 1592
  * luminance values can be set from 0 to 255.
1593
- * For Neopixel LED overall brightness parameters is also available
1593
+ * For Neopixel LED an overall brightness parameter is also available.
1594 1594
  *
1595 1595
  * *** CAUTION ***
1596 1596
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1597 1597
  *  as the Arduino cannot handle the current the LEDs will require.
1598 1598
  *  Failure to follow this precaution can destroy your Arduino!
1599
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1600
- *  cannot handle such current, separate 5V power supply must be used
1599
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1600
+ *  more current than the Arduino 5V linear regulator can produce. 
1601 1601
  * *** CAUTION ***
1602 1602
  *
1603
- * LED type. This options are mutualy exclusive. Uncomment only one.
1603
+ * LED Type. Enable only one of the following two options.
1604 1604
  *
1605 1605
  */
1606 1606
 //#define RGB_LED
@@ -1616,11 +1616,11 @@
1616 1616
 // Support for Adafruit Neopixel LED driver
1617 1617
 //#define NEOPIXEL_LED
1618 1618
 #if ENABLED(NEOPIXEL_LED)
1619
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1619
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1620 1620
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1621
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1622
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1623
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1621
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1622
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1623
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1624 1624
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1625 1625
 #endif
1626 1626
 
@@ -1639,18 +1639,18 @@
1639 1639
   #define PRINTER_EVENT_LEDS
1640 1640
 #endif
1641 1641
 
1642
-/*********************************************************************\
1643
-* R/C SERVO support
1644
-* Sponsored by TrinityLabs, Reworked by codexmas
1645
-**********************************************************************/
1642
+/**
1643
+ * R/C SERVO support
1644
+ * Sponsored by TrinityLabs, Reworked by codexmas
1645
+ */
1646 1646
 
1647
-// Number of servos
1648
-//
1649
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1650
-// set it manually if you have more servos than extruders and wish to manually control some
1651
-// leaving it undefined or defining as 0 will disable the servo subsystem
1652
-// If unsure, leave commented / disabled
1653
-//
1647
+/**
1648
+ * Number of servos
1649
+ *
1650
+ * For some servo-related options NUM_SERVOS will be set automatically.
1651
+ * Set this manually if there are extra servos needing manual control.
1652
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1653
+ */
1654 1654
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1655 1655
 
1656 1656
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Folger Tech/i3-2020/Configuration.h Прегледај датотеку

@@ -1613,17 +1613,17 @@
1613 1613
  * Adds the M150 command to set the LED (or LED strip) color.
1614 1614
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1615 1615
  * luminance values can be set from 0 to 255.
1616
- * For Neopixel LED overall brightness parameters is also available
1616
+ * For Neopixel LED an overall brightness parameter is also available.
1617 1617
  *
1618 1618
  * *** CAUTION ***
1619 1619
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1620 1620
  *  as the Arduino cannot handle the current the LEDs will require.
1621 1621
  *  Failure to follow this precaution can destroy your Arduino!
1622
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1623
- *  cannot handle such current, separate 5V power supply must be used
1622
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1623
+ *  more current than the Arduino 5V linear regulator can produce. 
1624 1624
  * *** CAUTION ***
1625 1625
  *
1626
- * LED type. This options are mutualy exclusive. Uncomment only one.
1626
+ * LED Type. Enable only one of the following two options.
1627 1627
  *
1628 1628
  */
1629 1629
 //#define RGB_LED
@@ -1639,11 +1639,11 @@
1639 1639
 // Support for Adafruit Neopixel LED driver
1640 1640
 //#define NEOPIXEL_LED
1641 1641
 #if ENABLED(NEOPIXEL_LED)
1642
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1642
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1643 1643
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1644
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1645
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1646
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1644
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1645
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1646
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1647 1647
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1648 1648
 #endif
1649 1649
 
@@ -1662,18 +1662,18 @@
1662 1662
   #define PRINTER_EVENT_LEDS
1663 1663
 #endif
1664 1664
 
1665
-/*********************************************************************\
1666
-* R/C SERVO support
1667
-* Sponsored by TrinityLabs, Reworked by codexmas
1668
-**********************************************************************/
1665
+/**
1666
+ * R/C SERVO support
1667
+ * Sponsored by TrinityLabs, Reworked by codexmas
1668
+ */
1669 1669
 
1670
-// Number of servos
1671
-//
1672
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1673
-// set it manually if you have more servos than extruders and wish to manually control some
1674
-// leaving it undefined or defining as 0 will disable the servo subsystem
1675
-// If unsure, leave commented / disabled
1676
-//
1670
+/**
1671
+ * Number of servos
1672
+ *
1673
+ * For some servo-related options NUM_SERVOS will be set automatically.
1674
+ * Set this manually if there are extra servos needing manual control.
1675
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1676
+ */
1677 1677
 #define NUM_SERVOS 2 // Servo index starts with 0 for M280 command
1678 1678
 
1679 1679
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Geeetech/GT2560/Configuration.h Прегледај датотеку

@@ -1623,17 +1623,17 @@
1623 1623
  * Adds the M150 command to set the LED (or LED strip) color.
1624 1624
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1625 1625
  * luminance values can be set from 0 to 255.
1626
- * For Neopixel LED overall brightness parameters is also available
1626
+ * For Neopixel LED an overall brightness parameter is also available.
1627 1627
  *
1628 1628
  * *** CAUTION ***
1629 1629
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1630 1630
  *  as the Arduino cannot handle the current the LEDs will require.
1631 1631
  *  Failure to follow this precaution can destroy your Arduino!
1632
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1633
- *  cannot handle such current, separate 5V power supply must be used
1632
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1633
+ *  more current than the Arduino 5V linear regulator can produce. 
1634 1634
  * *** CAUTION ***
1635 1635
  *
1636
- * LED type. This options are mutualy exclusive. Uncomment only one.
1636
+ * LED Type. Enable only one of the following two options.
1637 1637
  *
1638 1638
  */
1639 1639
 //#define RGB_LED
@@ -1649,11 +1649,11 @@
1649 1649
 // Support for Adafruit Neopixel LED driver
1650 1650
 //#define NEOPIXEL_LED
1651 1651
 #if ENABLED(NEOPIXEL_LED)
1652
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1652
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1653 1653
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1654
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1655
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1656
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1654
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1655
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1656
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1657 1657
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1658 1658
 #endif
1659 1659
 
@@ -1672,18 +1672,18 @@
1672 1672
   #define PRINTER_EVENT_LEDS
1673 1673
 #endif
1674 1674
 
1675
-/*********************************************************************\
1676
-* R/C SERVO support
1677
-* Sponsored by TrinityLabs, Reworked by codexmas
1678
-**********************************************************************/
1675
+/**
1676
+ * R/C SERVO support
1677
+ * Sponsored by TrinityLabs, Reworked by codexmas
1678
+ */
1679 1679
 
1680
-// Number of servos
1681
-//
1682
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1683
-// set it manually if you have more servos than extruders and wish to manually control some
1684
-// leaving it undefined or defining as 0 will disable the servo subsystem
1685
-// If unsure, leave commented / disabled
1686
-//
1680
+/**
1681
+ * Number of servos
1682
+ *
1683
+ * For some servo-related options NUM_SERVOS will be set automatically.
1684
+ * Set this manually if there are extra servos needing manual control.
1685
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1686
+ */
1687 1687
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1688 1688
 
1689 1689
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Geeetech/I3_Pro_X-GT2560/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 #define NUM_SERVOS 1 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Infitary/i3-M508/Configuration.h Прегледај датотеку

@@ -1612,17 +1612,17 @@
1612 1612
  * Adds the M150 command to set the LED (or LED strip) color.
1613 1613
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1614 1614
  * luminance values can be set from 0 to 255.
1615
- * For Neopixel LED overall brightness parameters is also available
1615
+ * For Neopixel LED an overall brightness parameter is also available.
1616 1616
  *
1617 1617
  * *** CAUTION ***
1618 1618
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1619 1619
  *  as the Arduino cannot handle the current the LEDs will require.
1620 1620
  *  Failure to follow this precaution can destroy your Arduino!
1621
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1622
- *  cannot handle such current, separate 5V power supply must be used
1621
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1622
+ *  more current than the Arduino 5V linear regulator can produce. 
1623 1623
  * *** CAUTION ***
1624 1624
  *
1625
- * LED type. This options are mutualy exclusive. Uncomment only one.
1625
+ * LED Type. Enable only one of the following two options.
1626 1626
  *
1627 1627
  */
1628 1628
 //#define RGB_LED
@@ -1638,11 +1638,11 @@
1638 1638
 // Support for Adafruit Neopixel LED driver
1639 1639
 //#define NEOPIXEL_LED
1640 1640
 #if ENABLED(NEOPIXEL_LED)
1641
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1641
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1642 1642
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1643
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1644
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1645
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1643
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1644
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1645
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1646 1646
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1647 1647
 #endif
1648 1648
 
@@ -1661,18 +1661,18 @@
1661 1661
   #define PRINTER_EVENT_LEDS
1662 1662
 #endif
1663 1663
 
1664
-/*********************************************************************\
1665
-* R/C SERVO support
1666
-* Sponsored by TrinityLabs, Reworked by codexmas
1667
-**********************************************************************/
1664
+/**
1665
+ * R/C SERVO support
1666
+ * Sponsored by TrinityLabs, Reworked by codexmas
1667
+ */
1668 1668
 
1669
-// Number of servos
1670
-//
1671
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1672
-// set it manually if you have more servos than extruders and wish to manually control some
1673
-// leaving it undefined or defining as 0 will disable the servo subsystem
1674
-// If unsure, leave commented / disabled
1675
-//
1669
+/**
1670
+ * Number of servos
1671
+ *
1672
+ * For some servo-related options NUM_SERVOS will be set automatically.
1673
+ * Set this manually if there are extra servos needing manual control.
1674
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1675
+ */
1676 1676
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1677 1677
 
1678 1678
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Malyan/M150/Configuration.h Прегледај датотеку

@@ -1636,17 +1636,17 @@
1636 1636
  * Adds the M150 command to set the LED (or LED strip) color.
1637 1637
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1638 1638
  * luminance values can be set from 0 to 255.
1639
- * For Neopixel LED overall brightness parameters is also available
1639
+ * For Neopixel LED an overall brightness parameter is also available.
1640 1640
  *
1641 1641
  * *** CAUTION ***
1642 1642
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1643 1643
  *  as the Arduino cannot handle the current the LEDs will require.
1644 1644
  *  Failure to follow this precaution can destroy your Arduino!
1645
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1646
- *  cannot handle such current, separate 5V power supply must be used
1645
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1646
+ *  more current than the Arduino 5V linear regulator can produce. 
1647 1647
  * *** CAUTION ***
1648 1648
  *
1649
- * LED type. This options are mutualy exclusive. Uncomment only one.
1649
+ * LED Type. Enable only one of the following two options.
1650 1650
  *
1651 1651
  */
1652 1652
 //#define RGB_LED
@@ -1662,11 +1662,11 @@
1662 1662
 // Support for Adafruit Neopixel LED driver
1663 1663
 //#define NEOPIXEL_LED
1664 1664
 #if ENABLED(NEOPIXEL_LED)
1665
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1665
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1666 1666
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1667
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1668
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1669
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1667
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1668
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1669
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1670 1670
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1671 1671
 #endif
1672 1672
 
@@ -1685,18 +1685,18 @@
1685 1685
   #define PRINTER_EVENT_LEDS
1686 1686
 #endif
1687 1687
 
1688
-/*********************************************************************\
1689
-* R/C SERVO support
1690
-* Sponsored by TrinityLabs, Reworked by codexmas
1691
-**********************************************************************/
1688
+/**
1689
+ * R/C SERVO support
1690
+ * Sponsored by TrinityLabs, Reworked by codexmas
1691
+ */
1692 1692
 
1693
-// Number of servos
1694
-//
1695
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1696
-// set it manually if you have more servos than extruders and wish to manually control some
1697
-// leaving it undefined or defining as 0 will disable the servo subsystem
1698
-// If unsure, leave commented / disabled
1699
-//
1693
+/**
1694
+ * Number of servos
1695
+ *
1696
+ * For some servo-related options NUM_SERVOS will be set automatically.
1697
+ * Set this manually if there are extra servos needing manual control.
1698
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1699
+ */
1700 1700
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1701 1701
 
1702 1702
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 0
- 1
Marlin/example_configurations/Micromake/C1/README.md Прегледај датотеку

@@ -13,4 +13,3 @@ Configuration files for Micromake C1 with…
13 13
   - 128 STEPS configured with jumper on the motherboard (all open for 128 Steps).
14 14
   - Capacitive Probe (Adjust offsets at your convenience)
15 15
   - French language with no accents for Japanese LCD.
16
-  

+ 19
- 19
Marlin/example_configurations/Micromake/C1/basic/Configuration.h Прегледај датотеку

@@ -1612,17 +1612,17 @@
1612 1612
  * Adds the M150 command to set the LED (or LED strip) color.
1613 1613
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1614 1614
  * luminance values can be set from 0 to 255.
1615
- * For Neopixel LED overall brightness parameters is also available
1615
+ * For Neopixel LED an overall brightness parameter is also available.
1616 1616
  *
1617 1617
  * *** CAUTION ***
1618 1618
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1619 1619
  *  as the Arduino cannot handle the current the LEDs will require.
1620 1620
  *  Failure to follow this precaution can destroy your Arduino!
1621
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1622
- *  cannot handle such current, separate 5V power supply must be used
1621
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1622
+ *  more current than the Arduino 5V linear regulator can produce. 
1623 1623
  * *** CAUTION ***
1624 1624
  *
1625
- * LED type. This options are mutualy exclusive. Uncomment only one.
1625
+ * LED Type. Enable only one of the following two options.
1626 1626
  *
1627 1627
  */
1628 1628
 //#define RGB_LED
@@ -1638,11 +1638,11 @@
1638 1638
 // Support for Adafruit Neopixel LED driver
1639 1639
 //#define NEOPIXEL_LED
1640 1640
 #if ENABLED(NEOPIXEL_LED)
1641
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1641
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1642 1642
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1643
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1644
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1645
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1643
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1644
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1645
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1646 1646
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1647 1647
 #endif
1648 1648
 
@@ -1661,18 +1661,18 @@
1661 1661
   #define PRINTER_EVENT_LEDS
1662 1662
 #endif
1663 1663
 
1664
-/*********************************************************************\
1665
-* R/C SERVO support
1666
-* Sponsored by TrinityLabs, Reworked by codexmas
1667
-**********************************************************************/
1664
+/**
1665
+ * R/C SERVO support
1666
+ * Sponsored by TrinityLabs, Reworked by codexmas
1667
+ */
1668 1668
 
1669
-// Number of servos
1670
-//
1671
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1672
-// set it manually if you have more servos than extruders and wish to manually control some
1673
-// leaving it undefined or defining as 0 will disable the servo subsystem
1674
-// If unsure, leave commented / disabled
1675
-//
1669
+/**
1670
+ * Number of servos
1671
+ *
1672
+ * For some servo-related options NUM_SERVOS will be set automatically.
1673
+ * Set this manually if there are extra servos needing manual control.
1674
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1675
+ */
1676 1676
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1677 1677
 
1678 1678
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Micromake/C1/enhanced/Configuration.h Прегледај датотеку

@@ -1612,17 +1612,17 @@
1612 1612
  * Adds the M150 command to set the LED (or LED strip) color.
1613 1613
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1614 1614
  * luminance values can be set from 0 to 255.
1615
- * For Neopixel LED overall brightness parameters is also available
1615
+ * For Neopixel LED an overall brightness parameter is also available.
1616 1616
  *
1617 1617
  * *** CAUTION ***
1618 1618
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1619 1619
  *  as the Arduino cannot handle the current the LEDs will require.
1620 1620
  *  Failure to follow this precaution can destroy your Arduino!
1621
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1622
- *  cannot handle such current, separate 5V power supply must be used
1621
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1622
+ *  more current than the Arduino 5V linear regulator can produce. 
1623 1623
  * *** CAUTION ***
1624 1624
  *
1625
- * LED type. This options are mutualy exclusive. Uncomment only one.
1625
+ * LED Type. Enable only one of the following two options.
1626 1626
  *
1627 1627
  */
1628 1628
 //#define RGB_LED
@@ -1638,11 +1638,11 @@
1638 1638
 // Support for Adafruit Neopixel LED driver
1639 1639
 //#define NEOPIXEL_LED
1640 1640
 #if ENABLED(NEOPIXEL_LED)
1641
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1641
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1642 1642
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1643
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1644
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1645
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1643
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1644
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1645
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1646 1646
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1647 1647
 #endif
1648 1648
 
@@ -1661,18 +1661,18 @@
1661 1661
   #define PRINTER_EVENT_LEDS
1662 1662
 #endif
1663 1663
 
1664
-/*********************************************************************\
1665
-* R/C SERVO support
1666
-* Sponsored by TrinityLabs, Reworked by codexmas
1667
-**********************************************************************/
1664
+/**
1665
+ * R/C SERVO support
1666
+ * Sponsored by TrinityLabs, Reworked by codexmas
1667
+ */
1668 1668
 
1669
-// Number of servos
1670
-//
1671
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1672
-// set it manually if you have more servos than extruders and wish to manually control some
1673
-// leaving it undefined or defining as 0 will disable the servo subsystem
1674
-// If unsure, leave commented / disabled
1675
-//
1669
+/**
1670
+ * Number of servos
1671
+ *
1672
+ * For some servo-related options NUM_SERVOS will be set automatically.
1673
+ * Set this manually if there are extra servos needing manual control.
1674
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1675
+ */
1676 1676
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1677 1677
 
1678 1678
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/RigidBot/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/SCARA/Configuration.h Прегледај датотеку

@@ -1620,17 +1620,17 @@
1620 1620
  * Adds the M150 command to set the LED (or LED strip) color.
1621 1621
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1622 1622
  * luminance values can be set from 0 to 255.
1623
- * For Neopixel LED overall brightness parameters is also available
1623
+ * For Neopixel LED an overall brightness parameter is also available.
1624 1624
  *
1625 1625
  * *** CAUTION ***
1626 1626
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1627 1627
  *  as the Arduino cannot handle the current the LEDs will require.
1628 1628
  *  Failure to follow this precaution can destroy your Arduino!
1629
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1630
- *  cannot handle such current, separate 5V power supply must be used
1629
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1630
+ *  more current than the Arduino 5V linear regulator can produce. 
1631 1631
  * *** CAUTION ***
1632 1632
  *
1633
- * LED type. This options are mutualy exclusive. Uncomment only one.
1633
+ * LED Type. Enable only one of the following two options.
1634 1634
  *
1635 1635
  */
1636 1636
 //#define RGB_LED
@@ -1646,11 +1646,11 @@
1646 1646
 // Support for Adafruit Neopixel LED driver
1647 1647
 //#define NEOPIXEL_LED
1648 1648
 #if ENABLED(NEOPIXEL_LED)
1649
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1649
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1650 1650
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1651
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1652
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1653
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1651
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1652
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1653
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1654 1654
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1655 1655
 #endif
1656 1656
 
@@ -1669,18 +1669,18 @@
1669 1669
   #define PRINTER_EVENT_LEDS
1670 1670
 #endif
1671 1671
 
1672
-/*********************************************************************\
1673
-* R/C SERVO support
1674
-* Sponsored by TrinityLabs, Reworked by codexmas
1675
-**********************************************************************/
1672
+/**
1673
+ * R/C SERVO support
1674
+ * Sponsored by TrinityLabs, Reworked by codexmas
1675
+ */
1676 1676
 
1677
-// Number of servos
1678
-//
1679
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1680
-// set it manually if you have more servos than extruders and wish to manually control some
1681
-// leaving it undefined or defining as 0 will disable the servo subsystem
1682
-// If unsure, leave commented / disabled
1683
-//
1677
+/**
1678
+ * Number of servos
1679
+ *
1680
+ * For some servo-related options NUM_SERVOS will be set automatically.
1681
+ * Set this manually if there are extra servos needing manual control.
1682
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1683
+ */
1684 1684
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1685 1685
 
1686 1686
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Sanguinololu/Configuration.h Прегледај датотеку

@@ -1639,17 +1639,17 @@
1639 1639
  * Adds the M150 command to set the LED (or LED strip) color.
1640 1640
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1641 1641
  * luminance values can be set from 0 to 255.
1642
- * For Neopixel LED overall brightness parameters is also available
1642
+ * For Neopixel LED an overall brightness parameter is also available.
1643 1643
  *
1644 1644
  * *** CAUTION ***
1645 1645
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1646 1646
  *  as the Arduino cannot handle the current the LEDs will require.
1647 1647
  *  Failure to follow this precaution can destroy your Arduino!
1648
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1649
- *  cannot handle such current, separate 5V power supply must be used
1648
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1649
+ *  more current than the Arduino 5V linear regulator can produce. 
1650 1650
  * *** CAUTION ***
1651 1651
  *
1652
- * LED type. This options are mutualy exclusive. Uncomment only one.
1652
+ * LED Type. Enable only one of the following two options.
1653 1653
  *
1654 1654
  */
1655 1655
 #define RGB_LED
@@ -1665,11 +1665,11 @@
1665 1665
 // Support for Adafruit Neopixel LED driver
1666 1666
 //#define NEOPIXEL_LED
1667 1667
 #if ENABLED(NEOPIXEL_LED)
1668
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1668
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1669 1669
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1670
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1671
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1672
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1670
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1671
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1672
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1673 1673
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1674 1674
 #endif
1675 1675
 
@@ -1688,18 +1688,18 @@
1688 1688
   #define PRINTER_EVENT_LEDS
1689 1689
 #endif
1690 1690
 
1691
-/*********************************************************************\
1692
-* R/C SERVO support
1693
-* Sponsored by TrinityLabs, Reworked by codexmas
1694
-**********************************************************************/
1691
+/**
1692
+ * R/C SERVO support
1693
+ * Sponsored by TrinityLabs, Reworked by codexmas
1694
+ */
1695 1695
 
1696
-// Number of servos
1697
-//
1698
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1699
-// set it manually if you have more servos than extruders and wish to manually control some
1700
-// leaving it undefined or defining as 0 will disable the servo subsystem
1701
-// If unsure, leave commented / disabled
1702
-//
1696
+/**
1697
+ * Number of servos
1698
+ *
1699
+ * For some servo-related options NUM_SERVOS will be set automatically.
1700
+ * Set this manually if there are extra servos needing manual control.
1701
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1702
+ */
1703 1703
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1704 1704
 
1705 1705
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/TinyBoy2/Configuration.h Прегледај датотеку

@@ -1664,17 +1664,17 @@
1664 1664
  * Adds the M150 command to set the LED (or LED strip) color.
1665 1665
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1666 1666
  * luminance values can be set from 0 to 255.
1667
- * For Neopixel LED overall brightness parameters is also available
1667
+ * For Neopixel LED an overall brightness parameter is also available.
1668 1668
  *
1669 1669
  * *** CAUTION ***
1670 1670
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1671 1671
  *  as the Arduino cannot handle the current the LEDs will require.
1672 1672
  *  Failure to follow this precaution can destroy your Arduino!
1673
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1674
- *  cannot handle such current, separate 5V power supply must be used
1673
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1674
+ *  more current than the Arduino 5V linear regulator can produce. 
1675 1675
  * *** CAUTION ***
1676 1676
  *
1677
- * LED type. This options are mutualy exclusive. Uncomment only one.
1677
+ * LED Type. Enable only one of the following two options.
1678 1678
  *
1679 1679
  */
1680 1680
 //#define RGB_LED
@@ -1690,11 +1690,11 @@
1690 1690
 // Support for Adafruit Neopixel LED driver
1691 1691
 //#define NEOPIXEL_LED
1692 1692
 #if ENABLED(NEOPIXEL_LED)
1693
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1693
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1694 1694
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1695
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1696
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1697
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1695
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1696
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1697
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1698 1698
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1699 1699
 #endif
1700 1700
 
@@ -1713,18 +1713,18 @@
1713 1713
   #define PRINTER_EVENT_LEDS
1714 1714
 #endif
1715 1715
 
1716
-/*********************************************************************\
1717
-* R/C SERVO support
1718
-* Sponsored by TrinityLabs, Reworked by codexmas
1719
-**********************************************************************/
1716
+/**
1717
+ * R/C SERVO support
1718
+ * Sponsored by TrinityLabs, Reworked by codexmas
1719
+ */
1720 1720
 
1721
-// Number of servos
1722
-//
1723
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1724
-// set it manually if you have more servos than extruders and wish to manually control some
1725
-// leaving it undefined or defining as 0 will disable the servo subsystem
1726
-// If unsure, leave commented / disabled
1727
-//
1721
+/**
1722
+ * Number of servos
1723
+ *
1724
+ * For some servo-related options NUM_SERVOS will be set automatically.
1725
+ * Set this manually if there are extra servos needing manual control.
1726
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1727
+ */
1728 1728
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1729 1729
 
1730 1730
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Velleman/K8200/Configuration.h Прегледај датотеку

@@ -1643,17 +1643,17 @@
1643 1643
  * Adds the M150 command to set the LED (or LED strip) color.
1644 1644
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1645 1645
  * luminance values can be set from 0 to 255.
1646
- * For Neopixel LED overall brightness parameters is also available
1646
+ * For Neopixel LED an overall brightness parameter is also available.
1647 1647
  *
1648 1648
  * *** CAUTION ***
1649 1649
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1650 1650
  *  as the Arduino cannot handle the current the LEDs will require.
1651 1651
  *  Failure to follow this precaution can destroy your Arduino!
1652
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1653
- *  cannot handle such current, separate 5V power supply must be used
1652
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1653
+ *  more current than the Arduino 5V linear regulator can produce. 
1654 1654
  * *** CAUTION ***
1655 1655
  *
1656
- * LED type. This options are mutualy exclusive. Uncomment only one.
1656
+ * LED Type. Enable only one of the following two options.
1657 1657
  *
1658 1658
  */
1659 1659
 //#define RGB_LED
@@ -1669,11 +1669,11 @@
1669 1669
 // Support for Adafruit Neopixel LED driver
1670 1670
 //#define NEOPIXEL_LED
1671 1671
 #if ENABLED(NEOPIXEL_LED)
1672
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1672
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1673 1673
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1674
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1675
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1676
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1674
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1675
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1676
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1677 1677
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1678 1678
 #endif
1679 1679
 
@@ -1692,18 +1692,18 @@
1692 1692
   #define PRINTER_EVENT_LEDS
1693 1693
 #endif
1694 1694
 
1695
-/*********************************************************************\
1696
-* R/C SERVO support
1697
-* Sponsored by TrinityLabs, Reworked by codexmas
1698
-**********************************************************************/
1695
+/**
1696
+ * R/C SERVO support
1697
+ * Sponsored by TrinityLabs, Reworked by codexmas
1698
+ */
1699 1699
 
1700
-// Number of servos
1701
-//
1702
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1703
-// set it manually if you have more servos than extruders and wish to manually control some
1704
-// leaving it undefined or defining as 0 will disable the servo subsystem
1705
-// If unsure, leave commented / disabled
1706
-//
1700
+/**
1701
+ * Number of servos
1702
+ *
1703
+ * For some servo-related options NUM_SERVOS will be set automatically.
1704
+ * Set this manually if there are extra servos needing manual control.
1705
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1706
+ */
1707 1707
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1708 1708
 
1709 1709
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Velleman/K8400/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/Velleman/K8400/Dual-head/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/adafruit/ST7565/Configuration.h Прегледај датотеку

@@ -1608,17 +1608,17 @@
1608 1608
  * Adds the M150 command to set the LED (or LED strip) color.
1609 1609
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1610 1610
  * luminance values can be set from 0 to 255.
1611
- * For Neopixel LED overall brightness parameters is also available
1611
+ * For Neopixel LED an overall brightness parameter is also available.
1612 1612
  *
1613 1613
  * *** CAUTION ***
1614 1614
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1615 1615
  *  as the Arduino cannot handle the current the LEDs will require.
1616 1616
  *  Failure to follow this precaution can destroy your Arduino!
1617
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1618
- *  cannot handle such current, separate 5V power supply must be used
1617
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1618
+ *  more current than the Arduino 5V linear regulator can produce. 
1619 1619
  * *** CAUTION ***
1620 1620
  *
1621
- * LED type. This options are mutualy exclusive. Uncomment only one.
1621
+ * LED Type. Enable only one of the following two options.
1622 1622
  *
1623 1623
  */
1624 1624
 //#define RGB_LED
@@ -1634,11 +1634,11 @@
1634 1634
 // Support for Adafruit Neopixel LED driver
1635 1635
 //#define NEOPIXEL_LED
1636 1636
 #if ENABLED(NEOPIXEL_LED)
1637
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1637
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1638 1638
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1639
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1640
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1641
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1639
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1640
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1641
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1642 1642
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1643 1643
 #endif
1644 1644
 
@@ -1657,18 +1657,18 @@
1657 1657
   #define PRINTER_EVENT_LEDS
1658 1658
 #endif
1659 1659
 
1660
-/*********************************************************************\
1661
-* R/C SERVO support
1662
-* Sponsored by TrinityLabs, Reworked by codexmas
1663
-**********************************************************************/
1660
+/**
1661
+ * R/C SERVO support
1662
+ * Sponsored by TrinityLabs, Reworked by codexmas
1663
+ */
1664 1664
 
1665
-// Number of servos
1666
-//
1667
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1668
-// set it manually if you have more servos than extruders and wish to manually control some
1669
-// leaving it undefined or defining as 0 will disable the servo subsystem
1670
-// If unsure, leave commented / disabled
1671
-//
1665
+/**
1666
+ * Number of servos
1667
+ *
1668
+ * For some servo-related options NUM_SERVOS will be set automatically.
1669
+ * Set this manually if there are extra servos needing manual control.
1670
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1671
+ */
1672 1672
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1673 1673
 
1674 1674
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h Прегледај датотеку

@@ -1736,17 +1736,17 @@
1736 1736
  * Adds the M150 command to set the LED (or LED strip) color.
1737 1737
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1738 1738
  * luminance values can be set from 0 to 255.
1739
- * For Neopixel LED overall brightness parameters is also available
1739
+ * For Neopixel LED an overall brightness parameter is also available.
1740 1740
  *
1741 1741
  * *** CAUTION ***
1742 1742
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1743 1743
  *  as the Arduino cannot handle the current the LEDs will require.
1744 1744
  *  Failure to follow this precaution can destroy your Arduino!
1745
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1746
- *  cannot handle such current, separate 5V power supply must be used
1745
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1746
+ *  more current than the Arduino 5V linear regulator can produce. 
1747 1747
  * *** CAUTION ***
1748 1748
  *
1749
- * LED type. This options are mutualy exclusive. Uncomment only one.
1749
+ * LED Type. Enable only one of the following two options.
1750 1750
  *
1751 1751
  */
1752 1752
 //#define RGB_LED
@@ -1762,11 +1762,11 @@
1762 1762
 // Support for Adafruit Neopixel LED driver
1763 1763
 //#define NEOPIXEL_LED
1764 1764
 #if ENABLED(NEOPIXEL_LED)
1765
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1765
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1766 1766
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1767
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1768
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1769
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1767
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1768
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1769
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1770 1770
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1771 1771
 #endif
1772 1772
 
@@ -1785,18 +1785,18 @@
1785 1785
   #define PRINTER_EVENT_LEDS
1786 1786
 #endif
1787 1787
 
1788
-/*********************************************************************\
1789
-* R/C SERVO support
1790
-* Sponsored by TrinityLabs, Reworked by codexmas
1791
-**********************************************************************/
1788
+/**
1789
+ * R/C SERVO support
1790
+ * Sponsored by TrinityLabs, Reworked by codexmas
1791
+ */
1792 1792
 
1793
-// Number of servos
1794
-//
1795
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1796
-// set it manually if you have more servos than extruders and wish to manually control some
1797
-// leaving it undefined or defining as 0 will disable the servo subsystem
1798
-// If unsure, leave commented / disabled
1799
-//
1793
+/**
1794
+ * Number of servos
1795
+ *
1796
+ * For some servo-related options NUM_SERVOS will be set automatically.
1797
+ * Set this manually if there are extra servos needing manual control.
1798
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1799
+ */
1800 1800
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1801 1801
 
1802 1802
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h Прегледај датотеку

@@ -1729,17 +1729,17 @@
1729 1729
  * Adds the M150 command to set the LED (or LED strip) color.
1730 1730
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1731 1731
  * luminance values can be set from 0 to 255.
1732
- * For Neopixel LED overall brightness parameters is also available
1732
+ * For Neopixel LED an overall brightness parameter is also available.
1733 1733
  *
1734 1734
  * *** CAUTION ***
1735 1735
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1736 1736
  *  as the Arduino cannot handle the current the LEDs will require.
1737 1737
  *  Failure to follow this precaution can destroy your Arduino!
1738
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1739
- *  cannot handle such current, separate 5V power supply must be used
1738
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1739
+ *  more current than the Arduino 5V linear regulator can produce. 
1740 1740
  * *** CAUTION ***
1741 1741
  *
1742
- * LED type. This options are mutualy exclusive. Uncomment only one.
1742
+ * LED Type. Enable only one of the following two options.
1743 1743
  *
1744 1744
  */
1745 1745
 //#define RGB_LED
@@ -1755,11 +1755,11 @@
1755 1755
 // Support for Adafruit Neopixel LED driver
1756 1756
 //#define NEOPIXEL_LED
1757 1757
 #if ENABLED(NEOPIXEL_LED)
1758
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1758
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1759 1759
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1760
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1761
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1762
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1760
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1761
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1762
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1763 1763
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1764 1764
 #endif
1765 1765
 
@@ -1778,18 +1778,18 @@
1778 1778
   #define PRINTER_EVENT_LEDS
1779 1779
 #endif
1780 1780
 
1781
-/*********************************************************************\
1782
-* R/C SERVO support
1783
-* Sponsored by TrinityLabs, Reworked by codexmas
1784
-**********************************************************************/
1781
+/**
1782
+ * R/C SERVO support
1783
+ * Sponsored by TrinityLabs, Reworked by codexmas
1784
+ */
1785 1785
 
1786
-// Number of servos
1787
-//
1788
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1789
-// set it manually if you have more servos than extruders and wish to manually control some
1790
-// leaving it undefined or defining as 0 will disable the servo subsystem
1791
-// If unsure, leave commented / disabled
1792
-//
1786
+/**
1787
+ * Number of servos
1788
+ *
1789
+ * For some servo-related options NUM_SERVOS will be set automatically.
1790
+ * Set this manually if there are extra servos needing manual control.
1791
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1792
+ */
1793 1793
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1794 1794
 
1795 1795
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/delta/generic/Configuration.h Прегледај датотеку

@@ -1724,17 +1724,17 @@
1724 1724
  * Adds the M150 command to set the LED (or LED strip) color.
1725 1725
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1726 1726
  * luminance values can be set from 0 to 255.
1727
- * For Neopixel LED overall brightness parameters is also available
1727
+ * For Neopixel LED an overall brightness parameter is also available.
1728 1728
  *
1729 1729
  * *** CAUTION ***
1730 1730
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1731 1731
  *  as the Arduino cannot handle the current the LEDs will require.
1732 1732
  *  Failure to follow this precaution can destroy your Arduino!
1733
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1734
- *  cannot handle such current, separate 5V power supply must be used
1733
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1734
+ *  more current than the Arduino 5V linear regulator can produce. 
1735 1735
  * *** CAUTION ***
1736 1736
  *
1737
- * LED type. This options are mutualy exclusive. Uncomment only one.
1737
+ * LED Type. Enable only one of the following two options.
1738 1738
  *
1739 1739
  */
1740 1740
 //#define RGB_LED
@@ -1750,11 +1750,11 @@
1750 1750
 // Support for Adafruit Neopixel LED driver
1751 1751
 //#define NEOPIXEL_LED
1752 1752
 #if ENABLED(NEOPIXEL_LED)
1753
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1753
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1754 1754
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1755
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1756
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1757
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1755
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1756
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1757
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1758 1758
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1759 1759
 #endif
1760 1760
 
@@ -1773,18 +1773,18 @@
1773 1773
   #define PRINTER_EVENT_LEDS
1774 1774
 #endif
1775 1775
 
1776
-/*********************************************************************\
1777
-* R/C SERVO support
1778
-* Sponsored by TrinityLabs, Reworked by codexmas
1779
-**********************************************************************/
1776
+/**
1777
+ * R/C SERVO support
1778
+ * Sponsored by TrinityLabs, Reworked by codexmas
1779
+ */
1780 1780
 
1781
-// Number of servos
1782
-//
1783
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1784
-// set it manually if you have more servos than extruders and wish to manually control some
1785
-// leaving it undefined or defining as 0 will disable the servo subsystem
1786
-// If unsure, leave commented / disabled
1787
-//
1781
+/**
1782
+ * Number of servos
1783
+ *
1784
+ * For some servo-related options NUM_SERVOS will be set automatically.
1785
+ * Set this manually if there are extra servos needing manual control.
1786
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1787
+ */
1788 1788
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1789 1789
 
1790 1790
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/delta/kossel_mini/Configuration.h Прегледај датотеку

@@ -1727,17 +1727,17 @@
1727 1727
  * Adds the M150 command to set the LED (or LED strip) color.
1728 1728
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1729 1729
  * luminance values can be set from 0 to 255.
1730
- * For Neopixel LED overall brightness parameters is also available
1730
+ * For Neopixel LED an overall brightness parameter is also available.
1731 1731
  *
1732 1732
  * *** CAUTION ***
1733 1733
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1734 1734
  *  as the Arduino cannot handle the current the LEDs will require.
1735 1735
  *  Failure to follow this precaution can destroy your Arduino!
1736
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1737
- *  cannot handle such current, separate 5V power supply must be used
1736
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1737
+ *  more current than the Arduino 5V linear regulator can produce. 
1738 1738
  * *** CAUTION ***
1739 1739
  *
1740
- * LED type. This options are mutualy exclusive. Uncomment only one.
1740
+ * LED Type. Enable only one of the following two options.
1741 1741
  *
1742 1742
  */
1743 1743
 //#define RGB_LED
@@ -1753,11 +1753,11 @@
1753 1753
 // Support for Adafruit Neopixel LED driver
1754 1754
 //#define NEOPIXEL_LED
1755 1755
 #if ENABLED(NEOPIXEL_LED)
1756
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1756
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1757 1757
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1758
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1759
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1760
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1758
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1759
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1760
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1761 1761
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1762 1762
 #endif
1763 1763
 
@@ -1776,18 +1776,18 @@
1776 1776
   #define PRINTER_EVENT_LEDS
1777 1777
 #endif
1778 1778
 
1779
-/*********************************************************************\
1780
-* R/C SERVO support
1781
-* Sponsored by TrinityLabs, Reworked by codexmas
1782
-**********************************************************************/
1779
+/**
1780
+ * R/C SERVO support
1781
+ * Sponsored by TrinityLabs, Reworked by codexmas
1782
+ */
1783 1783
 
1784
-// Number of servos
1785
-//
1786
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1787
-// set it manually if you have more servos than extruders and wish to manually control some
1788
-// leaving it undefined or defining as 0 will disable the servo subsystem
1789
-// If unsure, leave commented / disabled
1790
-//
1784
+/**
1785
+ * Number of servos
1786
+ *
1787
+ * For some servo-related options NUM_SERVOS will be set automatically.
1788
+ * Set this manually if there are extra servos needing manual control.
1789
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1790
+ */
1791 1791
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1792 1792
 
1793 1793
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/delta/kossel_pro/Configuration.h Прегледај датотеку

@@ -1727,17 +1727,17 @@
1727 1727
  * Adds the M150 command to set the LED (or LED strip) color.
1728 1728
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1729 1729
  * luminance values can be set from 0 to 255.
1730
- * For Neopixel LED overall brightness parameters is also available
1730
+ * For Neopixel LED an overall brightness parameter is also available.
1731 1731
  *
1732 1732
  * *** CAUTION ***
1733 1733
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1734 1734
  *  as the Arduino cannot handle the current the LEDs will require.
1735 1735
  *  Failure to follow this precaution can destroy your Arduino!
1736
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1737
- *  cannot handle such current, separate 5V power supply must be used
1736
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1737
+ *  more current than the Arduino 5V linear regulator can produce. 
1738 1738
  * *** CAUTION ***
1739 1739
  *
1740
- * LED type. This options are mutualy exclusive. Uncomment only one.
1740
+ * LED Type. Enable only one of the following two options.
1741 1741
  *
1742 1742
  */
1743 1743
 //#define RGB_LED
@@ -1753,11 +1753,11 @@
1753 1753
 // Support for Adafruit Neopixel LED driver
1754 1754
 //#define NEOPIXEL_LED
1755 1755
 #if ENABLED(NEOPIXEL_LED)
1756
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1756
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1757 1757
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1758
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1759
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1760
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1758
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1759
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1760
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1761 1761
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1762 1762
 #endif
1763 1763
 
@@ -1776,18 +1776,18 @@
1776 1776
   #define PRINTER_EVENT_LEDS
1777 1777
 #endif
1778 1778
 
1779
-/*********************************************************************\
1780
-* R/C SERVO support
1781
-* Sponsored by TrinityLabs, Reworked by codexmas
1782
-**********************************************************************/
1779
+/**
1780
+ * R/C SERVO support
1781
+ * Sponsored by TrinityLabs, Reworked by codexmas
1782
+ */
1783 1783
 
1784
-// Number of servos
1785
-//
1786
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1787
-// set it manually if you have more servos than extruders and wish to manually control some
1788
-// leaving it undefined or defining as 0 will disable the servo subsystem
1789
-// If unsure, leave commented / disabled
1790
-//
1784
+/**
1785
+ * Number of servos
1786
+ *
1787
+ * For some servo-related options NUM_SERVOS will be set automatically.
1788
+ * Set this manually if there are extra servos needing manual control.
1789
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1790
+ */
1791 1791
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1792 1792
 
1793 1793
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/delta/kossel_xl/Configuration.h Прегледај датотеку

@@ -1736,17 +1736,17 @@
1736 1736
  * Adds the M150 command to set the LED (or LED strip) color.
1737 1737
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1738 1738
  * luminance values can be set from 0 to 255.
1739
- * For Neopixel LED overall brightness parameters is also available
1739
+ * For Neopixel LED an overall brightness parameter is also available.
1740 1740
  *
1741 1741
  * *** CAUTION ***
1742 1742
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1743 1743
  *  as the Arduino cannot handle the current the LEDs will require.
1744 1744
  *  Failure to follow this precaution can destroy your Arduino!
1745
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1746
- *  cannot handle such current, separate 5V power supply must be used
1745
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1746
+ *  more current than the Arduino 5V linear regulator can produce. 
1747 1747
  * *** CAUTION ***
1748 1748
  *
1749
- * LED type. This options are mutualy exclusive. Uncomment only one.
1749
+ * LED Type. Enable only one of the following two options.
1750 1750
  *
1751 1751
  */
1752 1752
 //#define RGB_LED
@@ -1762,11 +1762,11 @@
1762 1762
 // Support for Adafruit Neopixel LED driver
1763 1763
 //#define NEOPIXEL_LED
1764 1764
 #if ENABLED(NEOPIXEL_LED)
1765
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1765
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1766 1766
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1767
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1768
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1769
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1767
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1768
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1769
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1770 1770
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1771 1771
 #endif
1772 1772
 
@@ -1785,18 +1785,18 @@
1785 1785
   #define PRINTER_EVENT_LEDS
1786 1786
 #endif
1787 1787
 
1788
-/*********************************************************************\
1789
-* R/C SERVO support
1790
-* Sponsored by TrinityLabs, Reworked by codexmas
1791
-**********************************************************************/
1788
+/**
1789
+ * R/C SERVO support
1790
+ * Sponsored by TrinityLabs, Reworked by codexmas
1791
+ */
1792 1792
 
1793
-// Number of servos
1794
-//
1795
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1796
-// set it manually if you have more servos than extruders and wish to manually control some
1797
-// leaving it undefined or defining as 0 will disable the servo subsystem
1798
-// If unsure, leave commented / disabled
1799
-//
1793
+/**
1794
+ * Number of servos
1795
+ *
1796
+ * For some servo-related options NUM_SERVOS will be set automatically.
1797
+ * Set this manually if there are extra servos needing manual control.
1798
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1799
+ */
1800 1800
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1801 1801
 
1802 1802
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/gCreate/gMax1.5+/Configuration.h Прегледај датотеку

@@ -1622,17 +1622,17 @@
1622 1622
  * Adds the M150 command to set the LED (or LED strip) color.
1623 1623
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1624 1624
  * luminance values can be set from 0 to 255.
1625
- * For Neopixel LED overall brightness parameters is also available
1625
+ * For Neopixel LED an overall brightness parameter is also available.
1626 1626
  *
1627 1627
  * *** CAUTION ***
1628 1628
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1629 1629
  *  as the Arduino cannot handle the current the LEDs will require.
1630 1630
  *  Failure to follow this precaution can destroy your Arduino!
1631
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1632
- *  cannot handle such current, separate 5V power supply must be used
1631
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1632
+ *  more current than the Arduino 5V linear regulator can produce. 
1633 1633
  * *** CAUTION ***
1634 1634
  *
1635
- * LED type. This options are mutualy exclusive. Uncomment only one.
1635
+ * LED Type. Enable only one of the following two options.
1636 1636
  *
1637 1637
  */
1638 1638
 //#define RGB_LED
@@ -1648,11 +1648,11 @@
1648 1648
 // Support for Adafruit Neopixel LED driver
1649 1649
 //#define NEOPIXEL_LED
1650 1650
 #if ENABLED(NEOPIXEL_LED)
1651
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1651
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1652 1652
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1653
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1654
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1655
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1653
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1654
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1655
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1656 1656
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1657 1657
 #endif
1658 1658
 
@@ -1671,18 +1671,18 @@
1671 1671
   #define PRINTER_EVENT_LEDS
1672 1672
 #endif
1673 1673
 
1674
-/*********************************************************************\
1675
-* R/C SERVO support
1676
-* Sponsored by TrinityLabs, Reworked by codexmas
1677
-**********************************************************************/
1674
+/**
1675
+ * R/C SERVO support
1676
+ * Sponsored by TrinityLabs, Reworked by codexmas
1677
+ */
1678 1678
 
1679
-// Number of servos
1680
-//
1681
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1682
-// set it manually if you have more servos than extruders and wish to manually control some
1683
-// leaving it undefined or defining as 0 will disable the servo subsystem
1684
-// If unsure, leave commented / disabled
1685
-//
1679
+/**
1680
+ * Number of servos
1681
+ *
1682
+ * For some servo-related options NUM_SERVOS will be set automatically.
1683
+ * Set this manually if there are extra servos needing manual control.
1684
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1685
+ */
1686 1686
 #define NUM_SERVOS 2 // Servo index starts with 0 for M280 command
1687 1687
 
1688 1688
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/makibox/Configuration.h Прегледај датотеку

@@ -1611,17 +1611,17 @@
1611 1611
  * Adds the M150 command to set the LED (or LED strip) color.
1612 1612
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1613 1613
  * luminance values can be set from 0 to 255.
1614
- * For Neopixel LED overall brightness parameters is also available
1614
+ * For Neopixel LED an overall brightness parameter is also available.
1615 1615
  *
1616 1616
  * *** CAUTION ***
1617 1617
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1618 1618
  *  as the Arduino cannot handle the current the LEDs will require.
1619 1619
  *  Failure to follow this precaution can destroy your Arduino!
1620
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1621
- *  cannot handle such current, separate 5V power supply must be used
1620
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1621
+ *  more current than the Arduino 5V linear regulator can produce. 
1622 1622
  * *** CAUTION ***
1623 1623
  *
1624
- * LED type. This options are mutualy exclusive. Uncomment only one.
1624
+ * LED Type. Enable only one of the following two options.
1625 1625
  *
1626 1626
  */
1627 1627
 //#define RGB_LED
@@ -1637,11 +1637,11 @@
1637 1637
 // Support for Adafruit Neopixel LED driver
1638 1638
 //#define NEOPIXEL_LED
1639 1639
 #if ENABLED(NEOPIXEL_LED)
1640
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1640
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1641 1641
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1642
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1643
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1644
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1642
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1643
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1644
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1645 1645
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1646 1646
 #endif
1647 1647
 
@@ -1660,18 +1660,18 @@
1660 1660
   #define PRINTER_EVENT_LEDS
1661 1661
 #endif
1662 1662
 
1663
-/*********************************************************************\
1664
-* R/C SERVO support
1665
-* Sponsored by TrinityLabs, Reworked by codexmas
1666
-**********************************************************************/
1663
+/**
1664
+ * R/C SERVO support
1665
+ * Sponsored by TrinityLabs, Reworked by codexmas
1666
+ */
1667 1667
 
1668
-// Number of servos
1669
-//
1670
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1671
-// set it manually if you have more servos than extruders and wish to manually control some
1672
-// leaving it undefined or defining as 0 will disable the servo subsystem
1673
-// If unsure, leave commented / disabled
1674
-//
1668
+/**
1669
+ * Number of servos
1670
+ *
1671
+ * For some servo-related options NUM_SERVOS will be set automatically.
1672
+ * Set this manually if there are extra servos needing manual control.
1673
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1674
+ */
1675 1675
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1676 1676
 
1677 1677
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/tvrrug/Round2/Configuration.h Прегледај датотеку

@@ -1603,17 +1603,17 @@
1603 1603
  * Adds the M150 command to set the LED (or LED strip) color.
1604 1604
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1605 1605
  * luminance values can be set from 0 to 255.
1606
- * For Neopixel LED overall brightness parameters is also available
1606
+ * For Neopixel LED an overall brightness parameter is also available.
1607 1607
  *
1608 1608
  * *** CAUTION ***
1609 1609
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1610 1610
  *  as the Arduino cannot handle the current the LEDs will require.
1611 1611
  *  Failure to follow this precaution can destroy your Arduino!
1612
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1613
- *  cannot handle such current, separate 5V power supply must be used
1612
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1613
+ *  more current than the Arduino 5V linear regulator can produce. 
1614 1614
  * *** CAUTION ***
1615 1615
  *
1616
- * LED type. This options are mutualy exclusive. Uncomment only one.
1616
+ * LED Type. Enable only one of the following two options.
1617 1617
  *
1618 1618
  */
1619 1619
 //#define RGB_LED
@@ -1629,11 +1629,11 @@
1629 1629
 // Support for Adafruit Neopixel LED driver
1630 1630
 //#define NEOPIXEL_LED
1631 1631
 #if ENABLED(NEOPIXEL_LED)
1632
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1632
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1633 1633
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1634
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1635
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1636
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1634
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1635
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1636
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1637 1637
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1638 1638
 #endif
1639 1639
 
@@ -1652,18 +1652,18 @@
1652 1652
   #define PRINTER_EVENT_LEDS
1653 1653
 #endif
1654 1654
 
1655
-/*********************************************************************\
1656
-* R/C SERVO support
1657
-* Sponsored by TrinityLabs, Reworked by codexmas
1658
-**********************************************************************/
1655
+/**
1656
+ * R/C SERVO support
1657
+ * Sponsored by TrinityLabs, Reworked by codexmas
1658
+ */
1659 1659
 
1660
-// Number of servos
1661
-//
1662
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1663
-// set it manually if you have more servos than extruders and wish to manually control some
1664
-// leaving it undefined or defining as 0 will disable the servo subsystem
1665
-// If unsure, leave commented / disabled
1666
-//
1660
+/**
1661
+ * Number of servos
1662
+ *
1663
+ * For some servo-related options NUM_SERVOS will be set automatically.
1664
+ * Set this manually if there are extra servos needing manual control.
1665
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1666
+ */
1667 1667
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1668 1668
 
1669 1669
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

+ 19
- 19
Marlin/example_configurations/wt150/Configuration.h Прегледај датотеку

@@ -1613,17 +1613,17 @@
1613 1613
  * Adds the M150 command to set the LED (or LED strip) color.
1614 1614
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
1615 1615
  * luminance values can be set from 0 to 255.
1616
- * For Neopixel LED overall brightness parameters is also available
1616
+ * For Neopixel LED an overall brightness parameter is also available.
1617 1617
  *
1618 1618
  * *** CAUTION ***
1619 1619
  *  LED Strips require a MOFSET Chip between PWM lines and LEDs,
1620 1620
  *  as the Arduino cannot handle the current the LEDs will require.
1621 1621
  *  Failure to follow this precaution can destroy your Arduino!
1622
- *  The Neopixel LED is 5V powered, but linear 5V regulator on Arduino
1623
- *  cannot handle such current, separate 5V power supply must be used
1622
+ *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
1623
+ *  more current than the Arduino 5V linear regulator can produce. 
1624 1624
  * *** CAUTION ***
1625 1625
  *
1626
- * LED type. This options are mutualy exclusive. Uncomment only one.
1626
+ * LED Type. Enable only one of the following two options.
1627 1627
  *
1628 1628
  */
1629 1629
 //#define RGB_LED
@@ -1639,11 +1639,11 @@
1639 1639
 // Support for Adafruit Neopixel LED driver
1640 1640
 //#define NEOPIXEL_LED
1641 1641
 #if ENABLED(NEOPIXEL_LED)
1642
-  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (definned in Adafruit_NeoPixel.h)
1642
+  #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
1643 1643
   #define NEOPIXEL_PIN    4        // LED driving pin on motherboard 4 => D4 (EXP2-5 on Printrboard) / 30 => PC7 (EXP3-13 on Rumba)
1644
-  #define NEOPIXEL_PIXELS 30       // Number of LEDs on strip
1645
-  #define NEOPIXEL_IS_SEQUENTIAL   // Sequent display for temperature change - LED by LED. Comment out for change all LED at time
1646
-  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness 0-255
1644
+  #define NEOPIXEL_PIXELS 30       // Number of LEDs in the strip
1645
+  #define NEOPIXEL_IS_SEQUENTIAL   // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once.
1646
+  #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
1647 1647
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
1648 1648
 #endif
1649 1649
 
@@ -1662,18 +1662,18 @@
1662 1662
   #define PRINTER_EVENT_LEDS
1663 1663
 #endif
1664 1664
 
1665
-/*********************************************************************\
1666
-* R/C SERVO support
1667
-* Sponsored by TrinityLabs, Reworked by codexmas
1668
-**********************************************************************/
1665
+/**
1666
+ * R/C SERVO support
1667
+ * Sponsored by TrinityLabs, Reworked by codexmas
1668
+ */
1669 1669
 
1670
-// Number of servos
1671
-//
1672
-// If you select a configuration below, this will receive a default value and does not need to be set manually
1673
-// set it manually if you have more servos than extruders and wish to manually control some
1674
-// leaving it undefined or defining as 0 will disable the servo subsystem
1675
-// If unsure, leave commented / disabled
1676
-//
1670
+/**
1671
+ * Number of servos
1672
+ *
1673
+ * For some servo-related options NUM_SERVOS will be set automatically.
1674
+ * Set this manually if there are extra servos needing manual control.
1675
+ * Leave undefined or set to 0 to entirely disable the servo subsystem.
1676
+ */
1677 1677
 //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
1678 1678
 
1679 1679
 // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.

Loading…
Откажи
Сачувај