RAyWB
About
- Username
- RAyWB
- Joined
- Visits
- 2,124
- Last Active
- Roles
- Member
Comments
-
look in file repetier.h , Version number should be written there
-
https://www.lua.org/ https://www.lua.org/docs.html
-
mahesh04 said: we are an OEM using your firmware + repetier server softwares as a bundle with our machines, and we are facing this issue as large format machines tend to false-trigger proximity sensors in operations especially when they are r…
-
you should do that in Firmware. in configuration.h #define MOVE_X_WHEN_HOMED 0 #define MOVE_Y_WHEN_HOMED 0 #define MOVE_Z_WHEN_HOMED 0 change Value from 0 to 1 that should do the trick
-
ok, so that file is useless as it´s for firmware.doesn´t repetier server connect and load the firmware values automatically on a marlin powered printer?for repetier firmware it does, so i don´t know. sorry
-
that´s depending on what you want to do.you just asked for a configuration file without further informations
-
https://github.com/Creality3DPrinting/Ender-3/blob/master/Ender-3 Firmware (Marlin)/Ender-3%20(includes%20power%20failure%20resume-%20English)/Marlin/Configuration.h
-
welchen slicer verwendest du?
-
see here : https://docfirmwarev2.repetier.com/
-
as repetier wrote :You simply set FEATURE_CONTROLLER 11 so just search for FEATURE_CONTROLLER not for display
-
@aschneid see: https://github.com/repetier/Repetier-Firmware/tree/dev2 @Dimitar : movement is much smoother compared to V1 but i cannot say anything about print results as i use V2 momentaryly only for my Laser
-
try as follows: sudo apt-get install xinput-calibrator sudo nano /usr/share/X11/xorg.conf.d/99-calib.conf Section "InputClass" Identifier "calibration" MatchProduct "ADS7846 Touchscreen" Option "TransformationMatrix " "1 0 0 0 -1 1 0 0 1" Option "Ca…
-
https://forum.repetier.com/discussion/6035/setting-up-joy-it-3-5-display#latest
-
Think the problem is that you have not defined a extruder.Even if you don´t use it as Printer it´s still a printer firmware.May be i find the time the next days to setup a ramps/mega to test
-
you already have that button on touch Screen. see:->Server commands ->shutdown server
-
you should share your configuration.h so we can see whats going on
-
rdzawka said: Everything looks good, but the laser output (D10 on ramps, used for extruder heater) always show 0V. you cannot double use pins. if it´s used for extruder heater in fdm mode you cannot use that pin for laser in laser mode
-
so may be you should check your wiring and for tests use a simple led, not the laser.just for safety reasons BTW Lasermode is set By M452, not by G452
-
what slicer do you use and do you have same nozzle diameters for both extruders?
-
PWM for laser is not implemented in Firmware, so values lower than 200 are interpreted as Laser OFF and values >=200are interpreted as Laser ON.There are several Threads here in Forum regarding Lasers.If you want PWM for Laser you have to write y…
-
see repetier.ino there you can see all supported commands - M451 - Set printer mode to FFF - M452 - Set printer mode to laser - M453 - Set printer mode to CNC keep in mind you have to write a laser driver for pwm as there is just on/off implement…
-
from my own experience...decimals are useless , you´ll never get more than 10...12 shades of gray on f.e. pine wood. so if you have a start value of 150 there still are more than 100 steps left. the biggest problem when engraving is the color chan…
-
nope. value is 8 Bit wide so only 0...255 possible
-
OK,found.As long as there are no M104 or M140 commands slicer adds the M104 S0 and M140 S0.if you want to prevent from cooling down you have to set the value you want in the custom end code,that does the trick see:
-
no it doesnt. just full numbers 0...255
-
nope, pwm values accepted are full numbers without decimals. Laser Mode also does not support PWM , its just on/off so you have to write the PWM laser driver yourself
-
ok, can reproduce the problem but no idea where it´s generated.searched also in directories for config files ,without success. seems to be automatically generated by slicer , may be for safety .
-
what about the custom g-code in filament settings tab?
-
MartinH said: This sounds weird and amazing, any chance of a photo of your printer. Yes, that might be useful to follow up what you´re doing
-
take a look at motion.cpp search for#if defined(SUPPORT_LASER) && SUPPORT_LASER else if(Printer::mode == PRINTER_MODE_LASER) { p->secondSpeed = ((p->delta[X_AXIS] != 0 || p->delta[Y_AXIS] != 0) &&…