Jump to content

solve the problem of reprint OBJECTS due to a power outage


dreamworker

Recommended Posts

Posted · solve the problem of reprint OBJECTS due to a power outage

Hello,

I don't know if you had this type of problem, but I hate to repeat to print an object only because I had a electric blackout. To solve this problem you can save in the Rom the number of line of model Gcode and decrement it in the printing phase. In order to tell to the system that the object is not printed yet, for blackout or for power cord accidental removing, I think you can implement a one bit variable, a flag, checked by the system in the startup operations. If the flag is one the system read the actual Gcode line number and continue to print from it else, if the flag is zero, the system display the main menu as usual.

 

  • Like 1
Link to post
Share on other sites

Posted · solve the problem of reprint OBJECTS due to a power outage

Except that the problem would be much more complex then that. As you would lose the whole machine state. After rebooting the machine you no longer know where the head is, what temperature you need to be, and you lost the 16 moves in the movement planner, as well as the exact position in the current movement.

And you would wear out the EEPROM pretty quickly.

 

  • Link to post
    Share on other sites

    • 1 year later...
    Posted · solve the problem of reprint OBJECTS due to a power outage

    Bump

    I am disappointed to have just found that in fact EEPROM does have a limited life.

    http://www.arduino.cc/en/Reference/EEPROMWrite

    Do you have any ideas what that maximum number of prints is before things start to fail - also the maximum number of layers?  If the EEPROM can just outlast some other weakest link then it should be less of a concern.

    It seems that all you would need to store is the file and the Z height to minimize writing too much to EEPROM while being able to resume the print satisfactorily.  The algorithm would be similar to that of OP.  One could optionally only setup resume on prints with print times over X or start recording resume details after some Z height.  By reducing to a Z level granularity, you would significantly reduce the EEPROM stress and at most be off by LAYER_HEIGHT for part of a layer.

    Completion Flag (or this could be encoded into the Z value if space is tight).

    Z Value for layer height.

    File name

    Pseudocode Upon machine on:

    shouldResume() {

       showResumeMenu();

       if (!AUTORESUME) {

           printer.Beep(10);

           while(nothingPressed) {}

           return RESUME; // RESUME is true or false based on the menu selection

       }

       return True;

    }

    resumePrint() {

         lowerTray();

         zeroPrintHead();

         heatBedAndExtruder();

         clearHead();

         fastForwardThroughGCodeUntilZ(ResumeValues.getLastZ());

         startPrinting();

    }

    if (!lastPrintCompleted()  && printer.getBedTemp() > SALVAGABLE_RESUME_BED_TEMP) {

     if (shouldResume()) {

         resumePrint();

     } else {

        clearResumeValues();

     }

    }

    User Options

    It should be something that in the menus can be optionally turned on/off (print tracking that is).

    It should be optionally to automatically resume as default.

    Where to contribute?

    https://github.com/Ultimaker/Ultimaker2Marlin - is this the main firmware repo and if not where is it?  I wouldn't mind taking a crack on a fork/branch.

  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.8 Stable released 🎉
        In the Cura 5.8 stable release, everyone can now tune their Z seams to look better than ever. Method series users get access to new material profiles, and the base Method model now has a printer profile, meaning the whole Method series is now supported in Cura!
        • 5 replies
      • Introducing the UltiMaker Factor 4
        We are happy to announce the next evolution in the UltiMaker 3D printer lineup: the UltiMaker Factor 4 industrial-grade 3D printer, designed to take manufacturing to new levels of efficiency and reliability. Factor 4 is an end-to-end 3D printing solution for light industrial applications
          • Thanks
          • Like
        • 3 replies
    ×
    ×
    • Create New...