Stufin
Home Quick Cart Profile

1.75mm Luminous White ABS Filament -1Kg

Buy Now on Stufin

Component Name

1.75mm Luminous White ABS Filament - 1Kg

Description

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.

Functionality

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

Key Features

  • Luminous Property: The filament contains specialized additives that absorb light energy and release a glowing effect in the dark, making it stand out from traditional ABS filaments.
  • High-Quality ABS Material: The filament is made from a high-quality ABS (Acrylonitrile Butadiene Styrene) polymer, ensuring excellent mechanical properties, impact resistance, and thermal stability.
  • 1.75mm Diameter: The filament is designed to fit standard 1.75mm FDM/FFF 3D printer extruders, ensuring seamless compatibility with a wide range of printers.
  • 1Kg Spool Weight: The filament is supplied on a 1Kg spool, providing a generous amount of material for printing multiple objects or large models.
  • Consistent Diameter: The filament is manufactured to maintain a consistent diameter, ensuring reliable and accurate feeding into the 3D printer's extruder.
  • Good Layer Adhesion: The filament is formulated to promote strong layer bonding, resulting in durable and robust printed parts.
  • Easy to Print: The filament is designed to be easy to print with, requiring minimal setup and calibration adjustments on most 3D printers.
  • Chemical Resistance: The ABS material provides good resistance to chemicals, such as acetone and other common solvents, making it suitable for printing functional parts.

Material

ABS (Acrylonitrile Butadiene Styrene)

Diameter

1.75mm 0.05mm

Spool Weight

1Kg

Luminous Property

Absorbs light energy and emits a glowing effect in the dark

Melting Point

220C - 240C (428F - 464F)

Printing Temperature

230C - 250C (446F - 482F)

Bed Temperature

90C - 110C (194F - 230F)

Safety Precautions

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.

Pin Configuration

  • I think there may be some confusion here. The component you've mentioned, "1.75mm Luminous White ABS Filament -1Kg", is not an electronic component with pins, but rather a type of 3D printing material. It's a spool of ABS (Acrylonitrile Butadiene Styrene) filament with a luminous white color, used for 3D printing.
  • As such, it doesn't have any pins to connect. Instead, it's used to feed 3D printers, which extrude the filament to create three-dimensional objects.
  • If you meant to ask about a different component, please let me know and I'll be happy to help!

Code Examples

Component Documentation: 1.75mm Luminous White ABS Filament - 1Kg
Overview
The 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 Specifications
Diameter: 1.75mm
 Material: Acrylonitrile Butadiene Styrene (ABS)
 Color: Luminous White
 Weight: 1Kg
 Melting Point: 230-240C
 Printing Temperature: 220-240C
 Bed Temperature: 90-110C
Code Examples
Example 1: Basic 3D Printing using Marlin Firmware
In 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 Controller
In 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 Library
In 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.