Manage 12 to 20 3D printers with Repetier server.. best way ?
Hi there,
All is in the title ,
What is the best way to manage 12 to 20 3D printers with repetier server ? ( 3 different models of 3D printers so they will share between them gcodes)
Webcam is optional here but it would be great !
So if i go with some rpis i will be able to manage 2 printers with 2 cams per rpi (or 4 printers without cams), but the question is : would i be able to see all the rpi and printers (repetier server instances?) in the same "Home" (dashboard) ?
Or do i go with a small PC and linux and run all the 3D printers from it ? and possibly one webcams per 2 printers ? if it is possible what would be the optimal config of it ?
Thanks for the help !
All is in the title ,
What is the best way to manage 12 to 20 3D printers with repetier server ? ( 3 different models of 3D printers so they will share between them gcodes)
Webcam is optional here but it would be great !
So if i go with some rpis i will be able to manage 2 printers with 2 cams per rpi (or 4 printers without cams), but the question is : would i be able to see all the rpi and printers (repetier server instances?) in the same "Home" (dashboard) ?
Or do i go with a small PC and linux and run all the 3D printers from it ? and possibly one webcams per 2 printers ? if it is possible what would be the optimal config of it ?
Thanks for the help !
Comments
Then bundle 2-4 printers per pi for example. Use a powered usb hub so you can also have 4 webcams, just do not go crazy with resolution and connect everything with ethernet cables. wlan is quite slow so with 4 printers and webcam you want a good connection to your network. And PLEASE make sure to use a good 5.1-5.2V power source. Raspberries are sensitive to voltage drops on load and might disconnect usb and hence printers. With a good power unit it will not happen.
Bundle identical printer types if possible. Per node you can also share the gcode models between printers, so you upload to one and all can see and start the job.
So i think that for reliability purpose we will not use webcams, we don't really need them.
I will bundle 4 printers (same model as advised and it makes sense) per rpi and with a master PC to share gcodes.
Does a RPI makes sense for the master PC ? or something a bit more powerful to outsource intensive CPU tasks is preferable ?
Also I just have a little questions about how works repetier server with the direct print mode from the master PC:
Does this fully load the gcode on the printer before printing it ?
In the case the server disconnect during the print and the gcode is fully loaded on the printer i assume it will not be a problem and the printer(s) will keep printing.
Also does repetier server handle filament sensors ?
Concerning the pro version and the ability to customise the frontend i only saw color or logo customisation and i am wondering if i will be able to add some simple links / button in each instance's dashboard or even a drowpdown in the menu bar to navigate from one instance to another ? (I have a little web development background)
Thank you !
You can host projects on a master and they can contain gcodes, but for the print they get copied and analysed by the receiving pi. So network interruptions after print start are no problem here.
Customizations are more for printer vendors at that level. You would need to redo customizations every update. Exception is if you use the modules like described here:
https://www.repetier-server.com/manuals/programming/API/modules.html
these allow adding links/windows. But easiest way might be to have a frameset to navigate through the devices and call target in lower set.
So i am trying to setup the repetier server network,
I use a mac book pro late 2011 as the master PC, for testing purpose there is only one pi directly connected on the macbook pro ethernet port.
I am planning to use a multi-ethernet port connected to this mac to have all the pis connected to it. I would love to connect all the device on the router, but it is too far away from our printing room. so the mac is Connected via wifi and the pis connected to the mac via ethernet.
I can access the pi's repetier server from the mac connected to it thanks to internet sharing through, but i can't access it from another computer on the same WLAN network. (And i can access to the master server from any computer in the network)
My network knowledge are bit limited so i am really wondering how i can access the satellites servers from another computer than the master one.
Also last but not least, i try to access a shared folder of the master mac from the pi but i don't find any solution to do it. (i have google it)
Do you have any insight how can i setup that ?
As soon as i achieve to test that i think i will go with the pro version to setup the outsource cpu usage to the macbook, but this seems easier than the rest of the setup
Easiest solution might be to add nat to the mac so it offers the other pis under a port on the same ip as the wifi of the mac. No idea how to do this on a mac, but I guess google would help here. Alternatively make the ethernet part transparently visible in same network, but I never did this so also google.
The meshup of the pis with mac happens in the global settings->connectivity tab. On the pis add alternative servers as described in the manual. Here add the mac with it's ip and api key. Now all pis can select the projects from the mac as well as their local project folder. This requires pro version or active test period.
I have finally find a way to do almost exactly what we need.
For the people who might be interested here is exactly what i have done :
So i use a router (an old linksys wrt54g) that i have flashed with DD-WRT firmware,
This allow me to use my router as client bridge and connect it to the internet over wifi. (do not use subnets for your client router)
So the router is connected wireless on my AP and shares internet to all the device connected on the client router's ethernet ports: my master PC (macbook pro on wan port- just assign wan to switch in the FW) and all the pis.
So all the device even the ones after the client router are on the same network and accessible over wifi.
The main purpose here is to drop files over wifi to the master PC.
Just be sure that you have static IP enable on your AP, as we use DHCP directly from the AP.
The only thing i have not managed to do is to add a folder from the master PC in the pis. I am not even sure if it is possible with shared folder via afp or smb...
But still i can use projects from the master pc on the pis !
@p_vnct you seem to have solve a problem that eludes me. How are you accomplishing accessing projects from the master on the Pi's?.
Uploading gcodes is not done with websockets. It is a simple html post request with file. Session is added as extra header. Best is to check with our frontend in debug console->Network. Upload a gcode and you will see the headers and data that get send.
Same also works for websockets in chrome. Selecting the websocket in network allows you to see all the frames getting send and received. So if something is unclear or does not work just call the function and see what gets send.
But i finally i don't use projects to print files, as each time you will print a file from a project it will run the gcode render.. So not really optimal when you launch 4 of 5 prints at the same time , the pi can't handle those simultaneous tasks and print flawlessly.