MakerTech3D Proforge 2s Dual (#797)

This commit is contained in:
Fhalo48 2022-08-26 00:30:43 +01:00 committed by GitHub
parent 0d18b2ff75
commit f5aac90689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7744 additions and 9 deletions

View file

@ -4,10 +4,10 @@
Currently Creality provides two kinds of screen units:
**Original Ender 3V2 DWIN display**
**Original Ender 3V2 DWIN display**
![Ender3v2-DWIN](https://user-images.githubusercontent.com/2745567/156829365-a58a3afc-77e3-40b9-9e16-5edfe3073de8.jpg)
**Original Ender 3S1 DACAI display**
**Original Ender 3S1 DACAI display**
![Ender3S1-DACAI](https://user-images.githubusercontent.com/2745567/156829472-2c38a4ab-bdde-4c21-b78f-a30692c96500.jpg)
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. 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. Reassembly the screen unit
1. Reassembly the screen unit
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.
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

View file

@ -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.
- 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_.
Where to put the firmware file on the SDCard:
- STM32F1 board: Put the `*.bin` file into the root folder.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View 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)
```