copposhop
About
- Username
- copposhop
- Joined
- Visits
- 3
- Last Active
- Roles
- Member
Comments
-
How can someone looking for help be so unhelpful himself? Stop shitting on people improving the software you propably use for free. Tell them what's your issue and help them find ypur solution. Use "@debug 1" to enable the full server log then send…
-
Oh that's good to know. I didn't think they would work without an active print job timer.
-
Thanks a lot. Is there an integrated sleep function for the server commands? I could use a lua script but I wanted to stick to g-code for printer specific tasks.
-
Seems like the timed call is never calling @func turnOn when the printer is turned off/ not connected. When I start the script while the printer is turned off, M80 will never be printed.
-
@set global.reset_delay_ms 5000 @func turnOn @echo "M80" @echo "Restarting printer"@endfunc @func reset M81 ; Turn off printer @echo "Turning off printer, restart after {{global.reset_delay_ms/1000}}s" @timedCall resetCall {{global.reset_dela…
-
Of course. M80 and M81 are being replaced by a custom power on and off sequence, so the server is able to turn on power. The regex is matching M80\b so i tried replacing the M80 command with @echo "M80" but the command still won't be send after the…