this post was submitted on 21 Jan 2025
284 points (98.3% liked)

3DPrinting

16147 readers
197 users here now

3DPrinting is a place where makers of all skill levels and walks of life can learn about and discuss 3D printing and development of 3D printed parts and devices.

The r/functionalprint community is now located at: or [email protected]

There are CAD communities available at: [email protected] or [email protected]

Rules

If you need an easy way to host pictures, https://catbox.moe may be an option. Be ethical about what you post and donate if you are able or use this a lot. It is just an individual hosting content, not a company. The image embedding syntax for Lemmy is ![](URL)

Moderation policy: Light, mostly invisible

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 week ago (1 children)

I tried switching to LAN, it took multiple attempts and half a day to get my mini to show up as a choice for LAN mode in Bambu Studio. And then when shut off for the night, it was gone again in the morning. As in it couldn't be found. And now it's back to Studio not connecting to it.

I'm not sure what I can do besides using the sneaker net to run it.

[–] [email protected] 2 points 1 week ago (1 children)

I'm going to save your comment for now. I have a script that I use at work that helps with printer detection because we have a very similar issue. I'll try to post it here if I remember.

Running the script after launching Bambu studio helps with detection of the printer. Only caveat is that you have to run it every time you launch Bambu studio.

It's nothing malicious, I'll just post the code for you with the important bits that need to be changed noted.

[–] [email protected] 1 points 1 week ago (1 children)

Ok, I will look forward to looking at it.

[–] [email protected] 1 points 1 week ago* (last edited 1 week ago) (1 children)

Sorry for the delay, I've been quite busy.

Here's a link to the powershell script.

https://pastebin.com/RFtfLQNq

Take note of line 4. It is looking for a separate file called discover_printer.ini to retrieve printer information from. You can name the ini file whatever you want, just make sure to update the name within the powershell script.

Here's the link to the ini file. Not sure why I even bothered to put it there since it's so short lol.

https://pastebin.com/138TnASY

PRINTER1_DEV_NAME= The name you want the printer to show up as in Bambu Studio

PRINTER1_USN= Serial number of the printer

PRINTER1_IP= Local IP address of the printer

PRINTER1_CODE= The access code for the printer that is in lan mode

You can do multiple printers in one ini, just change the number at the end of "PRINTER" to the next number.

We use this for X1E models, but the script looks to be generic so I don't think it will matter which one you have.

I have only seen one person have an issue out of the 50 or so that use this script. It will connect from his machine but consistently fails to send files to the printer.

I just put the powershell script and the ini in the root directory of the Bambu Studio installation and make a shortcut to the ps1 script on the desktop. If you have powershell scripts locked down you may need to add a key at the bottom to allow it to run.

To use the script, open Bambu Studio first then run the script and browse to the device tab and click the + in the left hand menu to bring up discovered printers.

I hope it works for you.

[–] [email protected] 1 points 1 week ago

I'm not yet in a hurry. ;) Thank you for sharing!