Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • #define Z_PROBE_X3 100 should be 60 for grid leveling. Also remember these points are stored in eeprom so changing in config later does not help unless you recopy values to eeprom again. So check in eeprom editor if they are set correct.
  • This happens if z probe height is set wrong. Then it might stop above z=0 or below depending on error. Change it in eeprom and retry. Do not go to Z=0 directly. Start with 50 and then approach till you see it is ok or touches bed - remaining z in pr…
  • Solution is to select "Extruders share same heater from extruder 0 definition (SHARED_EXTRUDER_HEATER)" in config tool. Then extruder 0 defines temperature for both.
  • Can you explain? I slice several times per day without any problems, so what is the error you get with which of the supported slicers?
  • G29 is not homing. You can always send a set of coordinates and the host command@isathomewould set coordinates to homing position stored. So@isathomeG1 X10 Y10 Z5 F6000 would make coordinates black and correct as printer has moved to given position.…
  • First pin numbers must be positive- -11 will surely not do anything. From your description I see you have one of these ramps fd with inverting output that are by default on and not off.All needed is inverting output so in HAL.cpp search forWRITE(EXT…
  • You can also just check if /dev/video0 exists. 
  • We had this before but not with our image at least not with pi display.It is power saving that at some point does not work any more. Maybe it is the touch controller also going to sleep and then you can not trigger wakeup since you have no mouse or …
  • We are working on it and hope in may.
  • I see where it happens. Parser expects major.minor.patch and chrome has a 4th level now. Will make it ignore anything after 3rd value instead of failing. And yes, it just returns a version 58.0 and only issues the message. Error occurs on parsing 3r…
  • Unfortunately it is not themeable. Changing theme takes 2 month. It is not a webpage where a different css makes it look different. We have nearly 1500 image files that needs to get replaced and as I said the system used does not support theming so …
  • Your z-probe has a offset. To measure it gets activated and if that means move extruder left and you are at x=0 this is not possible-> illegal position.Use homing sequence with preheat as these allow to set a probing position as well that would a…
  • It is fixed in firmware, no eeprom. But you can change it by gcode: - M604 X Y Z T - Set jam detection values on a per extruder basis. If not set it uses defaults from Configuration.h And yes, you understood me correctly regarding steps.
  • I mean it is stored in windows registry. You need regedit to import or export parts of this. Repetier-Host stores it' parts under HKEY_CURREN_USER/Software/RepetierHost
  • Ok so since 4 and 5 work make sure you have not swapped them.Other thing is make sure no other fan/heater/... is using same pin number. As I understand this is what you set extruder cooler fan to. So this fan gets only activated if you set extruder …
  • Optimum would be a Jam_Slowdown_Steps bigger than anything you experience in normal working situations. WIth debug you can already see what it really measures then add sone 30% on it as a start. Error should be again 30-50% on top I'd say. If you ha…
  • Have you testes without fan with multimeter if pin 4 gets power?You said servo board but most fans need 12V while servos like 6V so is voltage ok?
  • Copy host work directory especially CuraEngine folder to copy curaengine settings.HOME/AppData/Roaming/Slic3r contains your slic3r settings. Registry Software/RepetierHost contains host settings. SO if you have same user name you can copy them with …
  • Have just read latest version. There you read     #if ENABLED(DISTINCT_E_FACTORS)      CONFIG_ECHO_START;      for (uint8_t i = 0; i < E_STEPPERS; i++) {        SERIAL_ECHOPAIR("  M92 T", (int)i);        SERIAL_ECHOLNPAIR(" E", VOLUMETRIC_UNIT(pl…
  • F*** this not even valid gcode they want. Why cant they just makeM92 T0 E200M92 T1 E200so you have a valid and parseable command per extruder.This is not solvable with the eeprom system and xml files. How does M503 output look in this case? Maybe I …
  • Seems you still have not installed mjpg_streamer - if you had the orange led start to work. Is this the doc you are using: https://www.repetier-server.com/setting-webcam-repetier-server-linux/
  • Design was so you can add features with modules if needed, so obscuring is maybe not best solution. While you can hack some pro features in frontend the backend also does some stuff only when license is installed. But in the end we hope there are en…
  • You can not solve this in the host. Firmware cache a lot of moves so if you access responses and modify output it will be to late. For usch a solution you need to make the modification at the source meaning inside firmware. Firmware already has such…
  • This is nothing we can tell slicers directly as fas as I know. You can do that in slicer directly if you have such fancy requirements. But do not expect it to be easy. You need intersecting stl files where you define properties for intersections.
  • Error message state clearly that some defines are not there. It is important to compile with matching version. Best is download zip in config tool so you have the matching code for the configuration you got.
  • Server will get realtime updates or something close in the future. This requires other techniques as informer uses. It will be a online website that collects the informations, but that is something for future.
  • I'm quite confident it improves. I'm working on new wifi handling and found out that NetworkManager does a bit more then expected so it really reconnects on it's own. On the other side for 4ft I would use a ethernet cable just because it is faster a…
  • On connect firmware resets. So could it be that resetting the board causes the flash until the variable gets initialized by firmware? As a test remove usb and just press reset pin.
  • ffmpeg has nothing to do with webcam - it converts images to a video later on. So is it the webcam not working or the video conversion? For webcam you need to setup mjpg_streamer and enter it in webcam settings so you see it in the interface. As alt…
  • These are no host settings! #if !defined(ROD_RADIUS) && DRIVE_SYSTEM == DELTA#define ROD_RADIUS (PRINTER_RADIUS-END_EFFECTOR_HORIZONTAL_OFFSET-CARRIAGE_HORIZONTAL_OFFSET)#endif So if you define ROD_RADIUS the offset is not needed. DELTA_MAX_…