Browse Source

Improve Anet A6 config (#16280)

Vertabreaker 4 years ago
parent
commit
b6d857f1d6
1 changed files with 9 additions and 7 deletions
  1. 9
    7
      config/examples/Anet/A6/Configuration.h

+ 9
- 7
config/examples/Anet/A6/Configuration.h View File

@@ -1419,7 +1419,7 @@
1419 1419
 // - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
1420 1420
 // - Prevent Z homing when the Z probe is outside bed area.
1421 1421
 //
1422
-#define Z_SAFE_HOMING
1422
+//#define Z_SAFE_HOMING
1423 1423
 
1424 1424
 #if ENABLED(Z_SAFE_HOMING)
1425 1425
   #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
@@ -1819,7 +1819,7 @@
1819 1819
 // If you have a speaker that can produce tones, enable it here.
1820 1820
 // By default Marlin assumes you have a buzzer with a fixed frequency.
1821 1821
 //
1822
-//#define SPEAKER
1822
+#define SPEAKER
1823 1823
 
1824 1824
 //
1825 1825
 // The duration and frequency for the UI feedback sound.
@@ -1828,8 +1828,8 @@
1828 1828
 // Note: Test audio output with the G-Code:
1829 1829
 //  M300 S<frequency Hz> P<duration ms>
1830 1830
 //
1831
-//#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 2
1832
-//#define LCD_FEEDBACK_FREQUENCY_HZ 5000
1831
+#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 40
1832
+#define LCD_FEEDBACK_FREQUENCY_HZ 200
1833 1833
 
1834 1834
 //=============================================================================
1835 1835
 //======================== LCD / Controller Selection =========================
@@ -1984,8 +1984,10 @@
1984 1984
 //
1985 1985
 // Note: Details on connecting to the Anet V1.0 controller are in the file pins_ANET_10.h
1986 1986
 //
1987
-//#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
1988
-
1987
+#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
1988
+#define ST7920_DELAY_1 DELAY_NS(150)
1989
+#define ST7920_DELAY_2 DELAY_NS(150)
1990
+#define ST7920_DELAY_3 DELAY_NS(150)
1989 1991
 //
1990 1992
 // ReprapWorld Graphical LCD
1991 1993
 // https://reprapworld.com/?products_details&products_id/1218
@@ -2072,7 +2074,7 @@
2072 2074
 // A clone of the RepRapDiscount full graphics display but with
2073 2075
 // different pins/wiring (see pins_ANET_10.h).
2074 2076
 //
2075
-#define ANET_FULL_GRAPHICS_LCD
2077
+//#define ANET_FULL_GRAPHICS_LCD
2076 2078
 
2077 2079
 //
2078 2080
 // AZSMZ 12864 LCD with SD

Loading…
Cancel
Save