<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									DIY CNC 3D Printer Robot Forum - Recent Topics				            </title>
            <link>https://diycnc.ca/community/</link>
            <description>DIYCNC Customer Support &amp; Tech Sharing for Canadian DIY Hobbyists and Makers.</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 30 Aug 2026 14:44:10 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>VFD Spindle Technical Support</title>
                        <link>https://diycnc.ca/community/technical-questions/vfd-spindle-technical-support/</link>
                        <pubDate>Sun, 30 Aug 2026 13:27:00 +0000</pubDate>
                        <description><![CDATA[VFD Spindle Technical Support]]></description>
                        <content:encoded><![CDATA[<p>VFD Spindle Technical Support</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Ray</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/technical-questions/vfd-spindle-technical-support/</guid>
                    </item>
				                    <item>
                        <title>Interface and Communication Tech Discussion</title>
                        <link>https://diycnc.ca/community/product-questions-and-technical-exchange/interface-and-communication-tech-discussion/</link>
                        <pubDate>Sat, 29 Aug 2026 15:17:39 +0000</pubDate>
                        <description><![CDATA[Interface and Communication Tech Discussion. Catagory Link:]]></description>
                        <content:encoded><![CDATA[<p>Interface and Communication Tech Discussion. Catagory Link: https://diycnc.ca/product-category/electronic/interface-communication/</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Ray</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/product-questions-and-technical-exchange/interface-and-communication-tech-discussion/</guid>
                    </item>
				                    <item>
                        <title>Raspberry Pi</title>
                        <link>https://diycnc.ca/community/product-questions-and-technical-exchange/raspberry-pi/</link>
                        <pubDate>Thu, 27 Aug 2026 17:20:18 +0000</pubDate>
                        <description><![CDATA[Raspberry Pi Discussion]]></description>
                        <content:encoded><![CDATA[<p>Raspberry Pi Discussion</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Frank</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/product-questions-and-technical-exchange/raspberry-pi/</guid>
                    </item>
				                    <item>
                        <title>ESP32-S3 CAM</title>
                        <link>https://diycnc.ca/community/product-questions-and-technical-exchange/esp32-s3-cam-ov5640/</link>
                        <pubDate>Sat, 22 Aug 2026 15:02:49 +0000</pubDate>
                        <description><![CDATA[Product Link:
CAM: OV5640
Test environment:  Arduino IDE

Select &#039;ESP32S3 Dev Module&#039;
Enable PSRAM (ODI PSRAM)

Sample code: (Refer: Exsamples -&gt; ESP32 -&gt; Camera -&gt; CameraWebS...]]></description>
                        <content:encoded><![CDATA[<p>Product Link: <a href="https://diycnc.ca/product/esp32-s3-cam-dev-board-with-ov5640/" target="_blank" rel="noopener">https://diycnc.ca/product/esp32-s3-cam-dev-board-with-ov5640/</a></p>
<p>CAM: OV5640</p>
<p>Test environment:  Arduino IDE</p>
<ul>
<li>Select 'ESP32S3 Dev Module'</li>
<li>Enable PSRAM (ODI PSRAM)</li>
</ul>
<p>Sample code: (Refer: Exsamples -&gt; ESP32 -&gt; Camera -&gt; CameraWebServer</p>
<pre contenteditable="false">#include &lt;Arduino.h&gt;
#include "esp_camera.h"
#include &lt;WiFi.h&gt;

const char *ssid = "wifi name";
const char *password = "wifi password";

#define PWDN_GPIO_NUM    -1
#define RESET_GPIO_NUM   -1
#define XCLK_GPIO_NUM    15
#define SIOD_GPIO_NUM    4
#define SIOC_GPIO_NUM    5
#define Y9_GPIO_NUM      16
#define Y8_GPIO_NUM      17
#define Y7_GPIO_NUM      18
#define Y6_GPIO_NUM      12
#define Y5_GPIO_NUM      10
#define Y4_GPIO_NUM       8
#define Y3_GPIO_NUM       9
#define Y2_GPIO_NUM      11
#define VSYNC_GPIO_NUM    6
#define HREF_GPIO_NUM     7
#define PCLK_GPIO_NUM    13

void startCameraServer();

void setup() {
  Serial.begin(115200);
  Serial.setDebugOutput(true);
  Serial.println();

  Serial.println("=== ESP32-S3 Camera ===");
  if (psramFound()) {
    Serial.println("PSRAM: YES");
    Serial.printf("PSRAM size: %u bytes\n", ESP.getPsramSize());
    Serial.printf("Free PSRAM: %u bytes\n", ESP.getFreePsram());
  } else {
    Serial.println("PSRAM: NO");
  }

  camera_config_t config;
  config.ledc_channel = LEDC_CHANNEL_0;
  config.ledc_timer = LEDC_TIMER_0;
  config.pin_d0 = Y2_GPIO_NUM;
  config.pin_d1 = Y3_GPIO_NUM;
  config.pin_d2 = Y4_GPIO_NUM;
  config.pin_d3 = Y5_GPIO_NUM;
  config.pin_d4 = Y6_GPIO_NUM;
  config.pin_d5 = Y7_GPIO_NUM;
  config.pin_d6 = Y8_GPIO_NUM;
  config.pin_d7 = Y9_GPIO_NUM;
  config.pin_xclk = XCLK_GPIO_NUM;
  config.pin_pclk = PCLK_GPIO_NUM;
  config.pin_vsync = VSYNC_GPIO_NUM;
  config.pin_href = HREF_GPIO_NUM;
  config.pin_sccb_sda = SIOD_GPIO_NUM;
  config.pin_sccb_scl = SIOC_GPIO_NUM;
  config.pin_pwdn = PWDN_GPIO_NUM;
  config.pin_reset = RESET_GPIO_NUM;
  config.xclk_freq_hz = 20000000;
  config.frame_size = FRAMESIZE_XGA;
  config.pixel_format = PIXFORMAT_JPEG;
  config.jpeg_quality = 8;
  config.fb_location = CAMERA_FB_IN_PSRAM;
  config.fb_count = 2;
  config.grab_mode = CAMERA_GRAB_LATEST;

  Serial.println("Initializing camera...");
  esp_err_t err = esp_camera_init(&amp;config);
  if (err != ESP_OK) {
    Serial.printf("Camera init failed with error 0x%x\n", err);
    return;
  }

  sensor_t *s = esp_camera_sensor_get();
  if (s == NULL) {
    Serial.println("ERROR: Camera sensor not found");
    return;
  }

  Serial.printf("Camera PID: %u (0x%04X)\n", s-&gt;id.PID, s-&gt;id.PID);

  if (s-&gt;id.PID == OV5640_PID) {
    Serial.println("Camera: OV5640");
    s-&gt;set_hmirror(s, 1);
    s-&gt;set_brightness(s, 1);
    s-&gt;set_saturation(s, -2);
  }

  Serial.printf("Frame size: %d\n", s-&gt;status.framesize);
  Serial.printf("JPEG quality: %d\n", s-&gt;status.quality);
  Serial.printf("Free PSRAM after camera init: %u bytes\n", ESP.getFreePsram());

  WiFi.begin(ssid, password);
  WiFi.setSleep(false);
  Serial.print("WiFi connecting");

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }

  Serial.println();
  Serial.println("WiFi connected");

  startCameraServer();

  Serial.print("Camera Ready! Use 'http://");
  Serial.print(WiFi.localIP());
  Serial.println("' to connect");
}

void loop() {
  delay(10000);
}</pre>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Ray</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/product-questions-and-technical-exchange/esp32-s3-cam-ov5640/</guid>
                    </item>
				                    <item>
                        <title>On Sale Events</title>
                        <link>https://diycnc.ca/community/main-forum/on-sale-events/</link>
                        <pubDate>Fri, 21 Aug 2026 01:13:47 +0000</pubDate>
                        <description><![CDATA[Use this topic to show the on sale events]]></description>
                        <content:encoded><![CDATA[<p>Use this topic to show the on sale events</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/main-forum/on-sale-events/</guid>
                    </item>
				                    <item>
                        <title>Availability of Water Cooled CNC Spindle</title>
                        <link>https://diycnc.ca/community/spindle/availability-of-water-cooled-cnc-spindle/</link>
                        <pubDate>Thu, 20 Aug 2026 20:57:12 +0000</pubDate>
                        <description><![CDATA[I would like to order the Water-Cooled CNC Spindle Motor 220V SKU: 5227-2.2-20-235-80.
It says “Availability: 1 in stock (can be backordered)”.
Can you confirm you have the item in stock a...]]></description>
                        <content:encoded><![CDATA[<p>I would like to order the Water-Cooled CNC Spindle Motor 220V SKU: 5227-2.2-20-235-80.</p>
<p>It says “Availability: 1 in stock (can be backordered)”.</p>
<p>Can you confirm you have the item in stock as I don’t want to order it and wait for a long period of time to receive it as I need asap to replace my spindle that just died on me.</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>dlaps</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/spindle/availability-of-water-cooled-cnc-spindle/</guid>
                    </item>
				                    <item>
                        <title>Alumimum extrusion machining</title>
                        <link>https://diycnc.ca/community/technical-questions/alumimum-extrusion-machining/</link>
                        <pubDate>Thu, 20 Aug 2026 14:31:32 +0000</pubDate>
                        <description><![CDATA[Hi,
We are trying to order some 2080V aluminum extrusions. In addition to tapping, we need some special machining on the ends. How can we get a quote for this?
thanks,
Joy]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>We are trying to order some 2080V aluminum extrusions. In addition to tapping, we need some special machining on the ends. How can we get a quote for this?</p>
<p>thanks,</p>
<p>Joy</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>martin</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/technical-questions/alumimum-extrusion-machining/</guid>
                    </item>
				                    <item>
                        <title>CNC Controller Wireless Probe</title>
                        <link>https://diycnc.ca/community/cnc-build-logs/cnc-controller-wireless-probe/</link>
                        <pubDate>Tue, 21 Jul 2026 18:27:02 +0000</pubDate>
                        <description><![CDATA[Using this topic to describe, discuss any question regarding remote controller, wirelss probe etc]]></description>
                        <content:encoded><![CDATA[<p>Using this topic to describe, discuss any question regarding remote controller, wirelss probe etc</p>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Ray</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/cnc-build-logs/cnc-controller-wireless-probe/</guid>
                    </item>
				                    <item>
                        <title>Shopping Experience</title>
                        <link>https://diycnc.ca/community/main-discussion/shopping-experience/</link>
                        <pubDate>Sun, 12 Jul 2026 14:39:34 +0000</pubDate>
                        <description><![CDATA[Basic Award Points Rules:

Only registered users can collect and redeem points.
Points can be redeemed for shopping cart items only; shipping fee cannot be redeemed.
100 reward points = ...]]></description>
                        <content:encoded><![CDATA[<p><strong>Basic Award Points Rules:</strong></p>
<ol>
<li>Only registered users can collect and redeem points.</li>
<li>Points can be redeemed for shopping cart items only; shipping fee cannot be redeemed.</li>
<li>100 reward points = CAD $1.00</li>
<li>There are three statuses shown in the Points history:
<ul>
<li><strong>Pending</strong>: The order is being processed, but has not yet been delivered (completed).</li>
<li><strong>Ready</strong>: Points are available for use.</li>
<li><strong>Redeemed</strong>: Points have been used.</li>
</ul>
</li>
</ol>
<p>The table below shows the points collection rules:</p>
<table class="bridata-table">
<thead>
<tr>
<th>Rule ID</th>
<th>Collections</th>
<th>Points Collected</th>
<th>Note</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Purchases</td>
<td>Sub-total amount (tax and shipping fee are not calculated)</td>
<td>For example, spent $125.12, then 125 points will be collected.</td>
</tr>
<tr>
<td>2</td>
<td>Accumulate Rewards. Every 5 Orders</td>
<td>500</td>
<td>Customers who place 5 orders will receive an additional 500 reward points, in addition to the points earned from each order.</td>
</tr>
<tr>
<td>3</td>
<td>In store review and feedback</td>
<td>100 / Per product</td>
<td>Reward points for sharing experiences that are valuable to other customers, regardless of whether the feedback is positive or negative.</td>
</tr>
<tr>
<td>4</td>
<td>Social/Community Engagement</td>
<td>200 / Per topic</td>
<td>Reward points for sharing shopping experiences, whether positive or negative, provided that the feedback includes a product or store link on social media.</td>
</tr>
<tr>
<td>5</td>
<td>Compensatory</td>
<td>Unspecified</td>
<td>Some points may be awarded to compensate for unreasonable delays, service issues, etc.</td>
</tr>
<tr>
<td>6</td>
<td>Referrals</td>
<td>1000</td>
<td>Existing customers will receive reward points for successfully referring a new customer.</td>
</tr>
<tr>
<td>7</td>
<td>Missing Product</td>
<td>300</td>
<td>Rewards will be granted for suggesting missing products relevant to our business.</td>
</tr>
<tr>
<td>8</td>
<td>Others</td>
<td>Unspecified</td>
<td> </td>
</tr>
</tbody>
</table>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Frank</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/main-discussion/shopping-experience/</guid>
                    </item>
				                    <item>
                        <title>Voron 2.4 Parts and Kit</title>
                        <link>https://diycnc.ca/community/diy-projects/voron-2-4-parts-and-kit/</link>
                        <pubDate>Thu, 18 Jun 2026 03:35:07 +0000</pubDate>
                        <description><![CDATA[I am using this topic to discuss Voron 2.4 Parts and Kit
Parts list:



Category
Description
Qty
DIY Notes




Fasteners
M5x40 SHCS
22
 


 
M5x30 BHCS
22
 


 
M5x...]]></description>
                        <content:encoded><![CDATA[<p>I am using this topic to discuss Voron 2.4 Parts and Kit</p>
<p>Parts list:</p>
<table class="bridata-table" style="width: stretch">
<thead>
<tr>
<th width="160">Category</th>
<th width="431">Description</th>
<th width="260">Qty</th>
<th width="260">DIY Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>Fasteners</td>
<td>M5x40 SHCS</td>
<td>22</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M5x30 BHCS</td>
<td>22</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M5x16 BHCS</td>
<td>35</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M5x10 BHCS</td>
<td>35</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M5 Hexnut</td>
<td>16</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M5 Post-install T-nut</td>
<td>68</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M5 1mm Shim</td>
<td>42</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M4x6 BHCS</td>
<td>7</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M4 Knurled Nut (DIN 466-B)</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x50 SHCS</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x40 SHCS</td>
<td>30</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x30 SHCS</td>
<td>25</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x25 SHCS</td>
<td>6</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x20 SHCS</td>
<td>22</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x16 SHCS</td>
<td>20</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x12 SHCS</td>
<td>41</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x10 FHCS</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x6 FHCS</td>
<td>8</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x8 SHCS</td>
<td>187</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3x6 BHCS</td>
<td>11</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3 Hexnut</td>
<td>6</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3 Post-install T-nut</td>
<td>103</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3 Hammer Head T-nuts</td>
<td>60</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3 Washer</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M3 Threaded Insert (M3x5x4)</td>
<td>110</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>M2x10 Self-tapping Screw</td>
<td>18</td>
<td> </td>
</tr>
<tr>
<td>Motion</td>
<td>GT2 80T Pulley (5mm ID 6mm W)</td>
<td>4</td>
<td>
<p>Motion Parts Kit::</p>
<p>https://diycnc.ca/product/voron-2-4-full-set-motion-parts-kit/</p>
</td>
</tr>
<tr>
<td> </td>
<td>GT2 20T Pulley (5mm ID 6mm W)</td>
<td>3</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 20T Pulley (5mm ID 9mm W)</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 16T Pulley (5mm ID 6mm W)</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 20T Toothed Idler (5mm ID 6mm W)</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 20T Toothed Idler (5mm ID 9mm W)</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>F695 Bearing</td>
<td>20</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>625 Bearing</td>
<td>12</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Ø 5x60mm Shaft,  D Cut</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Ø 5x35mm Shaft (trim to size)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 Belt Loop (6mm W) - 188mm</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 Open Belt LL-2GT-9 (9mm wide) - 1200mm</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>BMG Extruder Components Kit</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><a href="https://diycnc.ca/product/mgn9-linear-guideway-guide-rail/" target="_blank" rel="noopener">Linear Rail MGN9H 400mm</a></td>
<td>6</td>
<td>Refer:  https://diycnc.ca/product/voron-2-4-linear-rail-kit/</td>
</tr>
<tr>
<td> </td>
<td><a href="https://diycnc.ca/product/mgn12-linear-guide-rail/" target="_blank" rel="noopener">Linear Rail MGN12H 400mm</a></td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>GT2 Open Belt LL-2GT-6 (6mm wide) - 2000mm</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td>Electronics</td>
<td>Omron D2F-01L Micro Switch</td>
<td>3</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Inductive Probe (See sourcing guide)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Hotend Kit (24V)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>50x50x15 Centrifugal Fan (24V)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>40x40x10 Axial Fan (24V)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Mini 12864 Display</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>ZF Rocker Switch DPST 16A ON-OFF</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>TycoElectronics 10EGG1-1 Filtered Power Inlet (NA/UK)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>TycoElectronics 10EGG1-2 Filtered Power Inlet (EU)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Medium Blow Fuse 5x20mm 4A (220V mains)</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Medium Blow Fuse 5x20mm 8A (120v mains)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Keystone CAT6 Insert (Optional)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>60x60x20 Fan (24V)</td>
<td>3</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Controller with 7+ Stepper outputs</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>TMC2209 Stepper Motor Driver</td>
<td>7</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>USB Cable for selected controller</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>RaspberryPi 3B+ or better</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Mean Well LRS-200-24 PSU</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Mean Well RS-25-5 PSU</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Omron G3A-210B-DC5 SSR</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>DIN Rail Mount Bracket for G3A SSR</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>BAT85 Diode</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>C13 Power Cord</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Thermal Fuse (150C)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><a href="https://diycnc.ca/product/voron-stepper-motors-set/" target="_blank" rel="noopener">NEMA17 Motor 17HS19-2004S</a></td>
<td>6</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><a href="https://diycnc.ca/product/voron-stepper-motors-set/" target="_blank" rel="noopener">NEMA14 Motor 36STH20-1004AHG</a></td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td>Vibration Management</td>
<td>Rubber Foot (1.5x.75", 38x19mm)</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td>Frame</td>
<td>OpenBuilds Billet Angle Corner Connector (2020)</td>
<td>4</td>
<td>Refer Frame Kit: https://diycnc.ca/product/3d-printer-framing-diy-kit-for-voron-2-4/</td>
</tr>
<tr>
<td> </td>
<td>Misumi HFSB5-2020-340</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>DIN 3 Rails (35mm W) - 465mm</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Misumi HFSB5-2020-430</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Misumi HFSB5-2020-450</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Misumi HFSB5-2020-470-TPW</td>
<td>10</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Misumi HFSB5-2020-530-LCP-RCP</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td>Misc</td>
<td>Fume Extractor Carbon Filter Element</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>4mm Threaded Bowden Coupler</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>3M VHB Tape 5952</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Loctite Blue Threadlocker Stick</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Mobil EP1/2 Grease</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Single Sided Foam Tape 1mm Thick (5m)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Single Sided Foam Tape 3mm Thick (5m)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Ã˜6x3mm Neodimium Magnet</td>
<td>8</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><a href="https://diycnc.ca/product/teflon-tube-ptfe-and-fittings-connector-for-3d-printer/" target="_blank" rel="noopener">PTFE Tube (4mm OD 3mm ID) - 1000mm</a></td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><a href="https://diycnc.ca/product/teflon-tube-ptfe-and-fittings-connector-for-3d-printer/" target="_blank" rel="noopener">PTFE Tube (4mm OD 2mm ID) - 300mm</a></td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td>Cables</td>
<td>Nylon Cable Ties  Small (.07-.10",  1.8-2.7mm wide)</td>
<td>42</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>18AWG Wire (10ft/3m total)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>20AWG High-flex Wire (10ft/3m total)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>22-24AWG High-flex Wire (min 19 strand)(250ft/76m total)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Female Spade Crimp Terminal (18-22AWG, .250", 6.35mm)</td>
<td>7</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Fork Spade Crimp Terminal (18-22AWG,#10)</td>
<td>5</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Ring Crimp Terminal (16-22AWG, #6)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>JST XH Connector,  3 Position Male/Female Pair plus Pins</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Connector kit matching your controller choice (usually JST-XH)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Crimp Ferrule Kit (covering sizes 24AWG to 18AWG)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Connector Plug 4 Position</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Connector Plug 3 Position</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Connector Plug 2 Position</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Connector Receptacle 4 Position</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Connector Receptacle 3 Position</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Connector Receptacle 2 Position</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MLX Power Receptacle 3 Position (bed wiring)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MLX Power Plug 3 Position</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MLX Male Pin</td>
<td>6</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MLX Female Pin</td>
<td>6</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Female Pin</td>
<td>40</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>MicroFit3 Male Pin</td>
<td>40</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>WAGO 221-415 Lever-Nuts</td>
<td>3</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>10x10 Generic Cable Chain (405mm)</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>10x15 Generic Cable Chain (545mm)</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td>Panels</td>
<td>Coroplast Sheet - 469x469x4 mm</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Coroplast Sheet - 483x503x4 mm</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Acrylic Sheet Clear - 241.5x503x3 mm</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Acrylic Sheet Clear - 483x503x3 mm</td>
<td>2</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Acrylic Sheet Clear - 483x483x3 mm</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td>Buildplate</td>
<td>MIC6 5/16" Plate - 14"x14"</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Adhesive Magnetic Sheet - 14"x14"</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Spring Steel Flexible Print Surface - 14"x14"</td>
<td>1</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Keenovo Silicone AC Heater w/ thermistor - 300x300mm (650W)</td>
<td>1</td>
<td> </td>
</tr>
</tbody>
</table>]]></content:encoded>
						                            <category domain="https://diycnc.ca/community/"></category>                        <dc:creator>Ray</dc:creator>
                        <guid isPermaLink="true">https://diycnc.ca/community/diy-projects/voron-2-4-parts-and-kit/</guid>
                    </item>
							        </channel>
        </rss>
		