hoddem

About

Username
hoddem
Joined
Visits
10
Last Active
Roles
Member

Comments

  • I was able to get this to work. Idle timeout - 30 minutes Run on connect @set global.shutdowntime {{1800}} @set global.boottime {{time()}} Run before job@set global.boottime {{time()-global.shutdowntime}} Shutdown Printer@set global.elapsed {{time…
  • I actually do expect it to shutdown the printer after hitting the idle timer even if the printer has not printed anything. My concern is that the idle timer is not resetting when the server boots up from a hard power down. take this scenarioI have t…
  • My server is running on a raspberry pi that is powered off the same power supply as my 3d printer, so when I shutdown my printer (remove power) it also removes power from the server. A simplified version of what I am executing is this, assuming I ha…
  • Alright I spoke too soon, I am now having an issue where when I let the printer hit the "idle Power Off Time" it then goes through the shutdown sequence correctly, but when I power it up the next time it immediately executes the shutdown sequence ag…
  • All is working now, for reference here are my settings Printer Settings - G-Codes - Quick Commands Command Name - Hard Shutdown G-Code to Execute @pushmessage Hard Shutdown of MK2.5S Initiated M104 S0 T0 M140 S0 M109 R38 @syncMotion @webAction Hard…
  • yes I am trying to make the shutdown button execute my custom script so I did replace the inside the shutdown server command This works, but the power button disappears from the touch screen interface Shutdown Server /var/lib/Repetier-Server/s…
  • Lets backup, can you tell me why would the power button disappear from the touch screen any time I remove the shutdown command from the section? sudo /sbin/shutdown -h nowpower button shows up on main page of touch screen /var/lib/Repetier-Server…
  • I got it working, I had sudo in the original script that was the hangup. Now I'm having a problem where the power button on the touch screen disappears as soon as I change the default execute from shutdown to my script. sudo /sbin/shutdown -h nowpow…
  • Thank you for pushing me in the right direction, I have enabled unix sockets and written the script. the script is working when I a run it as user pi, but I don't have the right permission to run it as user repetierserver. Sorry, user repetierserver…
  • Thanks, I knew it was something simple. Configuration has been updated and I am updating the images now.
  • p_vnct said: you can do that with iframes in a web page Thanks,I wasn't familiar with iframes, but I did a little digging and it might be a viable solution.I created a little html file that pulls in the two server webpages side by side.…