• 1 Post
  • 61 Comments
Joined 7 months ago
cake
Cake day: February 25th, 2024

help-circle


  • I’ve got an Ender 3 pro motherboard (not silent steppers) that you can have for shipping costs if you determine that’s the issue. If you do, pn me your zip code and I’ll let you know how much it would be.

    ~~I would test the ribbon cable to the extruder before replacing the mobo. That’s a more common failure. Plug one of the other stepper cables into the extruder port and see if it moves. If it does, the mobo is good and the cable Is bad. ~~

    Edit: I see you’ve done that.

    You might still try reflashing the board just to make sure it isn’t a software issue. But if you need one let me know.














  • seathru@lemmy.sdf.orgtoSteam@lemmy.mlHow do I schedule a steam download manually?
    link
    fedilink
    English
    arrow-up
    19
    arrow-down
    1
    ·
    edit-2
    3 months ago

    Probably not exactly what you’re looking for but I use a batch file to accomplish this (in linux but windows should be similar). For example:

    #!/bin/bash
    sleep 2h && steam
    sleep 8h && killall steam
    

    Executing that will wait 2 hours, start steam so it can download whatever it wants while I sleep, then shut steam down 6* hours later before other people start needing to use the internet.

    *maybe 8 hours, I can’t remember now if it runs commands sequentially or in parallel.

    Edit: better single line command for linux:

    (sleep 2h; steam) & (sleep 8hr; killall steam) &