RAyWB
About
- Username
- RAyWB
- Joined
- Visits
- 2,124
- Last Active
- Roles
- Member
Comments
-
typo , FALSE and TRUE have to be lowercase letters
-
you just need a flag in the switch case of your buttons. boolean flag= FALSE ; // at beginning of your custom events, must be global defined case x: if(!flag) { action = action1; flag= TRUE; } else{ action = action2; flag= FALSE; } break; somethin…
-
see configuration.h : (can´t help more as i don´t have a corexy) /* Define the type of axis movements needed for your printer. The typical case is a full cartesian system where x, y and z moves are handled by separate motors. 0 = full cartesian …
-
MartinH said: Love the above link https://www.thingiverse.com/thing:1278865
-
if i understand correct , the "x" should come out of the cube , the "Y" is in the cube , the"Z" also. if you look at the structure you can see clearly it´s underextruded , that also causes the deep "Y" , the flat"X" and the open surface on "Z". th…
-
Du kannst das urprüngliche Paket auch beim grossen "C" runterladen, die Firmware ist etwas anders als die Standard Repetier, aufgrund der verwendeten Messbrücke am Extruder, auch die Stromeinstellung für die Stepper ist beim RF1000 anders gelöst. G…
-
you use #define HEATED_BED_HEATER_PIN 9 , standard for Ramps is #define HEATED_BED_HEATER_PIN HEATER_1_PIN ( which is PIN8) so you assigned Bed and Blower to the same PIN, that´s the trouble
-
Hi, die Timezone kannst du im raspi-config einstellen, also über SSH (z.B. Putty)verbinden.(ging bei mir nur ohne angeschlossenen Drucker ).
-
think solution for you is to replace the fuse. if you cannot get such a polyfuse ,replacement by fuse type as used in cars would be possible. its done also in some RAMPS Variations.
-
what happens if you send following lines : G28 Z G1 Z0 F500 G1 Z1 F500 ? Whats your homing direction ? Zmax or Zmin?
-
so fuse should not cut off... but one question. did you change anything before this issue started? f.e. changed housing of electronics, removed blower etc.? btw do you have a board fan?
-
YES, that´s the point, all loads ON
-
hook it up as martinh wrote including all loads and measure again, then you can see whole inrush current as i wrote before. if current is below the 5 amps your fuse might be bad , if current is more than 5 amps the problem is located some where els…
-
measure inrush current at RAMPS , the input of the 5 Amps Polyfuse..... we want to know the complete current, not only heater
-
first of all measure the inrush current with your multimeter (select DC Amps).https://dengarden.com/home-improvement/Using-a-MultimeterFuse is a safety element, it just disconnects when current is too high.
-
yes, you Need to measure the drawn current , otherwise you cannot see if the error is located at the Fuse or Heateror any other component.just straight forward toubleshooting
-
do you have the possibility to measure the input current ?
-
-1 bridging is opposte of wise -2 check your heaters and motor drivers, usually fuse is not the problem does heater voltage match the power supply voltage? (usually 12 V heaters are around 6 OHms , 24V Heaters are around 12..13 Ohms)
-
ok, so second extrduer is not configured , also not bed , that´swhy you get no temp readings except from t0
-
Did you configure Firmware for 2 Extruders? see configuration.h
-
the way i wrote the code matches the standards i know , so i suggest to take the whole section for the case you change your cam software ;-)
-
had same "problem" so feel free to use: https://github.com/RAyWB/Additions-for-Repetier-Firmware/tree/master/CustomEventsFull you just can pick out the G0/G1 section if you want to
-
I have it running on a mega/ramps also. use dev firmware and add the custom events , warmup and most other features are included in official repetier-firmware
-
Do you have original E3D or plagiate? may be this helps a little as chimera heaters are same as V6. https://wiki.e3d-online.com/wiki/E3D-v6_Troubleshooting
-
there is a solution out of the box , see https://github.com/repetier/Repetier-Firmware/tree/development/src/SampleEventSystems/Laser PWM and DAC I´ll post some pictures to my GitHub to show some pretty good results. (may take a cuple of days) …
-
calibrate the extruder is next step... http://reprap.org/wiki/Triffid_Hunter's_Calibration_Guide
-
if i remember correct some details/issues are written on E3D Homepage https://wiki.e3d-online.com/wiki/E3D-v6_Assembly http://community.robo3d.com/index.php?threads/e3d-v6-keeps-jamming.5030/ !!!!!!the blower to the fins hast to run at 100% all …
-
if it´s a E3d V6 Hotend or plagiate keep retract as short as possible (if direct drive extruder keep it< 0.5mm) especially with PLA there are known issues with that hotend
-
might be drivers adjustment or steps/mm not correct
-
sorry i´m not familiar with the corexy movements and belt setups so i cannot help for that case. just start with basics .... Try sending following commands in exact that order and report what happens G28 X G28 Y G28 Z G1 X100 F500 G1 Y100 F50…