1.75mm White PLA Filament - 1Kg
1.75mm White PLA Filament - 1Kg
3D Printing Materials
The 1.75mm White PLA Filament - 1Kg is a high-quality, bioplastic 3D printing material designed for Fused Deposition Modeling (FDM) and Fused Filament Fabrication (FFF) 3D printing technologies. This filament is made from Polylactic Acid (PLA), a biodegradable and renewable thermoplastic derived from corn starch or sugarcane.
| The primary function of the 1.75mm White PLA Filament - 1Kg is to provide a high-quality, consistent, and reliable 3D printing material for a wide range of applications, including |
Rapid prototyping
Model making
Production parts
Artistic creations
Educational projects
The 1.75mm White PLA Filament - 1Kg is carefully packaged in a vacuum-sealed bag to prevent moisture absorption. It is recommended to store the filament in a dry, cool place, away from direct sunlight and moisture.
| The manufacturer provides a comprehensive warranty and support package, including |
The 1.75mm White PLA Filament - 1Kg is a high-quality, reliable, and environmentally friendly 3D printing material suitable for a wide range of applications. Its excellent printability, high detail resolution, and biodegradable properties make it an ideal choice for professionals, hobbyists, and educators alike.
Component Documentation: 1.75mm White PLA Filament - 1KgOverviewThe 1.75mm White PLA Filament is a high-quality, biodegradable, and renewable thermoplastic filament designed for 3D printing applications. This component is an essential material for creating prototype models, artistic designs, and functional parts. The 1Kg spool provides a substantial amount of material for extended printing sessions.Technical SpecificationsFilament diameter: 1.75mm
Material: Polylactic Acid (PLA)
Color: White
Weight: 1Kg
Printing temperature: 190-220C
Bed temperature: 50-70C
Recommended infill density: 10-20%Example Usage Scenarios### Example 1: 3D Printing a Simple Box using OctoPrint and PythonIn this example, we will use the 1.75mm White PLA Filament to print a simple box using OctoPrint, a popular open-source 3D printing software, and Python.Hardware Requirements3D printer (e.g., Prusa i3, MakerGear M2)
OctoPrint installation on a Raspberry Pi or other compatible devices
1.75mm White PLA Filament - 1KgCode Example (Python)
```python
import octoprint# Initialize OctoPrint API connection
oc = octoprint.OctoPrintAPI("http://localhost:5000", "your_api_key")# Load the 3D model (STL file)
gcode_file = "box.stl"# Set printing settings
layer_height = 0.2
infill_density = 15
print_speed = 60# Start printing
oc.start_print(gcode_file, layer_height, infill_density, print_speed)# Monitor printing progress
while oc.get_print_progress() < 100:
print("Printing progress: {:.2f}%".format(oc.get_print_progress()))
time.sleep(10)print("Print complete!")
```
### Example 2: Creating a Custom 3D Model using Fusion 360 and Printing with the 1.75mm White PLA FilamentIn this example, we will design a custom 3D model using Autodesk Fusion 360 and print it using the 1.75mm White PLA Filament.Software RequirementsAutodesk Fusion 360
3D printer slicing software (e.g., Cura, Slic3r)Code Example (Fusion 360 Script)
```python
# Create a new Fusion 360 design
design = adsk.fusion.Design()# Create a new component
component = design.rootComponent# Create a new body
body = component.bodies.add()# Create a simple box shape
box = body.shapes.addBox(adsk.fusion.Box.create(
adsk.fusion.Vector3.create(0, 0, 0),
adsk.fusion.Vector3.create(50, 50, 50)
))# Export the model as an STL file
stl_file = design.exportStl("custom_box.stl")# Print the model using your preferred 3D printing software
```
These examples demonstrate how to use the 1.75mm White PLA Filament in different contexts, from 3D printing automation using OctoPrint and Python to designing custom 3D models using Fusion 360.