Anteino

About

Username
Anteino
Joined
Visits
52
Last Active
Roles
Member

Comments

  • My problem is (I think) that repetier has support for some of the TMC stepper drivers, but I can't find any guides on how to use the TMC2208s in repetier.
  • Repetier said: Seems correct. -55 is when it measures no sensor. Note that bed sensor 1 is the outermost sensor, not the one next to T0! You can just try connecting the sensor by shifting until temperature appears, but give it some time or hi…
  • It's here. Ok cool I'll hang onto this language system then https://github.com/Anteino/Repetier-Firmware/blob/500XL-Minimal/src/ArduinoDUE/Repetier/LanguageHelper.py
  • Cool, I have not looked into dev2 yet as I understood from Michiel it is not completed yet and we're a year deep into the branch we're in now. Thanks for the headsup though, that would make it clearer to generate files. I see the attachment was not…
  • Yep they are improved
  • I got it to work now though. Should I make a pull request to the repetier github to implement this functionality?
  • Also I had these (dutch) translations ready.  #define UI_TEXT_ON_NL               "Aan"#define UI_TEXT_OFF_NL              "Uit"#define UI_TEXT_NA_NL               "Nvt" // Output for not available#define UI_TEXT_YES_NL              "Ja"#define UI_…
  • You're a life saver! This has been bugging me for quite some weeks now. I donated 20 euros for all your help over the last few months.
  • Well, I searched my ass off but nowhere can I find something like this: Extruder::current->zOffset = extruder[0]->zOffset + extruder[Extruder::current->id]->zOffset like I expected. Where is the extruder offset for tool 1 defined relativ…
  • Right, so I have two printheads and at boot I tell the printer it has tool 1 selected and then make it select tool 0. I temporarily disabled the select tool 0 command because it takes 20 seconds to do and this is a pain with debugging. Re-enabling t…
  • I noticed, these problems only occur when I pause before the actual printing has started.
  • Cool, thanks However I run into some problem now. All seems to works fine and dandy. After stopping a print, the resume.g file gets created and can be started through the newly introduced menu entry. However the printer freezes after that. It prin…
  • I fixed it. I've added an entry to the display that will call this function: /* * Anteino 2-2-2018: This function reads the resume.g file and prints it to the screen * before executing the contents. It is needed to have this as a function on t…
  • Well, actually nothing happens at all when I run M23 from a gcode file. The printer just sits there and the serial monitor says print finished
  • But it must be possible right? Because I have seen it work on other machines that run repetier without the need for a host.
  • Maybe the sd.stopPrint will help. If not, then I'm open for suggestions Nope didn't work
  • I agree but that a bit up after homing needs to be variable so it can be calibrated with a wizard.
  • Repetier said: For min direction you should be able to adjust endstop position/trigger point or bed height with some screws. That is not possible for us unfortunately. I think I will add a new entry in the eeprom to account for this offset…
  • Repetier said: Solution is what I already said. Make e0 offset 0 and calibrate homing for that offset and then continue. How depends on homing direction and if you use z probe of endstop. I have an endstop in the Z-direction. I guess my re…
  • I guess so then. How'd you suggest going around this problem? By the way, why is there an extruder0 offset when it may only be zero?
  • Repetier said: i do not understand why you are constantly changing z offsets for autoleveling. Sounds more like you calibrate extruder offsets. I am indeed calibrating them. I cannot set extruder0 offsetZ to zero because then it will want …
  • #define UI_HAS_BACK_KEY 1 says to add back entry in all the menus while 0 would remove it. Really? because the documentation in the firmware itself says this: Setting this value to 1 removes the back entry. So it is set to 1 in my case, and i…
  • Cool, I will let the leds be controlled in a binary way then. Might connect a custom mosfet circuit to a pin on timer 3 - 5 or just connect a big capacitor to the current situation in the future.
  • Yes I have eeprom disabled . The motors will by the way never get enabled. Not on startup, not when sending a G1 command and not when sending M84 (release motors). Since the firmware for this product is not too complex I decided to code a quick cust…
  • Repetier said: Have you allowed moving without homing? Also at start x is 0 so you can only move to the right I guess. You could check if the enable/dir/step pins get power when moving. Reagarding enable some drivers need it 1 some 0 to deli…
  • I understand what you are saying but I purposely put enables on different pins so there'd be no interference from the Y or Z motor with the X motor. I'm really just focussing on the X motor here right now. You're right about the using of pins for mu…
  • Cool, thanks. I might get into that later. In the end I decided to use a vacuum pump instead of a peristaltic stepper driven pump. Not for this reason though, a pump has a lot more power.
  • You're absolutely right. Thank you for saving the day again!
  • Hi Repetier, thank you again! I implemented it by changing 28 to 50028. Next, when the board receives a G28 query it automatically sends the corresponding G50028 commands. Works like a charm !
  • Could I use your expertise one more time? Could you tell me how I'd implement the actual gcode in this part: case 28: // send calibration gcode    // yout homing here    break; Intuitively I would do it like this: case 28: // send calibration gco…