1.75mm Luminous White ABS Filament - 1Kg
1.75mm Luminous White ABS Filament - 1Kg
The 1.75mm Luminous White ABS Filament is a high-quality, 3D printing material designed for use in Fused Deposition Modeling (FDM) and Fused Filament Fabrication (FFF) 3D printing technologies. This filament is specifically engineered to produce exceptional results with a unique luminous effect, making it an ideal choice for creating models, prototypes, and functional parts with a mesmerizing glow-in-the-dark feature.
| The primary function of this filament is to serve as the build material for 3D printing. When melted and extruded through a 3D printer's hotend, it solidifies to form the desired three-dimensional object. The luminous property of the filament allows the printed object to absorb light energy and emit a glowing effect in the dark, making it suitable for a wide range of applications, such as |
Decorative models and sculptures
Prototypes and proof-of-concepts
Functional parts with enhanced visibility
Artistic installations and exhibits
ABS (Acrylonitrile Butadiene Styrene)
1.75mm 0.05mm
1Kg
Absorbs light energy and emits a glowing effect in the dark
220C - 240C (428F - 464F)
230C - 250C (446F - 482F)
90C - 110C (194F - 230F)
Handle the filament with care, as it can be brittle and prone to breakage.
Avoid exposing the filament to direct sunlight, high temperatures, or open flames.
Wear protective gloves and safety glasses when handling the filament and operating the 3D printer.
Ensure good ventilation in the printing area, as ABS can emit non-toxic but unpleasant fumes during printing.
Component Documentation: 1.75mm Luminous White ABS Filament - 1KgOverviewThe 1.75mm Luminous White ABS Filament - 1Kg is a type of 3D printing material specifically designed for use in Fused Deposition Modeling (FDM) and Fused Filament Fabrication (FFF) 3D printing technologies. This filament is made of Acrylonitrile Butadiene Styrene (ABS) and has a luminous white color that glows in the dark.Technical SpecificationsDiameter: 1.75mm
Material: Acrylonitrile Butadiene Styrene (ABS)
Color: Luminous White
Weight: 1Kg
Melting Point: 230-240C
Printing Temperature: 220-240C
Bed Temperature: 90-110CCode ExamplesExample 1: Basic 3D Printing using Marlin FirmwareIn this example, we will demonstrate how to use the 1.75mm Luminous White ABS Filament - 1Kg with a 3D printer running Marlin firmware.```gcode
; Set the extruder temperature
M104 S220; Set the bed temperature
M140 S100; Home the printer
G28; Start the print job
G1 F300 E10; Print a simple cube
G1 X10 Y10 Z0.2 F300 E10
G1 X10 Y10 Z0.4 F300 E10
G1 X10 Y10 Z0.6 F300 E10
G1 X10 Y10 Z0.8 F300 E10; End the print job
M84
```Example 2: Using the Filament with an Arduino-based 3D Printer ControllerIn this example, we will demonstrate how to use the 1.75mm Luminous White ABS Filament - 1Kg with an Arduino-based 3D printer controller.```cpp
#include <Arduino.h>
#include <Marlin.h>void setup() {
// Initialize the extruder temperature
setTargetHotend(220);// Initialize the bed temperature
setTargetBed(100);// Home the printer
home();// Wait for the temperatures to stabilize
delay(30000);
}void loop() {
// Start the print job
printJob();// Print a simple cube
printLayer(0.2, 10, 10);
printLayer(0.4, 10, 10);
printLayer(0.6, 10, 10);
printLayer(0.8, 10, 10);// End the print job
endJob();
}
```Example 3: Using the Filament with a Python-based 3D Printing LibraryIn this example, we will demonstrate how to use the 1.75mm Luminous White ABS Filament - 1Kg with a Python-based 3D printing library like PySerial.```python
import serial
import time# Initialize the serial connection
ser = serial.Serial('COM3', 115200, timeout=1)# Set the extruder temperature
ser.write(b'M104 S220
')# Set the bed temperature
ser.write(b'M140 S100
')# Home the printer
ser.write(b'G28
')# Wait for the temperatures to stabilize
time.sleep(30)# Start the print job
ser.write(b'G1 F300 E10
')# Print a simple cube
ser.write(b'G1 X10 Y10 Z0.2 F300 E10
')
ser.write(b'G1 X10 Y10 Z0.4 F300 E10
')
ser.write(b'G1 X10 Y10 Z0.6 F300 E10
')
ser.write(b'G1 X10 Y10 Z0.8 F300 E10
')# End the print job
ser.write(b'M84
')
```Note: These examples are for demonstration purposes only and may require modifications to work with specific 3D printing hardware and software configurations.