Stufin
Home Quick Cart Profile

Flexible LED Filament (24V 1200mm, Red)

Buy Now on Stufin

Voltage

24V DC

Power Consumption

Low power consumption, typically around 2-3W/m

Current

50mA/m (maximum)

### Optical Characteristics

Color Temperature

Red (approx. 620-750nm)

Luminous Flux

20-30 lumens per meter

Color Rendering Index (CRI)80

Viewing Angle

120

### Mechanical Characteristics

Length

1200mm (4.2 feet)

Width

10mm (0.39 inches)

Thickness

2mm (0.079 inches)

Flexibility

Bendable up to 30

Material

Flexible PCB (Printed Circuit Board) with a clear silicone coating

### Environmental Characteristics

Operating Temperature

-20C to 50C (-4F to 122F)

Storage Temperature

-30C to 60C (-22F to 140F)

Humidity

20-80% RH (relative humidity)

### Durability and Reliability

LED Lifespan

25,000 hours

IP Rating

IP65 (dust-tight and protected against low-pressure jets of water)

### Certifications and Compliance

RoHS

Compliant with the Restriction of Hazardous Substances directive

CE

Compliant with the European Union's health, safety, and environmental protection standards

Applications

--------------

The Flexible LED Filament (24V 1200mm, Red) is suitable for a wide range of applications, including

Ambient lighting

Signage and wayfinding

Decorative lighting

Architectural lighting

IoT projects

Automotive lighting

Industrial lighting

Installation and Handling

------------------------------

Handle the Flexible LED Filament with care to avoid damaging the LEDs or the flexible PCB. Cut the filament to the desired length using a pair of scissors or a craft knife. Connect the filament to a 24V DC power source using a suitable connector or soldering technique. Ensure proper thermal management and avoid exposing the filament to excessive heat, moisture, or mechanical stress.

Warranty and Support

-------------------------

The Flexible LED Filament (24V 1200mm, Red) is backed by a 1-year limited warranty. For technical support, documentation, and FAQs, please visit the manufacturer's website or contact their customer support team.

Pin Configuration

  • Flexible LED Filament (24V 1200mm, Red) - Pinout and Connection Guide
  • The Flexible LED Filament (24V 1200mm, Red) is a versatile and energy-efficient lighting solution for various Internet of Things (IoT) applications. This documentation provides a detailed explanation of the pinout and connection guide for the component.
  • Pinout:
  • The Flexible LED Filament has a total of 2 pins:
  • 1. Positive (VCC) Pin
  • Function: Supplies power to the LED filament
  • Voltage Rating: 24V
  • Recommended Connection: Connect to a 24V power source or a voltage regulator output
  • 2. Negative (GND) Pin
  • Function: Returns current to the power source
  • Voltage Rating: 0V (Ground)
  • Recommended Connection: Connect to a common ground point or the negative terminal of the power source
  • Connection Guide:
  • To connect the Flexible LED Filament, follow these steps:
  • Step 1: Identify the pins
  • Identify the Positive (VCC) and Negative (GND) pins on the Flexible LED Filament. Ensure you handle the component carefully to avoid damaging the pins or the LED filament.
  • Step 2: Prepare the power source
  • Prepare a 24V power source or a voltage regulator output capable of delivering the required current to the LED filament. Ensure the power source is stable and regulated to prevent damage to the component.
  • Step 3: Connect the Positive (VCC) Pin
  • Connect the Positive (VCC) Pin to the 24V power source or voltage regulator output. Use a suitable connector or wire gauge to ensure a secure and reliable connection.
  • Step 4: Connect the Negative (GND) Pin
  • Connect the Negative (GND) Pin to a common ground point or the negative terminal of the power source. This connection completes the circuit and allows the LED filament to operate.
  • Important Notes:
  • Ensure the power supply voltage is within the recommended 24V rating to prevent damage to the LED filament.
  • Use a suitable current-limiting resistor or a constant current driver to prevent overcurrent and prolong the lifespan of the LED filament.
  • Handle the component with care to avoid physical damage or electrical shock.
  • Follow proper safety precautions when working with electrical components and systems.
  • By following these guidelines, you can successfully connect and operate the Flexible LED Filament (24V 1200mm, Red) in your IoT project.

Code Examples

Flexible LED Filament (24V 1200mm, Red) Documentation
Overview
The Flexible LED Filament (24V 1200mm, Red) is a flexible, linear LED lighting solution designed for various IoT applications. This component features a 1200mm long, flexible PCB with 24V rated LEDs in a red color. The filament can be bent and shaped to fit various forms and designs, making it ideal for decorative lighting, ambient lighting, and other creative applications.
Technical Specifications
Voltage: 24V
 Length: 1200mm
 Color: Red
 LED Density: 30 LEDs per meter
 Flexibility: Can be bent to a minimum radius of 10mm
 Operating Temperature: -20C to 60C
 Waterproof Rating: IP65 (dustproof and water-resistant)
Pinout
The Flexible LED Filament has a simple 2-wire interface:
VCC (Red wire): 24V power supply
 GND (Black wire): Ground connection
Code Examples
### Example 1: Basic On/Off Control using Arduino
This example demonstrates how to control the Flexible LED Filament using an Arduino board.
```cpp
const int ledPin = 9;  // VCC wire connected to digital pin 9
const int gndPin = 8;  // GND wire connected to digital pin 8
void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(gndPin, OUTPUT);
}
void loop() {
  // Turn the LED on
  digitalWrite(ledPin, HIGH);
  digitalWrite(gndPin, LOW);
  delay(1000);
// Turn the LED off
  digitalWrite(ledPin, LOW);
  digitalWrite(gndPin, HIGH);
  delay(1000);
}
```
### Example 2: PWM Dimming using Raspberry Pi (Python)
This example demonstrates how to control the brightness of the Flexible LED Filament using PWM (Pulse-Width Modulation) on a Raspberry Pi.
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the PWM pin (connected to VCC wire)
pwm_pin = 17
# Set up PWM pin as output
GPIO.setup(pwm_pin, GPIO.OUT)
# Create a PWM object with a frequency of 100Hz
pwm = GPIO.PWM(pwm_pin, 100)
try:
    while True:
        # Dim the LED from 0 to 100%
        for dc in range(0, 101, 10):
            pwm.start(dc)
            time.sleep(0.1)
# Dim the LED from 100 to 0%
        for dc in range(100, -1, -10):
            pwm.start(dc)
            time.sleep(0.1)
except KeyboardInterrupt:
    pwm.stop()
    GPIO.cleanup()
```
Notes
Make sure to use an appropriate power supply and current limiting resistor to avoid overheating or damaging the LEDs.
 When bending the Flexible LED Filament, avoid kinking or creasing the PCB to ensure optimal performance and longevity.
 This component is not suitable for outdoor use in direct sunlight or exposure to harsh environmental conditions.