M3426 to read i2c MCP3426 ADC (#23184)

This commit is contained in:
Stuart Pittaway
2021-12-04 23:44:10 +00:00
committed by Scott Lahteine
parent e6bbdd89b4
commit 363a17ac46
9 changed files with 234 additions and 5 deletions

View File

@@ -297,6 +297,7 @@
* M917 - L6470 tuning: Find minimum current thresholds. (Requires at least one _DRIVER_TYPE L6470)
* M918 - L6470 tuning: Increase speed until max or error. (Requires at least one _DRIVER_TYPE L6470)
* M951 - Set Magnetic Parking Extruder parameters. (Requires MAGNETIC_PARKING_EXTRUDER)
* M3426 - Read MCP3426 ADC over I2C. (Requires HAS_MCP3426_ADC)
* M7219 - Control Max7219 Matrix LEDs. (Requires MAX7219_GCODE)
*
*** SCARA ***
@@ -1204,6 +1205,10 @@ private:
static void M1004();
#endif
#if ENABLED(HAS_MCP3426_ADC)
static void M3426();
#endif
#if ENABLED(MAX7219_GCODE)
static void M7219();
#endif