mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-16 11:17:54 -06:00
✨ MakerTech3D Proforge 2s Dual (#797)
This commit is contained in:
parent
0d18b2ff75
commit
f5aac90689
6 changed files with 7744 additions and 9 deletions
|
@ -4,10 +4,10 @@
|
||||||
|
|
||||||
Currently Creality provides two kinds of screen units:
|
Currently Creality provides two kinds of screen units:
|
||||||
|
|
||||||
**Original Ender 3V2 DWIN display**
|
**Original Ender 3V2 DWIN display**
|
||||||

|

|
||||||
|
|
||||||
**Original Ender 3S1 DACAI display**
|
**Original Ender 3S1 DACAI display**
|
||||||

|

|
||||||
|
|
||||||
For the Ender 3S1 you must to use the `private` display firmware / icon assets, available here: `../config/examples/Creality/Ender-3 V2/LCD Files`
|
For the Ender 3S1 you must to use the `private` display firmware / icon assets, available here: `../config/examples/Creality/Ender-3 V2/LCD Files`
|
||||||
|
@ -22,14 +22,14 @@ For the Ender 3S1 you must to use the `private` display firmware / icon assets,
|
||||||
1. Reconnect the screen to the printer
|
1. Reconnect the screen to the printer
|
||||||
1. Turn on the printer and wait for the display to complete all tasks, confirming the procedure success, with the progress bar at 100%
|
1. Turn on the printer and wait for the display to complete all tasks, confirming the procedure success, with the progress bar at 100%
|
||||||
1. Turn off the printer and remove the SD card from the screen unit
|
1. Turn off the printer and remove the SD card from the screen unit
|
||||||
1. Reassembly the screen unit
|
1. Reassembly the screen unit
|
||||||
1. Turn on the printer and verify that the screen assets were updated
|
1. Turn on the printer and verify that the screen assets were updated
|
||||||
|
|
||||||
If you want to change only the icons, then you can leave only the **9.ICO** file inside of the DWIN_SET folder.
|
If you want to change only the icons, then you can leave only the **9.ICO** file inside of the DWIN_SET folder.
|
||||||
If you weren't able to update the display, verify the format of the SD Card (MBR, FAT32 and allocation unit of 4096 bytes) and the CRC of the files.
|
If you weren't able to update the display, verify the format of the SD Card (MBR, FAT32 and allocation unit of 4096 bytes) and the CRC of the files.
|
||||||
|
|
||||||
Be sure to leave **only** the `private` folder at the root of the card.
|
Be sure to leave **only** the `private` folder at the root of the card.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
In: https://github.com/mriscoc/Ender3V2S1/blob/Ender3V2S1-Released/display%20assets/readme.md
|
In: https://github.com/mriscoc/Ender3V2S1/blob/Ender3V2S1-Released/display%20assets/readme.md
|
||||||
|
|
|
@ -12,7 +12,7 @@ Pay attention to the two versions of the motherboard for the S1, one is using a
|
||||||
- Ender 3 printers that come with a firmware version **3.x.x** have the **STM32F4** chip.
|
- Ender 3 printers that come with a firmware version **3.x.x** have the **STM32F4** chip.
|
||||||
- Check the version number on the STM32Fx chip itself to confirm you have the correct version.
|
- Check the version number on the STM32Fx chip itself to confirm you have the correct version.
|
||||||
- Installing 1.x.x stock firmware or a compiled one to the target **STM32F1** on **STM32F4** mainboards **might brick** them! And _vice-versa_.
|
- Installing 1.x.x stock firmware or a compiled one to the target **STM32F1** on **STM32F4** mainboards **might brick** them! And _vice-versa_.
|
||||||
|
|
||||||
Where to put the firmware file on the SDCard:
|
Where to put the firmware file on the SDCard:
|
||||||
|
|
||||||
- STM32F1 board: Put the `*.bin` file into the root folder.
|
- STM32F1 board: Put the `*.bin` file into the root folder.
|
||||||
|
|
3364
config/examples/MakerTech3D/Proforge2sDual/Configuration.h
Normal file
3364
config/examples/MakerTech3D/Proforge2sDual/Configuration.h
Normal file
File diff suppressed because it is too large
Load diff
4354
config/examples/MakerTech3D/Proforge2sDual/Configuration_adv.h
Normal file
4354
config/examples/MakerTech3D/Proforge2sDual/Configuration_adv.h
Normal file
File diff suppressed because it is too large
Load diff
BIN
config/examples/MakerTech3D/Proforge2sDual/Proforge2sDual.zip
Normal file
BIN
config/examples/MakerTech3D/Proforge2sDual/Proforge2sDual.zip
Normal file
Binary file not shown.
17
config/examples/MakerTech3D/Proforge2sDual/README.md
Normal file
17
config/examples/MakerTech3D/Proforge2sDual/README.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Troubleshooting tips for Proforge 2s Dual
|
||||||
|
|
||||||
|
## Servomotor switch overheating?
|
||||||
|
```cpp
|
||||||
|
// Only power servos during movement, otherwise leave off to prevent jitter
|
||||||
|
#define DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
```
|
||||||
|
|
||||||
|
## Don't forget to Tune PID with `M303`
|
||||||
|
|
||||||
|
- Enable `EEPROM_SETTINGS` so tuned PID values can persist after reboot.
|
||||||
|
- Enable `PIDTEMPBED` to enable PID tuning for the bed.
|
||||||
|
|
||||||
|
```cpp
|
||||||
|
#define PID_DEBUG // Print PID debug data to the serial port. Use 'M303 D' to toggle activation.
|
||||||
|
#define PID_PARAMS_PER_HOTEND // Use separate PID parameters for each extruder (useful for mismatched extruders)
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue