TT_Vert
About
- Username
- TT_Vert
- Joined
- Visits
- 21
- Last Active
- Roles
- Member
Comments
-
Thanks, I installed it and will report back next time i have to stop a print manually. Dave
-
That's just it. It's not just a visual issue. When this error shows I cannot actually control that pin w/ the @gpio pin at all unless I edit that pin settings , make no changes and click save. Then it will work again. However, when it's in this …
-
I have no idea where I got that from sorry. I'm on server pro 1.4.16. I think it is occurring if my start script runs (this turns on the pin w/ a @GPIO command) and a print fails and therefor the end script doesn't run to shut off the pin. Run on…
-
I'm on version 5.7.0 of repetier. GPIO pin is 17. Let's try again
-
I tried to embed the image but no luck Untitled.jpg (1162×62) (sharepoint.com)
-
BTW, rsyslog complains using ~ so i'd just use stop instead of ~ to prevent seeing this in logs instead: Jan 15 08:50:14 pi rsyslogd: warning: ~ action is deprecated, consider using the 'stop' statement instead [v8.2102.0 try https://www.rsyslog.co…
-
Thanks, yeah I knew I could suppress it, i just wanted to see if I could change the time from 1 minute to something longer while still having it in logs. Dave
-
Sorry to bring up a super old thread but are we just good leaving this? I've been going through various logs lately to try to optimize somethings. I am using the repetier image w/ only pi-hole as an additional app on there. Given others have have…
-
Repetier said: I saw that gpio changed but not alway. Not sure if this is the reason in your case, but I found that with inverted polarity for output the value was read back with wrong signal so output did not do what expeted thinking it is a…
-
There is definitely nothing wrong w/ the @gpio commands as they worked just before i did this update. As a basic example I show you my @gpio commands in action. Notice WPi pin 0 status on top right screen which is called Kobra. If I use the extcom…
-
Repetier said: Ok, I could reproduce and fix the degenerated @func with missing @endif. Problem is that the condition stack was not cleared so @if was active and falso so nothing got executed. Server assumed you are still in failed if conditi…
-
I don't exactly follow what you are saying about the user.sql file but so far I've not seemed to lose anything creating a new user.sql file and I now have admin permissions on this account. I'll await your findings after testing on the gpio stuff. …
-
That is very strange and the SSID is always broadcasting. Also remember there were times it did NOT even connect to my AP at all, rather it just enabled the Repetier AP for me to connect to it. Does status_code=16 mean that the WPA key was incorre…
-
I looked at the manual again and i noticed that under the gear I do not have "user profiles" listed for some reason. AFAIK I do NOT have any other repetier server account and i thought the first account was always an admin to prevent this. Here is …
-
Also, rather than start a new thread, any idea why I would see "Only available for users with admin privledges" in Global settings | terminal? I am the only user and am an admin.
-
Yeah i intentionally had a broken script to be able to duplicate the issue I run into. If the script has any error and/or doesn't complete I have to manually cycle the pin of the printer the problem script is on (On and then back off). If I do not…
-
Repetier said: It all gets logged to /var/log/syslog with all attempts to connect. Note that when you have default settings to switch to AP on missing network it can take some time to switch back when you get disconnected for some reason. Se…
-
Another thing I just noticed is when this is in this state my API calls I use on occasion to turn printer on/off w/ shortcuts on my desktop won't work either. Does that add any insight by chance? The ONLY way I can get it out of this state is to …
-
IF I don't end every job w/ @GPIO Kobra off the next time I start a job my activation script will not work. How/where can I test this context? IE how/where can i run the get_gpio_state command to see the current status? I tried that in console bu…
-
Yes it's activated and functioning otherwise. I'm not exactly following what you are asking. Yes, my end gcode does run @gpio Kobra off after print job to shut off printer and I guess let repetier server know the state is off. However if that does…
-
Repetier said: #2 server does what you write. You can also add a move to side or raise z (@moverel Z5 F600) or retract filament a bit aside. That is up to you. I assume M600 triggers end of filament handling blocking server until finished. Ho…
-
The FW i am using (Based on Marlin 2.0.8) sends the M600 for OOF which is why I was replicating it. Right now if I do #2 listed below (using M600) everything works (Print head moves up and away from print) but it's not ideal as I'd just rather the …
-
Thanks. I'll use OOF for out of filament to save typing it 10 times. I am going to try to word this a bit more clearly. The duplicator FW I run (custom FW) does have OOF detection and will allow the FW OOF process to run perfectly when printing f…
-
Repetier said: I think it is normal depending on your firmware config to handle M600 that way. It can be handled inside firmware or in server but server has to know. M412 just tells marlin to do that. For a while we had this even in our conne…
-
perfect thanks. I thought i had seen a setting at one point for that just wasn't sure where. At some point i'll revisit an issue w. M600 I have. I'll create a separate post for that but it seems whenever an M600 is called when printing via repetie…
-
Repetier said: See with eye symbol what the error message for failed is. Maybe it is the ffmpeg that is having issues especially if I see it starts converting. Sorry, I should have provided that info. The error pertains to the path which …
-
So unfortunately that 10 second delay didn't fix the issue w/ the time lapse saying it failed under the size column. I did confirm it waited 10 seconds before powering off. It goes from converting to failed shortly after but I can click the eye an…
-
The render works as designed, it's just that all jobs say failed. I have to assume it's because I am not delaying the printer from turning off. I will test that theory and report back. I changed my order of the code just to make you feel better .…
-
Also, you had mentioned calling a function for the end delay, Does this look ok to you? I don't know all of the commands unfortunately. @timedCall jobFinished 10000 PowerOffPrinter@echo "10 second delay to turn off printer" @func PowerOffPrinter …
-
Repetier said: For power off I think it would be a good idea to move that in a @func like in start here and call it with a delay, so server can finish and after being finished storing everything etc. it gets shut down with a delay. Also helps…