octoprint plugins
Hi there so im getting octoprint installed with raspberry zero w is it worth buying a webcam if so does it have auto fail detect.
and any other plugins you recomend please let me know many thanks
Please help me out by downloading a model it's free and easy but really helps me out https://www.printables.com/@Hello_474427/models
RE: octoprint plugins
Some of my favorites are:
Backup & Restore
Camera Settings
Detailed Progress (excellent)
DetailedLayerProgress
Firmware Check
Firmware Updater
Fullscreen Plugin (Open webcam in fullscreen mode)
Octoprint is great...
RE: octoprint plugins
Thanks for your input may I ask what board your running it on
Some of my favorites are:
Backup & Restore
Camera Settings
Detailed Progress (excellent)
DetailedLayerProgress
Firmware Check
Firmware Updater
Fullscreen Plugin (Open webcam in fullscreen mode)
Octoprint is great...
Thanks for your input may I ask what board your running it on
Please help me out by downloading a model it's free and easy but really helps me out https://www.printables.com/@Hello_474427/models
RE: octoprint plugins
Pi 4 B 8GB.... I've had it a while 😀
RE: octoprint plugins
unfourntly all i can affors is the zero so my plugins are limited if you could please rate best to least needed i would much apreciate it
Pi 4 B 8GB.... I've had it a while 😀
Please help me out by downloading a model it's free and easy but really helps me out https://www.printables.com/@Hello_474427/models
RE: octoprint plugins
Backup & Restore
Detailed Progress (excellent)
DetailedLayerProgress
Firmware Check
Firmware Updater
RE: octoprint plugins
thanks very much
Backup & Restore
Detailed Progress (excellent)
DetailedLayerProgress
Firmware Check
Firmware Updater
Please help me out by downloading a model it's free and easy but really helps me out https://www.printables.com/@Hello_474427/models
RE: octoprint plugins
Since you said you have a Raspberry Pi Zero W (not Zero 2 W), I would not do too much in the way of plugins: a stock octoprint and printing will be pushing it near its limit.
RE:
unfourntly all i can affors is the zero so my plugins are limited if you could please rate best to least needed i would much apreciate it
You could use the pi zero to bridge the serial interface over wifi, run octoprint with all the plugins you want on another computer on your network, and connect it to the printer's ip address using the Network-Printing Plugin. That's how I do it.
RE: octoprint plugins
unfourntly all i can affors is the zero so my plugins are limited if you could please rate best to least needed i would much apreciate it
You could use the pi zero to bridge the serial interface over wifi, run octoprint with all the plugins you want on another computer on your network, and connect it to the printer's ip address using the Network-Printing Plugin. That's how I do it.
Thanks sounds confusing but I will look into it
Please help me out by downloading a model it's free and easy but really helps me out https://www.printables.com/@Hello_474427/models
RE: octoprint plugins
Thanks sounds confusing but I will look into it
It's pretty simple. Just install socat and run
socat TCP-LISTEN:12345,reuseaddr file:/dev/ttyAMA0,nonblock,waitlock=/var/run/ttyAMA0.lock
Make it a systemd service so it runs on startup...
[Unit] Description=USB Serial Bridge for MK3 Printer After=network-online.target Wants=network-online.target [Service] Type=simple ExecStart=socat TCP-LISTEN:12345,reuseaddr file:/dev/ttyAMA0,nonblock,waitlock=/var/run/ttyAMA0.lock Restart=always [Install] WantedBy=multi-user.target