Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Mac version is a completely different software and has not enough users to implement all features of windows version. That is why we replace it with repetier-server which has same base for all os so mac will have always same version as windows/linux…
  • > Settings are unknown no idea what usb port or suchlike, have just started to understand putty and FileZilla (mentioned before) Well selecting the right serial port is mandatory. Select in printer configuration one with /dev/serial/by-id normall…
  • I remember that bug. What server version are you using? I remember that z hopping triggered the error, just not sure if it was fixed in 0.92.1 or for next release. But think it is already fixed as it was some time ago.
  • You better test only server web interface first. Host connects to server but that does not mean printer is online for usage. Ok, if you see manual control functions activated printer would be thought of by server as online as well. To check which s…
  • I don't have that board and I haven't added any displays to it, but you can check on radds board how I would do it if you like to play.
  • Ok, change in Drivers.h  class MotorDriverInterface {public: virtual void initialize() = 0; virtual float getPosition() = 0; virtual void setCurrentAs(float newPos) = 0; virtual void gotoPosition(float newPos) = 0; virtual void enable() = 0; …
  • Ok, then I have fixed it only in dev version so far. That is what I used to test. Here the correct code in Printer.cpp void Printer::setCaseLight(bool on) {#if CASE_LIGHTS_PIN > -1 WRITE(CASE_LIGHTS_PIN, on); lightOn = on; reportCaseLig…
  • Same window will require Repetier-Server Monitor a stand alone desktop app that can monitor multiple server instances. Planned release is somewhere next week. It is free for all Pro users. 
  • Same window will require Repetier-Server Monitor a stand alone desktop app that can monitor multiple server instances. Planned release is somewhere next week. It is free for all Pro users.  How you split the 100 printer to several server instances …
  • Mac version only supports repetier-firmware style eeprom handling. Use our repetier-server to change eeprom on mac.
  • Ok, backlash is something you really should prevent. What it does is when an axis changes direction it adds a small move f size backlash in new direction. But it does this for the same axis and should not move an other axis. But as a test set all ba…
  • Ok that explains it at least 14:54:03.653: N23 M355 S114:54:03.661: ok 2314:54:03.661: Info:Case lights off Server parses "Info:Case lights off" and that is the opposite of what it should be. S1 is enable and firmware says it is off and server beli…
  • EEPROM is only supported for Repetier-Firmware where usage is unified. Marlin has not one eeprom command but it is about 20-30 commands. You can use Repetier-Server on mac instead. There we have implemented the eeprom modifying commands also for mar…
  • You have 2 times void commandG203(GCode& code) {...} in Drivers.cpp the old original and my corrected version that you have added. At least it is what I think happened due to the error message.
  • Strange thing with eeprom. Normally you can switch mode between 1 and 2 to force reinit of eeprom. Should only be required when you switch from other software using eeprom causing same checksum. One known problem of some china arduino dues is that …
  • There is no chamber controller in V1. So you can hack it into it to get it, like outputting extruder 3 as C and mapping chamber set temperature to that extruder, but not planned.
  • I think in host you also can not connect. Host shows connect just because you opened the port successfully. That is the same as orange in server. Server goes only to green when it receives a response it can read. What might have happened is that ba…
  • u8g development is discontinued. Updates are now in u8g2 lib the next version. Our V2 firmware uses the new library already, but configs are only for a few combos working a sit is in early development stage.
  • Since you said another 3d printer server - you must know that only one can connect at a time or it will fail. So make sure there is no other software like octoprint running the same time. If it would be that is the problem server can not connect any…
  • Testing with your config just setting port to virtual worked fine as well. Guess I wait until your new install. Can you also test with virtual port? I did the tests without printing anything before. Just connect and starting to switch light with the…
  • Looking into docs the last 2 parameter in init that were none are a0 and reset. Not sure if a0 would be dc. But glad you figured out at least a solution.
  • See documentation https://www.repetier.com/documentation/repetier-host/gcode-editor/ @execute is what you are looking for.
  • I think from the error message redefinition of... that you added my replacement code but did not remove the old wrong version so you have now 2 identical functions which is not allowed. So remove the wrong code and compilation should work.
  • Haven't changed anything on lights since that version. So at the moment I see no reason for it to fail in your case. Can you post your printer xml config. Would be the only thing that might maybe break some thing also I don't know what. But at leas…
  • Only know 3 wire - MISO/MOSI/SCK - what is the 4th wire for? or is it slave select? But that is already one of the pins.
  • So it does not happen the full move only a bit at every short move? Did you change cable arrangement with the update so that you get some crosstalk e.g. to step pin of that motor?
  • Das GLCD ist ja für deren boards gedacht. Mit der adapterplatine bekommt man es dran aber das heist nicht das die firmware die pins so nutzen würde. Daher wohl auch die Anleitung wie man die pins ändert damit es klappt. displaylist.h enthält die Ko…
  • No, if there is explicit U8G_PIN_NONE you can not specify it. Hope they are really not required. Otherwise replace it with the value you need. But reset is never set for all displays. 
  • Strange. Testing I get this here: 19:07:39.420: N25 M355 S019:07:39.426: ok 2519:07:39.426: Info:Case lights off19:07:40.425: wait19:07:40.880: N26 M355 S119:07:40.884: ok 2619:07:40.884: Info:Case lights on19:07:41.631: N27 M355 S019:07:41.634: o…
  • Ok wenn du das so explizit macht erklärt es warum er den kommentar einfügt. Stellt sich die Frage wie man ihn dazu bring das so zu machen das der Server das versteht. Versuch mal @make_snapshot xxx Wichtig ist das da ein Leerzeichen ist vor dem Komm…