Use 3D-printer for other purpose January 13, 2023 04:04AM |
Registered: 2 years ago Posts: 3 |
Re: Use 3D-printer for other purpose January 13, 2023 04:48AM |
Admin Registered: 14 years ago Posts: 7,216 |
Re: Use 3D-printer for other purpose January 13, 2023 05:09AM |
Registered: 2 years ago Posts: 3 |
Re: Use 3D-printer for other purpose January 13, 2023 06:59AM |
Registered: 8 years ago Posts: 352 |
Re: Use 3D-printer for other purpose January 13, 2023 10:46AM |
Registered: 2 years ago Posts: 3 |
Quote
[email protected]
Is this correct?
- You have a chamber.
- You want to control the chambers temperature.
- You're using the bed heater to heat the chamber
- You want to use the former extruder's temperature sensor to sense the chamber temperature.
Use the M141 and M191 commands to control the chamber temperature.
Setup the configuration.h file like this:
- EXTRUDERS 0
- TEMP_SENSOR_CHAMBER 1
- TEMP_SENSOR_0 0
- TEMP_SENSOR_BED 0
- TEMP_CHAMBER_RESIDENCY_TIME ??
- enable PIDTEMPCHAMBER
- enable THERMAL_PROTECTION_CHAMBER
You'll need to define the pin that controls the chamber heater and the pin used for the chamber temperature sensor. There's two ways of doing this (use only one). The following assumes that the MOTHERBOARD setting is either BOARD_GT2560_REV_A or BOARD_GT2560_REV_A_PLUS.
- In the file pins_GT2560_REV_A.h add the lines #define TEMP_CHAMBER_PIN 8 // use TEMP_0_PIN and #define HEATER_CHAMBER_PIN 4 // use HEATER_BED_PIN
- In the file configuration_adv.h enable HEATER_CHAMBER_PIN and set it to 8 // use TEMP_0_PIN. Then immediately after add the line #define HEATER_CHAMBER_PIN 4 // use HEATER_BED_PIN
Re: Use 3D-printer for other purpose January 23, 2023 09:19PM |
Registered: 8 years ago Posts: 352 |
Re: Use 3D-printer for other purpose February 04, 2023 11:49AM |
Registered: 2 years ago Posts: 13 |