phongshader
About
- Username
- phongshader
- Joined
- Visits
- 4
- Last Active
- Roles
- Member
Comments
-
should I change TEMP_0_PIN to pin 36, TEMP_2_PIN to pin 35, and TEMP_1_PIN to pin 32?
-
I haven't had a chance to test yet but I was looking through the pin assignments and this is what I found: configuration.io.h: IO_ANALOG_INPUT(IOAnalogExt1, TEMP_0_PIN, 5) pin 5 is listed as PA5 but in variants.h #define TEMP_0_PIN static_cast(PC_4…
-
I tried several different curves, NTC 3950 and EPCOS 550 with the same results so it's not the thermistors. The heater is definitely a 12v heater. Any suggestions?
-
I must have the wrong curve type for the sensor, the heater works as expected with Marlin 2 firmware. Supposedly it has a Epcos 100k for an E3 V6 heater block and the curve I have selected is IO_TEMP_TABLE_NTC(TempTableEpcos, Epcos_B57560G0107F000)
-
I moved this to General https://forum.repetier.com/discussion/7866/hot-end-temp-plateaus-before-reaching-target-temp#latest
-
here are the configuration files...oh wait...how do I attach the configuration files?
-
Not sure what you mean Repetier said: Can you also show heater output power in diagram? Where would I find the heater output graph? Isn't that what I posted? The heater is 12v and runs under both Marlin and MK4duo.
-
I have the BLTouch working, thank you. I'm running into a heater issue now. It fails on M303 S200 C5 and M104 S200 configuration.h: #define NUM_HEATERS 2#define HEATERS \ { &HeaterExtruder1, &HeatedBed1 } configurationio.h: IO_PWM_HARDWA…
-
I tried compiling with all the original config files from the rumba32 delta example and the bltouch still doesn't work. I know it's not the same printer but maybe the bltouch would work. Do you have any examples from a cartesian rumba32 printer that…
-
I'm looking through https://github.com/stm32duino/Arduino_Core_STM32/pull/1092 and it incorporates some changes to the arduino core stm32 some of which are seen in my last post, changed from #define PA4 4 //D4 to #define PA4 A1 //D4. Should I up…
-
Or if on a Mac /Users/yourusername/Library/Arduino15/packages/STM32/hardware/stm32/1.9.0/variants/RUMBA32_F446VE/variant.h I guess that would make sense, if I was to read the file literally it would be A1. Will Configuration_io.h read this literall…
-
never mind I found it. I don't see a pin 4 in variants.h, that is the pin defined in the delta rumba32 bltouch example: IO_OUTPUT(Servo1Pin, 4) I did see pin# for pd15 #define PD15 63 //D63 so I edited to IO_OUTPUT(Servo1Pin, 63) still no bltouch
-
Thank you!...where? I don't see a variants.h under .pio, .vscode, boards, include, lib, or src.
-
Repetier said: Looking into the docs What docs are you referring to? https://docfirmwarev2.repetier.com/?
-
the bltouch does not respond to any m340 commands. In the rumba32 delta example IO_OUTPUT(Servo1Pin, 4) you reference pin number 4, where is that set or defined?
-
-
src > boards > stm32f4 > boards > rumba32.h #define PWM2_PIN PD15 // TIM4_CH4 This is the pin on the board that the BLTouch servo is wired to. What would be/determine the pin number for this pin?
-
I changed the BLTouch clone to real BLTouch, changed IO_OUTPUT(Servo1Pin, 4) to IO_OUTPUT(Servo1Pin, PWM2_PIN) because PWM2_PIN is what BLTouch servo is wired to. Z axis now moves. There are some strange things happening with the probe, if I run M11…
-
Thank you for the explanation. The code compiled with no errors. I will test this evening.
-
I'm not sure where I should add the definition, io_input.h? #ifndef IO_INPUT_PULLUP#define IO_INPUT_PULLUP(name, pin) > #define IO_INPUT_PULLUP(IOFilamentDetector1, ORIG_Z_MAX_PIN) ? this goes to configuration_io.h FILAMENT_DETECTOR(FilamentDete…
-
Microsteps are set to 32, ZAXIS_STEPS_PER_MM 3194.75 This is from repetier 1.0.3, mks Rumba, DRV8825, microsteps 32. This also works with Marlin 2 with the current MKS Rumba32/5160 setup. These are already in configuation.h #define NUM_SERVOS 1 #de…
-
I lowered the speed and acceleration of the Z axis, now it makes a much higher pitched whine. #define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 100#de…
-
Thank you! My BLTouch code is identical to the Deltatower RUMBA32 example with some changes to offsets and so on in configuratio.h and configuratio_io.h. My hardware setup is the servo goes to cpu pin PD15 defined as PWM2_PIN in rumba32.h. The signa…
-
another question I have 2 filament detectors that I would like to get set up. Here is the line of code I would like to add to configuration_io.h FILAMENT_DETECTOR(FilamentDetector, ORIG_Z_MAX_PIN, ToolExtruder1) where is/where do I define FilamentDe…
-
I forgot to mention the BLTouch does not deploy it's probe. It's a clone BLTouch.
-
this compiles now: IO_INPUT_INVERTED_PULLUP(IOEndstopXMin, ORIG_X_MIN_PIN)IO_INPUT_INVERTED_PULLUP(IOEndstopYMin, ORIG_Y_MIN_PIN)IO_INPUT_PULLUP(IOEndstopZProbe, ORIG_Z_MIN_PIN) ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)ENDSTOP_SW…
-
this compiles with no errors, I haven't had the chance to upload it to the printer. Will endstops actually work if all axes min and max are defined as ENDSTOP_NONE? // Define your endstops are defined as // IO_INPUT_INVERTED(IOEndstopXMax, ORIG_X_M…
-
I must be doing something wrong, I'm new to this. I edited the configuration_io.h file to this // Define your endstops inputs // IO_INPUT_INVERTED(IOEndstopXMax, ORIG_X_MAX_PIN)// IO_INPUT_INVERTED(IOEndstopYMax, ORIG_Y_MAX_PIN)// IO_INPUT_INVERTED…
-
Oh and this too...The end stops are normally open, wired to xmin, ymin, BLTouch to zmin. zmax pin is for filament runout sensor. // Define your endstops inputs IO_INPUT_INVERTED(IOEndstopXMax, ORIG_X_MAX_PIN) > IO_INPUT_INVERTED(IOEndstopXMin, O…