User Tools

Site Tools


3dprinter:wanhao-duplicator-i3-mini

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
3dprinter:wanhao-duplicator-i3-mini [2023/04/29 14:34] – ↷ Page moved from howto:wanhao-duplicator-i3-mini to 3dprinter:wanhao-duplicator-i3-mini Wulf Rajek3dprinter:wanhao-duplicator-i3-mini [2023/05/29 11:55] (current) – external edit 127.0.0.1
Line 48: Line 48:
  
  
-====== Octoprint setup ====== 
  
-https://community.octoprint.org/t/setting-up-octoprint-on-a-raspberry-pi-running-raspbian-or-raspberry-pi-os/2337 
- 
-<code> 
-cd ~ 
-sudo apt update 
-sudo apt install python3-pip python3-dev python3-setuptools python3-venv git libyaml-dev build-essential 
-mkdir OctoPrint && cd OctoPrint 
-python3 -m venv venv 
-source venv/bin/activate 
-</code> 
-In the virtual environment do: 
-<code> 
-pip install pip --upgrade 
-pip install octoprint 
-</code> 
-Add user to tty and dialout group to allow access to serial port: 
-<code> 
-sudo usermod -a -G tty $USER 
-sudo usermod -a -G dialout $USER 
- 
-#reboot required for the new group to take effect. For temporary access: 
-sudo chown $USER /dev/ttyUSB0 
-sudo chmod a+rw /dev/ttyUSB0  
-</code> 
- 
- 
-Start service: 
-<code> 
-~/OctoPrint/venv/bin/octoprint serve 
-</code> 
-Access it via http://localhost:5000 
- 
-Autostart service: 
-<code> 
-wget https://github.com/OctoPrint/OctoPrint/raw/master/scripts/octoprint.service 
-sudo mv octoprint.service /etc/systemd/system/octoprint.service 
-sudo sed -i 's/pi/'"$USER"'/g' /etc/systemd/system/octoprint.service 
-sudo systemctl enable octoprint.service 
-</code> 
- 
-Update: 
-<code> 
-cd ~/OctoPrint 
-python3 -m venv venv 
-source venv/bin/activate 
-pip install pip --upgrade 
-pip install setuptools --upgrade 
-pip install octoprint --upgrade 
-</code> 
- 
-====== Tuya Smart Plug ====== 
- 
-https://pypi.org/project/tinytuya/ 
-https://plugins.octoprint.org/plugins/tuyasmartplug/ 
- 
-====== Cura installation ====== 
- 
-Use cura as slicer (win/mac/linux) https://ultimaker.com/software/ultimaker-cura 
-- Install Cura autorotation and octoprint plugins https://marketplace.ultimaker.com/app/cura/plugins/fieldofview/OctoPrintPlugin  
- 
-Plugins: CustomSupports, CustomSupportCylinder, OctoPrintPlugin, Auto-Orientation 
- 
-{{howto:cura-icon-6.png?linkonly|Cura Icon.png}} 
- 
-<code> 
-sudo mkdir /opt/cura 
-sudo chown $USER:users /opt/cura 
-sudo chmod 775 /opt/cura 
-mv ~/Downloads/UltiMaker*.AppImage /opt/cura 
-chmod 775 /opt/cura/UltiMaker*.AppImage 
- 
-#download and copy cura icon to /opt/cura 
-cat >>> .local/share/applications/ultimaker-cura.desktop << EOF 
-[Desktop Entry] 
-Name=Ultimaker Cura 
-Exec=/opt/cura/UltiMaker-Cura-5.3.0-linux-modern.AppImage 
-Comment= 
-Terminal=false 
-Icon=/opt/cura/cura-icon-6.png 
-Type=Application 
-EOF 
- 
-</code> 
  
 ====== Webcam ====== ====== Webcam ======
Line 192: Line 108:
 |Reminder|https://cdn.thingiverse.com/assets/49/00/79/b7/9c/image.jpg| |Reminder|https://cdn.thingiverse.com/assets/49/00/79/b7/9c/image.jpg|
  
-====== Cura USB Printing ====== 
- 
-You can disable the USB Printing part of Cura and it will no longer touch your USB ports, causing issues with Octoprint on the same system. 
-  * Go to "Marketplace" 
-  * Go to the "Installed" tab 
-  * Scroll down to "USB Printing" 
-  * Uncheck the checkbox in front of it 
-  * Restart Cura 
- 
-====== OctoLapse ====== 
- 
-Better TimeLapse, independent of the built in timelapse. 
- 
-Auto config: 
-https://github.com/FormerLurker/Octolapse/wiki/V0.4---Automatic-Slicer-Configuration#if-you-are-using-cura-follow-these-steps 
- 
-Go to Settings -> Preferences and click Machine Settings of printer. 
-Paste at top of Start G-code: 
-<code> 
-; Script based on an original created by tjjfvi (https://github.com/tjjfvi) 
-; An up-to-date version of the tjjfvi's original script can be found 
-; here:  https://csi.t6.fyi/ 
-; Note - This script will only work in Cura V4.2 and above! 
-; --- Global Settings 
-; layer_height = {layer_height} 
-; smooth_spiralized_contours = {smooth_spiralized_contours} 
-; magic_mesh_surface_mode = {magic_mesh_surface_mode} 
-; machine_extruder_count = {machine_extruder_count} 
-; --- Single Extruder Settings 
-; speed_z_hop = {speed_z_hop} 
-; retraction_amount = {retraction_amount} 
-; retraction_hop = {retraction_hop} 
-; retraction_hop_enabled = {retraction_hop_enabled} 
-; retraction_enable = {retraction_enable} 
-; retraction_speed = {retraction_speed} 
-; retraction_retract_speed = {retraction_retract_speed} 
-; retraction_prime_speed = {retraction_prime_speed} 
-; speed_travel = {speed_travel} 
-</code> 
- 
-Taking photo before or at first layer: 
-https://github.com/FormerLurker/Octolapse/issues/677 
- 
-Add to the bottom of the very end of the Start G-code: 
-<code> 
-@OCTOLAPSE TAKE-SNAPSHOT 
-SNAP 
-</code> 
-or <code>G4 P1</code> 
  
-Add to very end of End G-Code: 
-<code> 
-G28 Z0 ;move Z to min endstops 
-</code> 
 ====== 3D Designs ====== ====== 3D Designs ======
  
3dprinter/wanhao-duplicator-i3-mini.1682775256.txt.gz · Last modified: 2023/05/29 11:53 (external edit)