Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
What I say is that you can create own messages to be send to MQTT server. I'm not aware that kasa plugs can use MQTT for communication, but if they use same MQTT broker that would be a solution. I only use them over IFTTT. So what you do with these …
-
What did you use monitor for? You should just use autoupdater in Repetier-Server. There is no auto revert to 1.2.1 in server and monitor can not update server. So not exactly sure how you did it. The only way to revert might be when you switch fro…
-
Both on same plug is a bit difficult since pi must shutdown and then it can not send message. So HA might be the help if you trigger a delayed shutdown. MQTT messages only stay if the retain flag is enabled. You can send your own message/topic usin…
-
First # at first position tells server to not do anything with the line just send it 1:1. Was added since klipper and RepRapFirmware used syntax that was not GCode syntax but needed to be send. If first command uses seceral characters you can now om…
-
There is no automatic connection. If you use HA mosquito it will publish the printer and server entities to HA to be used. How and for what you use them is up to you. In our example integration we show how to make a mini GUI to be included so you se…
-
You can install additional files in /var/lib/Repetier-Server/database/klipper/ if you want. You can even switch the selector to edit them. Copy them manually or use save as to create the file and then insert content into it. But be careful with kli…
-
Leider war 1.4 ein Mega Update, also nicht so leicht die Zeile zu finden. Aber immerhin gut zu wissen das es vermutlich dazwischen eingebaut wurde.
-
Ok so klippe ris working now that all parts are on 0.10 as I understand. 0.10 and master in deed have considerable difference in supported settings and it is not backward compatible. Kasa with ifttt is what I also have. I have it in server defined …
-
That is due to different delays for different webcams. Go to printer settings->webcam activate selected position (which I guess you did already). You see 2 timings one before snapshot and one after snapshot. Before is needed if webcam delivers no…
-
Ok other ideas: export LC_ALL=C && sudo /usr/local/Repetier-Server/bin/RepetierServer -c /usr/local/Repetier-Server/etc/RepetierServer.xml then you start as root and can access everything. Then fix timelapse ffmpeg path for later start with…
-
Ok, after several tries I could reproduce that issue. It happens when you have entered in timelapse configuration a ffmpeg that lives in a folder that is not accessible. You did not enter full path so it is testing in path you started from I guess. …
-
Sorry, app only runs in locale C so try starting like this instead export LC_ALL=C && sudo -u repetierserver /usr/local/Repetier-Server/bin/RepetierServer -c /usr/local/Repetier-Server/etc/RepetierServer.xml that should select correct loca…
-
Ja im Grunde ist es anpassen auf den neuen Prozessor, also HAL für LPCxxx hinzufügen. Evtl neue boards und ein ini file für Platformio um das Board mit den richtigen Parametern zu kompilieren. Ich hab grade einige Wochen damit zugebracht den BTT Oct…
-
Sounds like M17 does not reset stepper timer as you see your function gets called every 2 seconds. So extending using M85 S432000 is better solution as it just works. You could increase it on pauses and reduce on pause end if you like it lower in ot…
-
Looks like server crashes on startup. Become root and start manually to see where exactly it crashes to find the reason: sudo -i sudo -u repetierserver /usr/local/Repetier-Server/bin/RepetierServer -c /usr/local/Repetier-Server/etc/RepetierServer.xm…
-
So what does ps aux | grep tier show. It should not list server as that is most likely the reason website does not exist. Did you install Repetier-Server correctly? Meaning debian version matching your cpu with root permission? sudo service Rep…
-
But as said you can add in run on connect strip deactivating host handling of out of filament if that was the reason it changed. Or leave it to give server the control.
-
So you can not open http://127.0.0.1:3344 in your linux browser (external access needs other ip) to configure server?
-
First, can't you disable timeout in firmware? That is what triggers motor off normally. Would be great if it has a option to prevent this for y like it is normally possible for z. Anyhow, server solution is easy. Do not use a while, but @timedCall…
-
Did you add a printer with klipper in server first? Just starting does nothing - you need to configure the printer in server first to see it in host Repetier-Server Connector.
-
Das ist ein automatischer wechsel den der Host macht, wenn das zeichnen zu lange dauert. Kann man in den 3d Einstellungen verhindern wenn man das Problem normal nie hat. Vermutlich kostet das aufwachen zu lange und triggert die Funktion. Problem ist…
-
Ok updating is normally no issue, but no one knows if that contains changes to wifi driver or if it would be before or not. We always update to newest before releasing new images, just because we always assume that updates fix issues. Of course some…
-
Yes, thats the plan. Users can than still add it in run on connect if they want/need it. But no forcing it.
-
Ich bin recht sicher das es möglich ist, da hue eine API hat mit der man ja die Geräte steuern kann. Und der server kann web aufrufe senden. Die Frage ist daher mehr mit welchem Web Aufruf kann man die Lampen ein/aus schalten oder Farbe vorgeben. We…
-
Hast du mit timelapse gedruckt? Und wenn ja renderst du die Videos lokal am pi oder auf einem anderen PC? Wir konnten das bisher nur mit timelapse rendering auf anderem pc reproduzieren, kann aber auch zufall sein, weil dann grad das Timing zum Fehl…
-
EEPROM_MODE other than 0 always uses eeprom. If it is different to last value it just restores factory settings, so same like M502 M500 after start.
-
Ok, werd die tage mal versuchen den Absturz zu reproduzieren während der Debugger parallel läuft. Hoffe ich bekomme auch mal den Absturz damit ich sehe wo und warum. So was ist leider häufig sehr hardware spezifisch da es nur bei bestimmten timings …
-
Server does not prevent moves below 0, but since Z=0 is bed height it won't allow it's move buttons in gui to go below. You can still send G1 Z-1 and if firmware allows moving below it will happen. This is to protect printers since it is not wise to…
-
So you had ethernet to check for it? Did you run iwconfig to see if device was really gone? At least with one router we saw wifi driver hanging. That is why we have a script /usr/local/Repetier-Setup/bin/monitorSyslog running monitoring syslog and r…
-
Are you using 1.4.1? There we added in connection command M412 H1 S1 which tells firmware to not handle such thing son it's own but to ask host for it. After all //action:filament_runout T0 is the designed message to make host software trigger a pau…