<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DIY Archivi - MagiForge</title>
	<atom:link href="https://www.magiforge.it/category/diy/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.magiforge.it/category/diy/</link>
	<description>Your Hub for DIY &#38; 3D Innovations</description>
	<lastBuildDate>Fri, 14 Feb 2025 11:21:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>

<image>
	<url>https://www.magiforge.it/wp-content/uploads/2025/01/cropped-cropped-magiforge_logo-32x32.png</url>
	<title>DIY Archivi - MagiForge</title>
	<link>https://www.magiforge.it/category/diy/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Configure BLTouch in Ender 3 2018 using Klipper and Mainsail</title>
		<link>https://www.magiforge.it/how-to-configure-bltouch-in-ender-3-2018-using-klipper-and-mainsail/</link>
		
		<dc:creator><![CDATA[kobe]]></dc:creator>
		<pubDate>Fri, 14 Feb 2025 11:16:55 +0000</pubDate>
				<category><![CDATA[3D Printing]]></category>
		<category><![CDATA[DIY]]></category>
		<guid isPermaLink="false">https://www.magiforge.it/?p=93</guid>

					<description><![CDATA[<p>Introduction If you&#8217;re looking to improve your Ender 3&#8217;s print quality and speed, installing Klipper firmware with a BLTouch for auto bed leveling is a great choice. This guide walks you through the setup process step by step, ensuring a smooth installation. Why Use Klipper with BLTouch on an Ender 3? Prerequisites Before starting, ensure ... <a title="How to Configure BLTouch in Ender 3 2018 using Klipper and Mainsail" class="read-more" href="https://www.magiforge.it/how-to-configure-bltouch-in-ender-3-2018-using-klipper-and-mainsail/" aria-label="Read more about How to Configure BLTouch in Ender 3 2018 using Klipper and Mainsail">Read more</a></p>
<p>L'articolo <a href="https://www.magiforge.it/how-to-configure-bltouch-in-ender-3-2018-using-klipper-and-mainsail/">How to Configure BLTouch in Ender 3 2018 using Klipper and Mainsail</a> proviene da <a href="https://www.magiforge.it">MagiForge</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Introduction</h2>



<p>If you&#8217;re looking to improve your Ender 3&#8217;s print quality and speed, installing Klipper firmware with a BLTouch for auto bed leveling is a great choice. This guide walks you through the setup process step by step, ensuring a smooth installation.</p>



<h2 class="wp-block-heading">Why Use Klipper with BLTouch on an Ender 3?</h2>



<ul class="wp-block-list">
<li><strong>Faster Print Speeds</strong> – Klipper leverages your printer&#8217;s hardware for improved performance.</li>



<li><strong>Better Precision</strong> – The BLTouch sensor enables automatic bed leveling, ensuring optimal first-layer adhesion.</li>



<li><strong>Enhanced Features</strong> – Advanced macro support, better motion control, and remote monitoring options.</li>
</ul>



<h2 class="wp-block-heading">Prerequisites</h2>



<p>Before starting, ensure you have:</p>



<ul class="wp-block-list">
<li>A Creality Ender 3 with Klipper</li>



<li>A Raspberry Pi (or another host device) with Klipper installed and Mainsail</li>



<li>BLTouch Installed (genuine or clone)</li>



<li>USB cable to connect the printer to the Pi</li>



<li>Access to a terminal (SSH or Serial)</li>
</ul>



<h2 class="wp-block-heading">Step: 1 Configure BLTouch in Klipper</h2>



<ol start="1" class="wp-block-list">
<li>Import a default <strong>printer.cfg</strong> downloading it from <a href="https://github.com/Klipper3d/klipper/blob/master/config/printer-creality-ender3-2018.cfg">GitHub</a></li>



<li>Update the <strong>printer.cfg</strong> file:
<ul class="wp-block-list">
<li>I<strong>nclude <code>mainsail.cfg</code> in <code>printer.cfg</code></strong></li>



<li>Open your <strong><code>printer.cfg</code></strong> in Mainsail or via SSH:</li>
</ul>
</li>
</ol>



<pre class="wp-block-code"><code><code>nano ~/printer_data/config/printer.cfg</code></code></pre>



<ol start="1" class="wp-block-list">
<li>Add this line at the top (if it&#8217;s missing):</li>
</ol>



<pre class="wp-block-code"><code><code>&#91;include mainsail.cfg]</code></code></pre>



<p>3. Add the bltouch configuration:</p>



<ul class="wp-block-list">
<li>Under [stepper_z] replace the endstop_pin value to be like:</li>
</ul>



<pre class="wp-block-code"><code>endstop_pin: probe:z_virtual_endstop</code></pre>



<p>4. Add the BlTouch section</p>



<pre class="wp-block-code"><code><code>&#91;bltouch]</code>
<code>sensor_pin: ^PA1 </code>
<code>control_pin: PA0 </code>
<code>x_offset: -45 </code>
<code>y_offset: -10 </code>
<code>z_offset: 2.5</code></code></pre>



<p>5. Save the configuration and restart Klipper.</p>
<p>L'articolo <a href="https://www.magiforge.it/how-to-configure-bltouch-in-ender-3-2018-using-klipper-and-mainsail/">How to Configure BLTouch in Ender 3 2018 using Klipper and Mainsail</a> proviene da <a href="https://www.magiforge.it">MagiForge</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Install Armbian OS on Orange Pi Zero LTS</title>
		<link>https://www.magiforge.it/how-to-install-armbian-os-on-orange-pi-zero-lts/</link>
		
		<dc:creator><![CDATA[kobe]]></dc:creator>
		<pubDate>Fri, 24 Jan 2025 15:39:11 +0000</pubDate>
				<category><![CDATA[3D Printing]]></category>
		<category><![CDATA[DIY]]></category>
		<guid isPermaLink="false">https://www.magiforge.it/?p=48</guid>

					<description><![CDATA[<p>Step 1: Prepare the Necessary Step 2: Download the Armbian OS Step 3: Write the Armbian Image to the microSD Card Step 4: Insert the microSD Card into the Orange Pi Zero LTS Step 5: Access the Orange Pi Zero LTS Option 1: Via SSH (Headless Setup) Option 2: Connect via Serial Console (Optional) Step ... <a title="How to Install Armbian OS on Orange Pi Zero LTS" class="read-more" href="https://www.magiforge.it/how-to-install-armbian-os-on-orange-pi-zero-lts/" aria-label="Read more about How to Install Armbian OS on Orange Pi Zero LTS">Read more</a></p>
<p>L'articolo <a href="https://www.magiforge.it/how-to-install-armbian-os-on-orange-pi-zero-lts/">How to Install Armbian OS on Orange Pi Zero LTS</a> proviene da <a href="https://www.magiforge.it">MagiForge</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading"><strong>Step 1: Prepare the Necessary</strong></h3>



<ol class="wp-block-list">
<li><strong>Orange Pi Zero LTS</strong> board.</li>



<li>A <strong>microSD card</strong> (at least 8GB; a Class 10 or higher is recommended).</li>



<li><strong>microSD card reader</strong> to connect the card to your computer.</li>



<li>A <strong>power supply</strong> compatible with the Orange Pi Zero LTS (5V/2A recommended).</li>



<li>Ethernet cable (optional, for headless setup).</li>



<li>A computer for downloading and flashing the Armbian OS.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 2: Download the Armbian OS</strong></h3>



<ol class="wp-block-list">
<li>Go to the official Armbian website: <a href="https://www.armbian.com">https://www.armbian.com</a>.</li>



<li>Search for <strong>Orange Pi Zero LTS</strong> in the supported devices list.</li>



<li>Download the recommended Armbian image (choose a version based on your preference: CLI-only or desktop).
<ul class="wp-block-list">
<li>Example: <code>Armbian_XX_OrangePiZero_LTS_*.img.xz</code>.</li>
</ul>
</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 3: Write the Armbian Image to the microSD Card</strong></h3>



<ol class="wp-block-list">
<li>Insert the microSD card into your computer.</li>



<li>Download and install a disk imaging tool, such as:
<ul class="wp-block-list">
<li><strong>balenaEtcher</strong>: <a>https://www.balena.io/etcher/</a></li>



<li><strong>Rufus</strong> (Windows): <a href="https://rufus.ie/">https://rufus.ie/</a></li>
</ul>
</li>



<li>Flash the Armbian image:
<ul class="wp-block-list">
<li>Open the imaging tool.</li>



<li>Select the downloaded <code>.img.xz</code> file.</li>



<li>Choose your microSD card as the target.</li>



<li>Click <strong>Flash</strong> or <strong>Start</strong> to write the image.</li>
</ul>
</li>



<li>Wait until the process completes, then safely eject the microSD card.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 4: Insert the microSD Card into the Orange Pi Zero LTS</strong></h3>



<ol class="wp-block-list">
<li>Insert the prepared microSD card into the Orange Pi Zero LTS.</li>



<li>Connect the power supply to the board to power it on.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 5: Access the Orange Pi Zero LTS</strong></h3>



<h4 class="wp-block-heading"><strong>Option 1: Via SSH (Headless Setup)</strong></h4>



<ol class="wp-block-list">
<li>Connect the Orange Pi Zero LTS to your network using an Ethernet cable.</li>



<li>Discover its IP address using:
<ul class="wp-block-list">
<li>Your router’s admin panel.</li>



<li>Tools like <strong>Advanced IP Scanner</strong> or <strong>Fing</strong> (see the section in the previous guide).</li>
</ul>
</li>



<li>Use an SSH client like <strong>PuTTY</strong>:
<ul class="wp-block-list">
<li>Hostname: The IP address of the Orange Pi.</li>



<li>Port: <code>22</code>.</li>



<li>Username: <code>root</code>.</li>



<li>Password: <code>1234</code> (default).</li>
</ul>
</li>



<li>Upon first login, you’ll be prompted to change the root password and create a new user.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h4 class="wp-block-heading"><strong>Option 2: Connect via Serial Console (Optional)</strong></h4>



<ol class="wp-block-list">
<li>Use the debug UART pins on the Orange Pi Zero LTS to connect via a USB-to-serial adapter.</li>



<li>Access the serial console using a terminal tool like <strong>minicom</strong> or <strong>PuTTY</strong>.
<ul class="wp-block-list">
<li>Baud rate: <code>115200</code>.</li>
</ul>
</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 6: Initial Configuration</strong></h3>



<ol class="wp-block-list">
<li>On first boot, complete the initial setup:
<ul class="wp-block-list">
<li>Set a new root password.</li>



<li>Create a non-root user.</li>



<li>Configure timezone, language, and other settings.</li>
</ul>
</li>



<li>Update the system</li>
</ol>



<pre class="wp-block-code"><code><code>sudo apt update &amp;&amp; sudo apt upgrade -y</code></code></pre>



<p></p>
<p>L'articolo <a href="https://www.magiforge.it/how-to-install-armbian-os-on-orange-pi-zero-lts/">How to Install Armbian OS on Orange Pi Zero LTS</a> proviene da <a href="https://www.magiforge.it">MagiForge</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Connect via SSH Using PuTTY</title>
		<link>https://www.magiforge.it/how-to-connect-via-ssh-using-putty/</link>
		
		<dc:creator><![CDATA[kobe]]></dc:creator>
		<pubDate>Fri, 24 Jan 2025 15:19:39 +0000</pubDate>
				<category><![CDATA[3D Printing]]></category>
		<category><![CDATA[DIY]]></category>
		<guid isPermaLink="false">https://www.magiforge.it/?p=46</guid>

					<description><![CDATA[<p>Step 1: Download and Install PuTTY Step 2: Obtain the IP Address of Your Server Step 3: Open PuTTY Step 4: Configure the Connection How to Connect via SSH Using PuTTY Follow this guide to establish an SSH connection to a remote server: Step 1: Download and Install PuTTY Step 2: Obtain the IP Address ... <a title="How to Connect via SSH Using PuTTY" class="read-more" href="https://www.magiforge.it/how-to-connect-via-ssh-using-putty/" aria-label="Read more about How to Connect via SSH Using PuTTY">Read more</a></p>
<p>L'articolo <a href="https://www.magiforge.it/how-to-connect-via-ssh-using-putty/">How to Connect via SSH Using PuTTY</a> proviene da <a href="https://www.magiforge.it">MagiForge</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading"><strong>Step 1: Download and Install PuTTY</strong></h3>



<ol class="wp-block-list">
<li>Go to the official PuTTY website: <a href="https://www.putty.org">https://www.putty.org</a>.</li>



<li>Download the appropriate installer for your operating system (Windows/Linux/Mac).</li>



<li>Install PuTTY by following the installation instructions.</li>
</ol>



<h3 class="wp-block-heading"><strong>Step 2: Obtain the IP Address of Your Server</strong></h3>



<ol class="wp-block-list">
<li>Check your server&#8217;s documentation or settings for its IP address.</li>



<li>If you can’t find the IP address, see <strong>IP Discovery Tools</strong> below:
<ul class="wp-block-list">
<li><strong>Advanced IP Scanner</strong> (Windows)
<ul class="wp-block-list">
<li>A free tool to scan your network and list all connected devices with their IP addresses.</li>



<li><a href="https://www.advanced-ip-scanner.com">https://www.advanced-ip-scanner.com</a></li>
</ul>
</li>



<li><strong>Angry IP Scanner</strong> (Cross-Platform)</li>
</ul>
</li>
</ol>



<h3 class="wp-block-heading"><strong>Step 3: Open PuTTY</strong></h3>



<ol class="wp-block-list">
<li>Launch PuTTY from your applications or desktop shortcut.</li>
</ol>



<h3 class="wp-block-heading"><strong>Step 4: Configure the Connection</strong></h3>



<ol class="wp-block-list">
<li>In the PuTTY Configuration window:
<ul class="wp-block-list">
<li><strong>Host Name (or IP address):</strong> Enter the server&#8217;s IP address.</li>



<li><strong>Port:</strong> Typically, SSH uses port <code>22</code> (unless your server uses a custom port).</li>



<li><strong>Connection type:</strong> Ensure <strong>SSH</strong> is selected.</li>
</ul>
</li>



<li>(Optional) Save the session:
<ul class="wp-block-list">
<li>Enter a name under <strong>Saved Sessions</strong> and click <strong>Save</strong>.</li>
</ul>
</li>
</ol>



<h3 class="wp-block-heading"><strong>How to Connect via SSH Using PuTTY</strong></h3>



<p>Follow this guide to establish an SSH connection to a remote server:</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 1: Download and Install PuTTY</strong></h3>



<ol class="wp-block-list">
<li>Go to the official PuTTY website: <a href="https://www.putty.org">https://www.putty.org</a>.</li>



<li>Download the appropriate installer for your operating system (Windows/Linux/Mac).</li>



<li>Install PuTTY by following the installation instructions.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 2: Obtain the IP Address of Your Server</strong></h3>



<ol class="wp-block-list">
<li>Check your server&#8217;s documentation or settings for its IP address.</li>



<li>If you can’t find the IP address, see <strong>IP Discovery Tools</strong> below.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 3: Open PuTTY</strong></h3>



<ol class="wp-block-list">
<li>Launch PuTTY from your applications or desktop shortcut.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 4: Configure the Connection</strong></h3>



<ol class="wp-block-list">
<li>In the PuTTY Configuration window:
<ul class="wp-block-list">
<li><strong>Host Name (or IP address):</strong> Enter the server&#8217;s IP address.</li>



<li><strong>Port:</strong> Typically, SSH uses port <code>22</code> (unless your server uses a custom port).</li>



<li><strong>Connection type:</strong> Ensure <strong>SSH</strong> is selected.</li>
</ul>
</li>



<li>(Optional) Save the session:
<ul class="wp-block-list">
<li>Enter a name under <strong>Saved Sessions</strong> and click <strong>Save</strong>.</li>
</ul>
</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><strong>Step 5: Connect to the Server</strong></h3>



<ol class="wp-block-list">
<li>Click <strong>Open</strong> to initiate the connection.</li>



<li>If it’s your first time connecting to the server, PuTTY will display a <strong>security alert</strong> about the server&#8217;s host key. Click <strong>Yes</strong> to proceed.</li>
</ol>



<h3 class="wp-block-heading"><strong>Step 6: Log In to the Server</strong></h3>



<ol class="wp-block-list">
<li>A terminal window will appear asking for a <strong>username</strong>. Enter the username provided by your server administrator.</li>



<li>Next, enter the <strong>password</strong> when prompted. (Note: The password field may not show anything as you type; this is normal for security reasons.)</li>



<li>Once authenticated, you’ll have access to the server via SSH.</li>
</ol>
<p>L'articolo <a href="https://www.magiforge.it/how-to-connect-via-ssh-using-putty/">How to Connect via SSH Using PuTTY</a> proviene da <a href="https://www.magiforge.it">MagiForge</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
