Jump to content

Anet A8 printer does not connect to cura


Recommended Posts

Posted · Anet A8 printer does not connect to cura

With Cura running, select "Market Place" at the upper right of the screen.  When the dialog comes up (it can take a bit of time to load) select "Installed" and scroll down to "USB Printing" and make sure it is checked.

You can also do a search around here for the same topic but with different printers.  The problem does come up once in a while and there might be a couple of other things you can look at.

  • Link to post
    Share on other sites

    • 1 month later...
    Posted · Anet A8 printer does not connect to cura

    I solved the problem in my situation. I have Windows 10 and Anet A8 printer.

    I looked a Python script:

    C:\Program Files\Ultimaker Cura 4.10.0\plugins\USBPrinting\AutoDetectBaudJob.py

    There is a loop where Cura sends "M105" gcode to the printer and waits response.

                    while timeout_time > time():
                        line = serial.readline()
                        if b"ok" in line and b"T:" in line:
                            self.setResult(baud_rate)
                            Logger.log(... 
                            serial.close() # close serial port ...
                            return

     

    But "ok" and "T:" are not on the same line. That's why the condition never come true. I made a change like that:

                    line = b""
                    while timeout_time > time():
                        line += serial.readline()
                        if b"ok" in line and b"T:" in line:
                            self.setResult(baud_rate)
                            Logger.log(...
                            serial.close() # close serial port ...
                            return

     

    No other change was needed. The connection begun to play.

    • Like 2
    Link to post
    Share on other sites

    • 1 year later...
    Posted · Anet A8 printer does not connect to cura

    If you are on a Windows system you might have to "share" the folder with yourself.  You might also have to alter the "Security" setting to allow yourself access to the folder.

    Right-click on the main Cura installation folder and select "Properties".  On the "Security" tab make sure you have access to alter items in the folder.  On the "Share" tab, share the folder.

    • Like 1
    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

      • 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
      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 26 replies
    ×
    ×
    • Create New...