Home » Diverse Projekte » 3d druck

Category Archives: 3d druck

Themen

3d & co

  • gcode marlin
  • octoprint via dockerĀ 
    • sudo ls /dev | grep ttyUSB|ttyACM == drucker
    • sudo v4l2-ctl --list-devices == cameras
    • multiple octoprint instances with portainer
      version: '2'
      volumes:
        octoprint-1:
        octoprint-2:
      services:
        ghost5:
          image: octoprint/octoprint
          ports:
          #Port to reach octoprint that will control PRINTER #1
            - 5001:80
          devices:
          #Printer that belongs to ghost5 container (PRINTER #1)
            - /dev/ttyUSB0:/dev/ttyUSB0
          #WebCam that belongs to ghost5 container (WEBCAM #1)
            - /dev/video0:/dev/video0
          volumes:
            - octoprint-1:/home/octoprint/.octoprint
          environment:
            #Define the quality of the stream from the WEBCAM #1
            - MJPG_STREAMER_INPUT=-n -r 1280x720 -f 30
            #Enable the stream of the WEBCAM #1
            - ENABLE_MJPG_STREAMER=true
          restart: always
        prusa:
          image: octoprint/octoprint
          ports:
          #Port to reach octoprint that will control PRINTER #2
            - 5002:80
          devices:
          #Printer that belongs to prusa container (PRINTER #2)
            - /dev/ttyACM0:/dev/ttyACM0
          #WebCam that belongs to prusa container (WEBCAM #2)
            - /dev/video2:/dev/video0
          volumes:
            - octoprint-2:/home/octoprint/.octoprint
          environment:
            #Define the quality of the stream from the WEBCAM #2
            - MJPG_STREAMER_INPUT=-n -r 1280x720 -f 30
            #Enable the stream of the WEBCAM #2
            - ENABLE_MJPG_STREAMER=true
          restart: always
  • prusa slicer
  • ultimake-cura slicerĀ