latest :)
This commit is contained in:
parent
00e3706bbc
commit
69c5e6e00c
35
components/hardware/electrics/glands/glands-scad-glands.md
Normal file
35
components/hardware/electrics/glands/glands-scad-glands.md
Normal file
@ -0,0 +1,35 @@
|
||||
// Function to create the cable gland
|
||||
module cable_gland(thread_diameter, cable_diameter, thread_length, gland_length) {
|
||||
union() {
|
||||
// Main body of the gland
|
||||
cylinder(h = gland_length, d = thread_diameter + 8, center = true); // Oversized cylinder for the outer gland part
|
||||
// Create threading section
|
||||
translate([0, 0, -gland_length/2])
|
||||
threaded_part(thread_diameter, thread_length);
|
||||
|
||||
// Hole for the cable
|
||||
translate([0,0,-gland_length/2])
|
||||
cable_hole(cable_diameter, gland_length + 10);
|
||||
}
|
||||
}
|
||||
|
||||
// Function to create threading part
|
||||
module threaded_part(diameter, length) {
|
||||
// Simple cylinder for threading part
|
||||
cylinder(h = length, d = diameter, center = false);
|
||||
}
|
||||
|
||||
// Function to create the cable hole
|
||||
module cable_hole(diameter, hole_length) {
|
||||
difference() {
|
||||
cylinder(h = hole_length, d = diameter, center = false);
|
||||
}
|
||||
}
|
||||
|
||||
// Example parameters for an M20 gland
|
||||
cable_gland(
|
||||
thread_diameter = 20, // Thread diameter (M20)
|
||||
cable_diameter = 10, // Assume a cable diameter of 10mm
|
||||
thread_length = 10, // Thread length of 10mm
|
||||
gland_length = 30 // Total length of the gland
|
||||
);
|
||||
35
components/hardware/electrics/glands/glands-scad.md
Normal file
35
components/hardware/electrics/glands/glands-scad.md
Normal file
@ -0,0 +1,35 @@
|
||||
// Function to create the cable gland
|
||||
module cable_gland(thread_diameter, cable_diameter, thread_length, gland_length) {
|
||||
union() {
|
||||
// Main body of the gland
|
||||
cylinder(h = gland_length, d = thread_diameter + 8, center = true); // Oversized cylinder for the outer gland part
|
||||
// Create threading section
|
||||
translate([0, 0, -gland_length/2])
|
||||
threaded_part(thread_diameter, thread_length);
|
||||
|
||||
// Hole for the cable
|
||||
translate([0,0,-gland_length/2])
|
||||
cable_hole(cable_diameter, gland_length + 10);
|
||||
}
|
||||
}
|
||||
|
||||
// Function to create threading part
|
||||
module threaded_part(diameter, length) {
|
||||
// Simple cylinder for threading part
|
||||
cylinder(h = length, d = diameter, center = false);
|
||||
}
|
||||
|
||||
// Function to create the cable hole
|
||||
module cable_hole(diameter, hole_length) {
|
||||
difference() {
|
||||
cylinder(h = hole_length, d = diameter, center = false);
|
||||
}
|
||||
}
|
||||
|
||||
// Example parameters for an M20 gland
|
||||
cable_gland(
|
||||
thread_diameter = 20, // Thread diameter (M20)
|
||||
cable_diameter = 10, // Assume a cable diameter of 10mm
|
||||
thread_length = 10, // Thread length of 10mm
|
||||
gland_length = 30 // Total length of the gland
|
||||
);
|
||||
3
components/hardware/electrics/glands/glands-scad.osrl
Normal file
3
components/hardware/electrics/glands/glands-scad.osrl
Normal file
@ -0,0 +1,3 @@
|
||||
[% osr-ai model:"gpt-4o" skip:false gui:true logLevel:"warn" filters:"code,trim" dst:"${SRC_DIR}/${SRC_NAME}-glands.md" %]
|
||||
Create a set of metric cable glands, for SCAD
|
||||
[% osr-ai-end %]
|
||||
35
components/hardware/electrics/glands/glands.scad
Normal file
35
components/hardware/electrics/glands/glands.scad
Normal file
@ -0,0 +1,35 @@
|
||||
// Function to create the cable gland
|
||||
module cable_gland(thread_diameter, cable_diameter, thread_length, gland_length) {
|
||||
union() {
|
||||
// Main body of the gland
|
||||
cylinder(h = gland_length, d = thread_diameter + 8, center = true); // Oversized cylinder for the outer gland part
|
||||
// Create threading section
|
||||
translate([0, 0, -gland_length/2])
|
||||
threaded_part(thread_diameter, thread_length);
|
||||
|
||||
// Hole for the cable
|
||||
translate([0,0,-gland_length/2])
|
||||
cable_hole(cable_diameter, gland_length + 10);
|
||||
}
|
||||
}
|
||||
|
||||
// Function to create threading part
|
||||
module threaded_part(diameter, length) {
|
||||
// Simple cylinder for threading part
|
||||
cylinder(h = length, d = diameter, center = false);
|
||||
}
|
||||
|
||||
// Function to create the cable hole
|
||||
module cable_hole(diameter, hole_length) {
|
||||
difference() {
|
||||
cylinder(h = hole_length, d = diameter, center = false);
|
||||
}
|
||||
}
|
||||
|
||||
// Example parameters for an M20 gland
|
||||
cable_gland(
|
||||
thread_diameter = 20, // Thread diameter (M20)
|
||||
cable_diameter = 10, // Assume a cable diameter of 10mm
|
||||
thread_length = 10, // Thread length of 10mm
|
||||
gland_length = 25 // Total length of the gland
|
||||
);
|
||||
12
components/hardware/electrics/glands/readme-glands.md
Normal file
12
components/hardware/electrics/glands/readme-glands.md
Normal file
@ -0,0 +1,12 @@
|
||||
| **Type** | **Outer Diameter of Nut (mm)** | **Height (mm)** | **Matching Wire Gauge (AWG)** | **Matching Wire Diameter Range (mm)** | **Bore/Drill Hole Diameter (mm)** |
|
||||
|:--------:|:------------------------------:|:---------------:|:-----------------------------:|:-------------------------------------:|:---------------------------------:|
|
||||
| PG7 | 18 | 24 | 20-24 | 2.5 - 6.0 | 12.5 |
|
||||
| PG9 | 22 | 26 | 18-22 | 4.0 - 8.0 | 15.2 |
|
||||
| PG11 | 24 | 29 | 16-20 | 5.0 - 10.0 | 18.6 |
|
||||
| PG13.5 | 27 | 32 | 14-18 | 6.0 - 12.0 | 20.4 |
|
||||
| PG16 | 30 | 34 | 12-16 | 10.0 - 14.0 | 22.5 |
|
||||
| PG21 | 36 | 36 | 10-14 | 13.0 - 18.0 | 28.3 |
|
||||
| PG29 | 47 | 49 | 8-12 | 18.0 - 25.0 | 37.0 |
|
||||
| PG36 | 57 | 55 | 4-8 | 22.0 - 32.0 | 47.0 |
|
||||
| PG42 | 65 | 60 | 1-4 | 30.0 - 38.0 | 54.0 |
|
||||
| PG48 | 70 | 65 | 0-2 | 37.0 - 44.0 | 59.3 |
|
||||
12
components/hardware/electrics/glands/readme.md
Normal file
12
components/hardware/electrics/glands/readme.md
Normal file
@ -0,0 +1,12 @@
|
||||
| **Type** | **Outer Diameter of Nut (mm)** | **Height (mm)** | **Matching Wire Gauge (AWG)** | **Matching Wire Diameter Range (mm)** | **Bore/Drill Hole Diameter (mm)** |
|
||||
|:--------:|:------------------------------:|:---------------:|:-----------------------------:|:-------------------------------------:|:---------------------------------:|
|
||||
| PG7 | 18 | 24 | 20-24 | 2.5 - 6.0 | 12.5 |
|
||||
| PG9 | 22 | 26 | 18-22 | 4.0 - 8.0 | 15.2 |
|
||||
| PG11 | 24 | 29 | 16-20 | 5.0 - 10.0 | 18.6 |
|
||||
| PG13.5 | 27 | 32 | 14-18 | 6.0 - 12.0 | 20.4 |
|
||||
| PG16 | 30 | 34 | 12-16 | 10.0 - 14.0 | 22.5 |
|
||||
| PG21 | 36 | 36 | 10-14 | 13.0 - 18.0 | 28.3 |
|
||||
| PG29 | 47 | 49 | 8-12 | 18.0 - 25.0 | 37.0 |
|
||||
| PG36 | 57 | 55 | 4-8 | 22.0 - 32.0 | 47.0 |
|
||||
| PG42 | 65 | 60 | 1-4 | 30.0 - 38.0 | 54.0 |
|
||||
| PG48 | 70 | 65 | 0-2 | 37.0 - 44.0 | 59.3 |
|
||||
9
components/hardware/electrics/glands/readme.osrl
Normal file
9
components/hardware/electrics/glands/readme.osrl
Normal file
@ -0,0 +1,9 @@
|
||||
[% osr-ai model:"gpt-4o" skip:false gui:true logLevel:"warn" filters:"code,trim" dst:"${SRC_DIR}/${SRC_NAME}-glands.md" %]
|
||||
Create a markdown table of cable gland dimensions
|
||||
- type, eg: PG11, ...
|
||||
- outer diameter of the nut
|
||||
- height
|
||||
- matching wire gauge, AWG
|
||||
- matching wire diameter range, in mm
|
||||
- bore/drill hole diameter
|
||||
[% osr-ai-end %]
|
||||
BIN
extrusion/components/101_lucy/700_HousingLucy/700_Housing.SLDASM
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/700_Housing.SLDASM
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/700_Housing.x_t
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/700_Housing.x_t
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/701_Front_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/701_Front_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/702_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/702_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/703_Bottom_x1_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/703_Bottom_x1_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/704_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/704_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/705_End_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/705_End_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/706_Back_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/706_Back_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/707_Feet_x4_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/707_Feet_x4_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/708_End_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/708_End_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/709_End_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/709_End_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/710_Base_x1_10mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/710_Base_x1_10mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/711_Divider_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/711_Divider_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/712_Clamp_Mount_x2_10mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/712_Clamp_Mount_x2_10mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/101_lucy/700_HousingLucy/socket head cap screw_din.sldprt
(Stored with Git LFS)
Normal file
BIN
extrusion/components/101_lucy/700_HousingLucy/socket head cap screw_din.sldprt
(Stored with Git LFS)
Normal file
Binary file not shown.
124
extrusion/components/101_lucy/bazar/output.html
Normal file
124
extrusion/components/101_lucy/bazar/output.html
Normal file
@ -0,0 +1,124 @@
|
||||
<p>Mold Clamp for Semi Automatic injection on OSR extruders</p>
|
||||
<h3 id="features">Features</h3>
|
||||
<ul>
|
||||
<li>Rigid, flexible and modular framework – enabling hacking and extensions</li>
|
||||
<li>Maximum mold size 18cm x 16cm</li>
|
||||
<li>Pressure: 4 tons</li>
|
||||
<li>Uses ball screw and 750 gearbox motor</li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr />
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br />
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
<div style="clear:both" />
|
||||
</p>
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<div class="ty-vendor-plans">
|
||||
<div class="ty-grid-list__item" style="float: left;border: 1px gray;">
|
||||
<h4 id="authors">Specification</h4>
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Variant</th>
|
||||
<th>Mini – v1.0</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>60Kg</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Dimensions</td>
|
||||
<td>70 x 50 x 40 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Screw Diameter</td>
|
||||
<td>20mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mold Size</td>
|
||||
<td>18 x 15 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Voltage</td>
|
||||
<td>220V</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Stroke</td>
|
||||
<td>12cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>License</td>
|
||||
<td><a href="https://ohwr.org/cernohl" style="color:#4C74B9">CERN Open Source Hardware License</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Motor Power</td>
|
||||
<td>750W</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ty-grid-list__item" style="float: left;text-align: left;border: 1px gray;">
|
||||
|
||||
<h4 id="authors">Authors</h4>
|
||||
<ul>
|
||||
<li><a href="https://osr-plastic.org" style="color:#4C74B9">PlasticHub S.L.</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Alan van de Glind</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h2 id="components">Components</h2>
|
||||
<h3 id="resources">Resources</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p><a href="https://files.osr-plastic.org/files/osr-machines/extrusion/components/101_lucy"> Download </a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="https://assets.osr-plastic.org/machines//extrusion/components/101_lucy/resources/edrawings.html"> 3D Preview </a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/extrusion/components/101_lucy"> Source Code Repository </a></p>
|
||||
<h3>Payment Terms</h3>
|
||||
<p><b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br />
|
||||
<b>Machines manufactured in-house</b> <br />
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).</p>
|
||||
<hr />
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
144
extrusion/components/101_lucy/bazar/raw.html
Normal file
144
extrusion/components/101_lucy/bazar/raw.html
Normal file
@ -0,0 +1,144 @@
|
||||
|
||||
|
||||
|
||||
Mold Clamp for Semi Automatic injection on OSR extruders
|
||||
|
||||
### Features
|
||||
|
||||
- Rigid, flexible and modular framework – enabling hacking and extensions
|
||||
- Maximum mold size 18cm x 16cm
|
||||
- Pressure: 4 tons
|
||||
- Uses ball screw and 750 gearbox motor
|
||||
|
||||
<hr/>
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br/>
|
||||
<hr/>
|
||||
|
||||
|
||||
<div style="clear:both"/>
|
||||
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<div class="ty-vendor-plans">
|
||||
<div class="ty-grid-list__item" style="float: left;border: 1px gray;">
|
||||
<h4 id="authors">Specification</h4>
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Variant</th>
|
||||
<th>Mini – v1.0</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>60Kg</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Dimensions</td>
|
||||
<td>70 x 50 x 40 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Screw Diameter</td>
|
||||
<td>20mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mold Size</td>
|
||||
<td>18 x 15 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Voltage</td>
|
||||
<td>220V</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Stroke</td>
|
||||
<td>12cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>License</td>
|
||||
<td><a href="https://ohwr.org/cernohl" style="color:#4C74B9">CERN Open Source Hardware License</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Motor Power</td>
|
||||
<td>750W</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ty-grid-list__item" style="float: left;text-align: left;border: 1px gray;">
|
||||
|
||||
<h4 id="authors">Authors</h4>
|
||||
<ul>
|
||||
<li><a href="https://osr-plastic.org" style="color:#4C74B9">PlasticHub S.L.</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Alan van de Glind</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
## Components
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Resources
|
||||
|
||||
- [ Download ](https://files.osr-plastic.org/files/osr-machines/extrusion/components/101_lucy)
|
||||
|
||||
- [ 3D Preview ](https://assets.osr-plastic.org/machines//extrusion/components/101_lucy/resources/edrawings.html)
|
||||
- [ Source Code Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/extrusion/components/101_lucy)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3>Payment Terms</h3>
|
||||
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
|
||||
<b>Machines manufactured in-house</b> <br/>
|
||||
|
||||
|
||||
70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png"/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
BIN
extrusion/components/102_lucy-mini/700_Housing/700_Housing.SLDASM
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/700_Housing.SLDASM
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/700_Housing.x_t
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/700_Housing.x_t
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/701_Front_x1_1mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/701_Front_x1_1mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/702_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/702_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/703_Bottom_x1_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/703_Bottom_x1_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/704_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/704_Long_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/705_End_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/705_End_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/706_Back_x1_1mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/706_Back_x1_1mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/707_Feet_x4_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/707_Feet_x4_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/708_End_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/708_End_x1_2mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/709_End_x2_1mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/709_End_x2_1mm_INOX.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/710_Base_x1_10mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/710_Base_x1_10mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/711_Divider_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/711_Divider_x2_4mm_FERRO.SLDPRT
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
extrusion/components/102_lucy-mini/700_Housing/socket head cap screw_din.sldprt
(Stored with Git LFS)
Normal file
BIN
extrusion/components/102_lucy-mini/700_Housing/socket head cap screw_din.sldprt
(Stored with Git LFS)
Normal file
Binary file not shown.
132
extrusion/components/102_lucy-mini/bazar/output.html
Normal file
132
extrusion/components/102_lucy-mini/bazar/output.html
Normal file
@ -0,0 +1,132 @@
|
||||
<p>Mold Clamp for Semi Automatic injection on OSR extruders</p>
|
||||
<h3 id="features">Features</h3>
|
||||
<ul>
|
||||
<li>Rigid, flexible and modular framework – enabling hacking and extensions</li>
|
||||
<li>Maximum mold size 18cm x 16cm</li>
|
||||
<li>Pressure: 4 tons</li>
|
||||
<li>Uses ball screw and 750 gearbox motor</li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr />
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br />
|
||||
</p>
|
||||
<hr />
|
||||
<div style="clear:both">
|
||||
<h4 style="text-align: center;">Dimensions</h4>
|
||||
<a href="https://assets.osr-plastic.org/machines//products/extrusion/components/102_lucy-mini/drawings/dimensions.jpg" style="color:#4C74B9">
|
||||
<p style="text-align: center">
|
||||
<img style="max-height:500px" src="https://assets.osr-plastic.org/machines//products/extrusion/components/102_lucy-mini/drawings/dimensions.jpg">
|
||||
</img>
|
||||
</p>
|
||||
</a>
|
||||
<hr />
|
||||
</div>
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<div class="ty-vendor-plans">
|
||||
<div class="ty-grid-list__item" style="float: left;border: 1px gray;">
|
||||
<h4 id="authors">Specification</h4>
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Variant</th>
|
||||
<th>Mini – v1.0</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>60Kg</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Dimensions</td>
|
||||
<td>70 x 50 x 40 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Screw Diameter</td>
|
||||
<td>20mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mold Size</td>
|
||||
<td>18 x 15 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Voltage</td>
|
||||
<td>220V</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Stroke</td>
|
||||
<td>12cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>License</td>
|
||||
<td><a href="https://ohwr.org/cernohl" style="color:#4C74B9">CERN Open Source Hardware License</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Motor Power</td>
|
||||
<td>750W</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ty-grid-list__item" style="float: left;text-align: left;border: 1px gray;">
|
||||
|
||||
<h4 id="authors">Authors</h4>
|
||||
<ul>
|
||||
<li><a href="https://osr-plastic.org" style="color:#4C74B9">PlasticHub S.L.</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Jason Knight</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Alan van de Glind</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h2 id="components">Components</h2>
|
||||
<h3 id="resources">Resources</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p><a href="https://files.osr-plastic.org/files/osr-machines/extrusion/components/102_lucy-mini"> Download </a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="https://assets.osr-plastic.org/machines//extrusion/components/102_lucy-mini/resources/edrawings.html"> 3D Preview </a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/extrusion/components/102_lucy-mini"> Source Code Repository </a></p>
|
||||
<h3>Payment Terms</h3>
|
||||
<p><b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br />
|
||||
<b>Machines manufactured in-house</b> <br />
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).</p>
|
||||
<hr />
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
152
extrusion/components/102_lucy-mini/bazar/raw.html
Normal file
152
extrusion/components/102_lucy-mini/bazar/raw.html
Normal file
@ -0,0 +1,152 @@
|
||||
|
||||
|
||||
|
||||
Mold Clamp for Semi Automatic injection on OSR extruders
|
||||
|
||||
### Features
|
||||
|
||||
- Rigid, flexible and modular framework – enabling hacking and extensions
|
||||
- Maximum mold size 18cm x 16cm
|
||||
- Pressure: 4 tons
|
||||
- Uses ball screw and 750 gearbox motor
|
||||
|
||||
<hr/>
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br/>
|
||||
<hr/>
|
||||
|
||||
|
||||
<div style="clear:both"> <h4 style="text-align: center;">Dimensions</h4>
|
||||
<a href="https://assets.osr-plastic.org/machines//products/extrusion/components/102_lucy-mini/drawings/dimensions.jpg" style="color:#4C74B9">
|
||||
<p style="text-align: center">
|
||||
<img style="max-height:500px" src="https://assets.osr-plastic.org/machines//products/extrusion/components/102_lucy-mini/drawings/dimensions.jpg">
|
||||
</img></p>
|
||||
</a>
|
||||
<hr/>
|
||||
</div>
|
||||
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<div class="ty-vendor-plans">
|
||||
<div class="ty-grid-list__item" style="float: left;border: 1px gray;">
|
||||
<h4 id="authors">Specification</h4>
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Variant</th>
|
||||
<th>Mini – v1.0</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>60Kg</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Dimensions</td>
|
||||
<td>70 x 50 x 40 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Screw Diameter</td>
|
||||
<td>20mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mold Size</td>
|
||||
<td>18 x 15 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Voltage</td>
|
||||
<td>220V</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Stroke</td>
|
||||
<td>12cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>License</td>
|
||||
<td><a href="https://ohwr.org/cernohl" style="color:#4C74B9">CERN Open Source Hardware License</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Motor Power</td>
|
||||
<td>750W</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ty-grid-list__item" style="float: left;text-align: left;border: 1px gray;">
|
||||
|
||||
<h4 id="authors">Authors</h4>
|
||||
<ul>
|
||||
<li><a href="https://osr-plastic.org" style="color:#4C74B9">PlasticHub S.L.</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Jason Knight</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Alan van de Glind</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
## Components
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Resources
|
||||
|
||||
- [ Download ](https://files.osr-plastic.org/files/osr-machines/extrusion/components/102_lucy-mini)
|
||||
|
||||
- [ 3D Preview ](https://assets.osr-plastic.org/machines//extrusion/components/102_lucy-mini/resources/edrawings.html)
|
||||
- [ Source Code Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/extrusion/components/102_lucy-mini)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3>Payment Terms</h3>
|
||||
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
|
||||
<b>Machines manufactured in-house</b> <br/>
|
||||
|
||||
|
||||
70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png"/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
126
extrusion/components/202_FilamentHousing/bazar/output.html
Normal file
126
extrusion/components/202_FilamentHousing/bazar/output.html
Normal file
@ -0,0 +1,126 @@
|
||||
<p>Filament Cooling unit</p>
|
||||
<h3 id="featuresdetails">Features / Details</h3>
|
||||
<ul>
|
||||
<li>Uses 3 CPU coolers (120mm)</li>
|
||||
<li>Flexible housing, ideal for hacking</li>
|
||||
<li>3 Pulleys included</li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr />
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br />
|
||||
</p>
|
||||
<hr />
|
||||
<div style="clear:both">
|
||||
<h4 style="text-align: center;">Dimensions</h4>
|
||||
<a href="https://assets.osr-plastic.org/machines//products/extrusion/components/202_FilamentHousing/drawings/dimensions.jpg" style="color:#4C74B9">
|
||||
<p style="text-align: center">
|
||||
<img style="max-height:500px" src="https://assets.osr-plastic.org/machines//products/extrusion/components/202_FilamentHousing/drawings/dimensions.jpg">
|
||||
</img>
|
||||
</p>
|
||||
</a>
|
||||
<hr />
|
||||
</div>
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<div class="ty-vendor-plans">
|
||||
<div class="ty-grid-list__item" style="float: left;border: 1px gray;">
|
||||
<h4 id="authors">Specification</h4>
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th />
|
||||
<th />
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Version</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Variant</td>
|
||||
<td>Standard</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>12kG</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Dimensions</td>
|
||||
<td>60 x 20 x 20 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Voltage</td>
|
||||
<td>220V</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Input Flake Size</td>
|
||||
<td>Small - Medium</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>License</td>
|
||||
<td><a href="https://ohwr.org/cernohl" style="color:#4C74B9">CERN Open Source Hardware License</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ty-grid-list__item" style="float: left;text-align: left;border: 1px gray;">
|
||||
|
||||
<h4 id="authors">Authors</h4>
|
||||
<ul>
|
||||
<li><a href="https://osr-plastic.org" style="color:#4C74B9">PlasticHub S.L.</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Jason Knight</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h2 id="components">Components</h2>
|
||||
<h3 id="resources">Resources</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p><a href="https://files.osr-plastic.org/files/osr-machines/extrusion/components/202_FilamentHousing"> Download </a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="https://assets.osr-plastic.org/machines//extrusion/components/202_FilamentHousing/resources/edrawings.html"> 3D Preview </a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/extrusion/components/202_FilamentHousing"> Source Code Repository </a></p>
|
||||
<h3>Payment Terms</h3>
|
||||
<p><b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br />
|
||||
<b>Machines manufactured in-house</b> <br />
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).</p>
|
||||
<hr />
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
145
extrusion/components/202_FilamentHousing/bazar/raw.html
Normal file
145
extrusion/components/202_FilamentHousing/bazar/raw.html
Normal file
@ -0,0 +1,145 @@
|
||||
|
||||
|
||||
|
||||
Filament Cooling unit
|
||||
|
||||
### Features / Details
|
||||
- Uses 3 CPU coolers (120mm)
|
||||
- Flexible housing, ideal for hacking
|
||||
- 3 Pulleys included
|
||||
|
||||
<hr/>
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br/>
|
||||
<hr/>
|
||||
|
||||
|
||||
<div style="clear:both"> <h4 style="text-align: center;">Dimensions</h4>
|
||||
<a href="https://assets.osr-plastic.org/machines//products/extrusion/components/202_FilamentHousing/drawings/dimensions.jpg" style="color:#4C74B9">
|
||||
<p style="text-align: center">
|
||||
<img style="max-height:500px" src="https://assets.osr-plastic.org/machines//products/extrusion/components/202_FilamentHousing/drawings/dimensions.jpg">
|
||||
</img></p>
|
||||
</a>
|
||||
<hr/>
|
||||
</div>
|
||||
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<div class="ty-vendor-plans">
|
||||
<div class="ty-grid-list__item" style="float: left;border: 1px gray;">
|
||||
<h4 id="authors">Specification</h4>
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th/>
|
||||
<th/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Version</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Variant</td>
|
||||
<td>Standard</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Weight</td>
|
||||
<td>12kG</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Dimensions</td>
|
||||
<td>60 x 20 x 20 cm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Voltage</td>
|
||||
<td>220V</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Input Flake Size</td>
|
||||
<td>Small - Medium</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>License</td>
|
||||
<td><a href="https://ohwr.org/cernohl" style="color:#4C74B9">CERN Open Source Hardware License</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ty-grid-list__item" style="float: left;text-align: left;border: 1px gray;">
|
||||
|
||||
<h4 id="authors">Authors</h4>
|
||||
<ul>
|
||||
<li><a href="https://osr-plastic.org" style="color:#4C74B9">PlasticHub S.L.</a></li>
|
||||
<li><a href="https://www.mandin.earth/" style="color:#4C74B9">Jason Knight</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
## Components
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Resources
|
||||
|
||||
- [ Download ](https://files.osr-plastic.org/files/osr-machines/extrusion/components/202_FilamentHousing)
|
||||
|
||||
- [ 3D Preview ](https://assets.osr-plastic.org/machines//extrusion/components/202_FilamentHousing/resources/edrawings.html)
|
||||
- [ Source Code Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/extrusion/components/202_FilamentHousing)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3>Payment Terms</h3>
|
||||
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
|
||||
<b>Machines manufactured in-house</b> <br/>
|
||||
|
||||
|
||||
70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png"/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
BIN
sheetpress/cassandra-edczmax-rc1/cad/framework/720_GroundPlate_x1_12mm_FERRO.SLDPRT
(Stored with Git LFS)
BIN
sheetpress/cassandra-edczmax-rc1/cad/framework/720_GroundPlate_x1_12mm_FERRO.SLDPRT
(Stored with Git LFS)
Binary file not shown.
64
shredder-ext/Obelix-XM-300/bazar/output.html
Normal file
64
shredder-ext/Obelix-XM-300/bazar/output.html
Normal file
@ -0,0 +1,64 @@
|
||||
<h2 id="industrialdualaxisshredder">Industrial Dual Axis Shredder</h2>
|
||||
<p>This is an import from a popular shredder manufacturer and has been slightly updated to EU norms.
|
||||
Several updates are not in the pictures yet.</p>
|
||||
<h3 id="featuresampdetails">Features & Details</h3>
|
||||
<ul>
|
||||
<li>Jam detection with auto reverse using a PLC</li>
|
||||
<li>Motor overheat protection</li>
|
||||
<li>Status lights</li>
|
||||
<li>Emergency button</li>
|
||||
<li>After sales service</li>
|
||||
<li>Auto-Stop after idleness</li>
|
||||
<li>Shredder blade are CNC cut, forged, annealed, heat-treated, tempered and ground</li>
|
||||
<li>Crushes plastic, rubber, glass, thin metals and Aluminum up to 1.5mm</li>
|
||||
</ul>
|
||||
<p><strong>Lead Time</strong> : 2-3 weeks</p>
|
||||
<p>
|
||||
<hr />
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br />
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
<div style="clear:both" />
|
||||
</p>
|
||||
<h2 id="components">Components</h2>
|
||||
<h3 id="resources">Resources</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p><a href="https://files.osr-plastic.org/files/osr-machines/shredder-ext/Obelix-XM-300/media/tests">Tests</a></p>
|
||||
<h3>Payment Terms</h3>
|
||||
<p><b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br />
|
||||
<b>Machines manufactured in-house</b> <br />
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).</p>
|
||||
<hr />
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
91
shredder-ext/Obelix-XM-300/bazar/raw.html
Normal file
91
shredder-ext/Obelix-XM-300/bazar/raw.html
Normal file
@ -0,0 +1,91 @@
|
||||
|
||||
|
||||
|
||||
## Industrial Dual Axis Shredder
|
||||
|
||||
This is an import from a popular shredder manufacturer and has been slightly updated to EU norms.
|
||||
Several updates are not in the pictures yet.
|
||||
|
||||
### Features & Details
|
||||
|
||||
|
||||
- Jam detection with auto reverse using a PLC
|
||||
- Motor overheat protection
|
||||
- Status lights
|
||||
- Emergency button
|
||||
- After sales service
|
||||
- Auto-Stop after idleness
|
||||
- Shredder blade are CNC cut, forged, annealed, heat-treated, tempered and ground
|
||||
- Crushes plastic, rubber, glass, thin metals and Aluminum up to 1.5mm
|
||||
|
||||
**Lead Time** : 2-3 weeks
|
||||
|
||||
<hr/>
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br/>
|
||||
<hr/>
|
||||
|
||||
|
||||
<div style="clear:both"/>
|
||||
|
||||
|
||||
|
||||
## Components
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Resources
|
||||
|
||||
|
||||
- [Tests](https://files.osr-plastic.org/files/osr-machines/shredder-ext/Obelix-XM-300/media/tests)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3>Payment Terms</h3>
|
||||
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
|
||||
<b>Machines manufactured in-house</b> <br/>
|
||||
|
||||
|
||||
70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png"/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
9
shredder-ext/Obelix-XM-300/templates/jekyll/others.html
Normal file
9
shredder-ext/Obelix-XM-300/templates/jekyll/others.html
Normal file
@ -0,0 +1,9 @@
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<h3> See our other products </h3>
|
||||
<div class="ty-vendor-plans">
|
||||
${elena}
|
||||
${sheetpress}
|
||||
${zoe}
|
||||
${lydia}
|
||||
</div>
|
||||
</div>
|
||||
32
shredder-ext/Obelix-XM-300/templates/jekyll/overview.html
Normal file
32
shredder-ext/Obelix-XM-300/templates/jekyll/overview.html
Normal file
@ -0,0 +1,32 @@
|
||||
<div>
|
||||
<a href="${product_perspective}">
|
||||
<img src="${product_perspective}" style="margin:8px; float: left;max-width:50%;max-height: 400px;" />
|
||||
</a>
|
||||
|
||||
<span style="font-size: smaller; margin-top: 16px;">
|
||||
${product_name}
|
||||
</span>
|
||||
|
||||
<div style="display: table-cell;">
|
||||
${mini_specs}
|
||||
|
||||
{% include machine_toolbar.html download="${download}" preview="${product_3d}" %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="margin: 8px;clear:both">
|
||||
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
${features}
|
||||
|
||||
<hr />
|
||||
|
||||
${academy_overview}
|
||||
|
||||
<hr />
|
||||
|
||||
${products}
|
||||
61
shredder-ext/Obelix-XM-300/templates/site/features.html
Normal file
61
shredder-ext/Obelix-XM-300/templates/site/features.html
Normal file
@ -0,0 +1,61 @@
|
||||
<div class="row vertical-2em">
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Auto-Reverse
|
||||
</h5>
|
||||
<span class="feature-text">The machine will detect jamming and reverses automatically. </span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="row vertical-2em">
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Auto-Reverse
|
||||
</h5>
|
||||
<span class="feature-text">The machine will detect jamming and reverses automatically. </span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
10
shredder-ext/Obelix-XM-300/templates/site/others.html
Normal file
10
shredder-ext/Obelix-XM-300/templates/site/others.html
Normal file
@ -0,0 +1,10 @@
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<h3> See our other products </h3>
|
||||
<div class="ty-vendor-plans">
|
||||
${zoe}
|
||||
${zoex}
|
||||
${lydia}
|
||||
${lydia-v4}
|
||||
${sheetpress}
|
||||
</div>
|
||||
</div>
|
||||
5
shredder-ext/Obelix-XM-300/templates/site/overview.html
Normal file
5
shredder-ext/Obelix-XM-300/templates/site/overview.html
Normal file
@ -0,0 +1,5 @@
|
||||
<div>
|
||||
<span style="font-size: smaller; margin-top: 16px;">
|
||||
Robust medium size dual axis shredder
|
||||
</span>
|
||||
</div>
|
||||
23
shredder-ext/Obelix-XM-300/templates/site/products.html
Normal file
23
shredder-ext/Obelix-XM-300/templates/site/products.html
Normal file
@ -0,0 +1,23 @@
|
||||
<div style="padding:16px;text-align: center;font-size: smaller;">
|
||||
<h3>Products</h3>
|
||||
<div class="ty-vendor-plans">
|
||||
|
||||
<div class="ty-grid-list__item" style="float:left;border-color: #c5c5c5;width: 200px;display: inline-block">
|
||||
<a href="https://bazar.preciousplastic.com/moulds/injection-moulds/piranha-clamp/">
|
||||
<img height="200px" src="/_machines/assets/clamp.jpeg">
|
||||
<br />
|
||||
<p style="text-align: center;">Piranha Clamp</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="ty-grid-list__item" style="float:left;border-color: #c5c5c5;width: 200px;display: inline-block">
|
||||
<a href="https://bazar.preciousplastic.com/moulds/injection-moulds/water-cup-mould/">
|
||||
<img height="200px" src="/_machines/assets/watercup.jpeg">
|
||||
<br />
|
||||
<p style="text-align: center;">Water Cup</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{% include bazar_product_thumb.html title="Hair Comb" image="/_machines/assets/comb.jpeg" url="https://bazar.preciousplastic.com/moulds/injection-moulds/hair-comb/" %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
55
shredder-ext/Obelix-XM-300/templates/site/specs.html
Normal file
55
shredder-ext/Obelix-XM-300/templates/site/specs.html
Normal file
@ -0,0 +1,55 @@
|
||||
<div id="specs" style="padding: 16px">
|
||||
<strong>Technical Information</strong>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Version
|
||||
</td>
|
||||
<td>1.3
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Weight
|
||||
</td>
|
||||
<td>40 kg
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Dimensions - Package
|
||||
</td>
|
||||
<td>1100 x 200 x 500 mm
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Barrel volume
|
||||
</td>
|
||||
<td>70 cm³
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Voltage
|
||||
</td>
|
||||
<td>220V
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> AMP
|
||||
</td>
|
||||
<td>2.6A
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Input Flake Size
|
||||
</td>
|
||||
<td>Medium, Small
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> License
|
||||
</td>
|
||||
<td><a href="https://ohwr.org/cernohl">CERN Open Source Hardware License</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
59
shredder-ext/Obelix-XM-500/bazar/output.html
Normal file
59
shredder-ext/Obelix-XM-500/bazar/output.html
Normal file
@ -0,0 +1,59 @@
|
||||
<h2 id="industrialdualaxisshredder">Industrial Dual Axis Shredder</h2>
|
||||
<p>This is an import from a popular shredder manufacturer and has been slightly updated to EU norms.
|
||||
Several updates are not in the pictures yet.</p>
|
||||
<h3 id="featuresampdetails">Features & Details</h3>
|
||||
<ul>
|
||||
<li>Jam detection with auto reverse using a PLC</li>
|
||||
<li>Motor overheat protection</li>
|
||||
<li>Status lights</li>
|
||||
<li>Emergency button</li>
|
||||
<li>After sales service</li>
|
||||
<li>Auto-Stop after idleness</li>
|
||||
<li>Shredder blade are CNC cut, forged, annealed, heat-treated, tempered and ground</li>
|
||||
<li>Crushes plastic, rubber, glass, thin metals and Aluminum up to 1.5mm</li>
|
||||
</ul>
|
||||
<p><strong>Lead Time</strong> : 2-3 weeks</p>
|
||||
<p>
|
||||
<hr />
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br />
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
<div style="clear:both" />
|
||||
</p>
|
||||
<h2 id="components">Components</h2>
|
||||
<pre><code><h3>Payment Terms</h3>
|
||||
</code></pre>
|
||||
<p><b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br />
|
||||
<b>Machines manufactured in-house</b> <br />
|
||||
</p>
|
||||
<p>70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).</p>
|
||||
<hr />
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
83
shredder-ext/Obelix-XM-500/bazar/raw.html
Normal file
83
shredder-ext/Obelix-XM-500/bazar/raw.html
Normal file
@ -0,0 +1,83 @@
|
||||
|
||||
|
||||
|
||||
## Industrial Dual Axis Shredder
|
||||
|
||||
This is an import from a popular shredder manufacturer and has been slightly updated to EU norms.
|
||||
Several updates are not in the pictures yet.
|
||||
|
||||
### Features & Details
|
||||
|
||||
- Jam detection with auto reverse using a PLC
|
||||
- Motor overheat protection
|
||||
- Status lights
|
||||
- Emergency button
|
||||
- After sales service
|
||||
- Auto-Stop after idleness
|
||||
- Shredder blade are CNC cut, forged, annealed, heat-treated, tempered and ground
|
||||
- Crushes plastic, rubber, glass, thin metals and Aluminum up to 1.5mm
|
||||
|
||||
**Lead Time** : 2-3 weeks
|
||||
|
||||
<hr/>
|
||||
Please always contact us by EMail : <b>sales@plastic-hub.com</b><br/>
|
||||
<hr/>
|
||||
|
||||
|
||||
<div style="clear:both"/>
|
||||
|
||||
|
||||
|
||||
## Components
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3>Payment Terms</h3>
|
||||
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
|
||||
<b>Machines manufactured in-house</b> <br/>
|
||||
|
||||
|
||||
70% of the total cost of the machine(s) to be paid at the moment of the order.
|
||||
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
|
||||
payment).
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
|
||||
<table style="display:table;width:auto;margin-left:auto;margin-right:auto">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.instagram.com/osr_plastic/" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/instagram-logo.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/github.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="tel:0034691952287" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/007-whatsapp.png"/>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a alt="" href="mailto:sales@plastic-hub.com" style="color:#4C74B9">
|
||||
<img width="30px" src="https://assets.osr-plastic.org/machines//assets/icons/012-mail-2.png"/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
9
shredder-ext/Obelix-XM-500/templates/jekyll/others.html
Normal file
9
shredder-ext/Obelix-XM-500/templates/jekyll/others.html
Normal file
@ -0,0 +1,9 @@
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<h3> See our other products </h3>
|
||||
<div class="ty-vendor-plans">
|
||||
${elena}
|
||||
${sheetpress}
|
||||
${zoe}
|
||||
${lydia}
|
||||
</div>
|
||||
</div>
|
||||
32
shredder-ext/Obelix-XM-500/templates/jekyll/overview.html
Normal file
32
shredder-ext/Obelix-XM-500/templates/jekyll/overview.html
Normal file
@ -0,0 +1,32 @@
|
||||
<div>
|
||||
<a href="${product_perspective}">
|
||||
<img src="${product_perspective}" style="margin:8px; float: left;max-width:50%;max-height: 400px;" />
|
||||
</a>
|
||||
|
||||
<span style="font-size: smaller; margin-top: 16px;">
|
||||
${product_name}
|
||||
</span>
|
||||
|
||||
<div style="display: table-cell;">
|
||||
${mini_specs}
|
||||
|
||||
{% include machine_toolbar.html download="${download}" preview="${product_3d}" %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="margin: 8px;clear:both">
|
||||
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
${features}
|
||||
|
||||
<hr />
|
||||
|
||||
${academy_overview}
|
||||
|
||||
<hr />
|
||||
|
||||
${products}
|
||||
61
shredder-ext/Obelix-XM-500/templates/site/features.html
Normal file
61
shredder-ext/Obelix-XM-500/templates/site/features.html
Normal file
@ -0,0 +1,61 @@
|
||||
<div class="row vertical-2em">
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Auto-Reverse
|
||||
</h5>
|
||||
<span class="feature-text">The machine will detect jamming and reverses automatically. </span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="row vertical-2em">
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Auto-Reverse
|
||||
</h5>
|
||||
<span class="feature-text">The machine will detect jamming and reverses automatically. </span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h5 class="feature-text">
|
||||
Status Lights
|
||||
</h5>
|
||||
<span class="feature-text">Visual feedback.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
10
shredder-ext/Obelix-XM-500/templates/site/others.html
Normal file
10
shredder-ext/Obelix-XM-500/templates/site/others.html
Normal file
@ -0,0 +1,10 @@
|
||||
<div style="padding:16px;text-align: center;">
|
||||
<h3> See our other products </h3>
|
||||
<div class="ty-vendor-plans">
|
||||
${zoe}
|
||||
${zoex}
|
||||
${lydia}
|
||||
${lydia-v4}
|
||||
${sheetpress}
|
||||
</div>
|
||||
</div>
|
||||
5
shredder-ext/Obelix-XM-500/templates/site/overview.html
Normal file
5
shredder-ext/Obelix-XM-500/templates/site/overview.html
Normal file
@ -0,0 +1,5 @@
|
||||
<div>
|
||||
<span style="font-size: smaller; margin-top: 16px;">
|
||||
Robust medium size dual axis shredder
|
||||
</span>
|
||||
</div>
|
||||
23
shredder-ext/Obelix-XM-500/templates/site/products.html
Normal file
23
shredder-ext/Obelix-XM-500/templates/site/products.html
Normal file
@ -0,0 +1,23 @@
|
||||
<div style="padding:16px;text-align: center;font-size: smaller;">
|
||||
<h3>Products</h3>
|
||||
<div class="ty-vendor-plans">
|
||||
|
||||
<div class="ty-grid-list__item" style="float:left;border-color: #c5c5c5;width: 200px;display: inline-block">
|
||||
<a href="https://bazar.preciousplastic.com/moulds/injection-moulds/piranha-clamp/">
|
||||
<img height="200px" src="/_machines/assets/clamp.jpeg">
|
||||
<br />
|
||||
<p style="text-align: center;">Piranha Clamp</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="ty-grid-list__item" style="float:left;border-color: #c5c5c5;width: 200px;display: inline-block">
|
||||
<a href="https://bazar.preciousplastic.com/moulds/injection-moulds/water-cup-mould/">
|
||||
<img height="200px" src="/_machines/assets/watercup.jpeg">
|
||||
<br />
|
||||
<p style="text-align: center;">Water Cup</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{% include bazar_product_thumb.html title="Hair Comb" image="/_machines/assets/comb.jpeg" url="https://bazar.preciousplastic.com/moulds/injection-moulds/hair-comb/" %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
55
shredder-ext/Obelix-XM-500/templates/site/specs.html
Normal file
55
shredder-ext/Obelix-XM-500/templates/site/specs.html
Normal file
@ -0,0 +1,55 @@
|
||||
<div id="specs" style="padding: 16px">
|
||||
<strong>Technical Information</strong>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Version
|
||||
</td>
|
||||
<td>1.3
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Weight
|
||||
</td>
|
||||
<td>40 kg
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Dimensions - Package
|
||||
</td>
|
||||
<td>1100 x 200 x 500 mm
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Barrel volume
|
||||
</td>
|
||||
<td>70 cm³
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Voltage
|
||||
</td>
|
||||
<td>220V
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> AMP
|
||||
</td>
|
||||
<td>2.6A
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> Input Flake Size
|
||||
</td>
|
||||
<td>Medium, Small
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> License
|
||||
</td>
|
||||
<td><a href="https://ohwr.org/cernohl">CERN Open Source Hardware License</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
Loading…
Reference in New Issue
Block a user