

The StrobeIT Anti-Collision Drone Light by Teravolt (Part ID: PWM LED) is a high-visibility LED light designed to enhance drone safety during flight. This component is particularly useful in low-light or nighttime conditions, where visibility is critical. It features multiple flashing modes to alert other airspace users, reducing the risk of mid-air collisions. The compact design and efficient power consumption make it ideal for drones of all sizes.








| Parameter | Value |
|---|---|
| Operating Voltage | 3.7V - 6.0V |
| Current Consumption | 50mA (steady mode) |
| Flashing Modes | Steady, Slow Flash, Fast Flash |
| Light Intensity | 300 lumens |
| LED Color | White (default) |
| Dimensions | 20mm x 10mm x 5mm |
| Weight | 5 grams |
| Operating Temperature | -10°C to 50°C |
| Pin Name | Pin Type | Description |
|---|---|---|
| VCC | Power Input | Connect to the positive terminal of the power source (3.7V - 6.0V). |
| GND | Ground | Connect to the ground terminal of the power source. |
| PWM | Signal Input | Accepts a PWM signal to control flashing modes. |
The following code demonstrates how to control the StrobeIT Anti-Collision Drone Light using an Arduino UNO. The code cycles through steady, slow flash, and fast flash modes.
// Define the PWM pin connected to the StrobeIT light
const int pwmPin = 9;
void setup() {
pinMode(pwmPin, OUTPUT); // Set the PWM pin as an output
}
void loop() {
// Steady mode: 100% duty cycle
analogWrite(pwmPin, 255); // Full brightness
delay(5000); // Stay in steady mode for 5 seconds
// Slow flash mode: 50% duty cycle
for (int i = 0; i < 10; i++) {
analogWrite(pwmPin, 255); // Turn on
delay(500); // On for 500ms
analogWrite(pwmPin, 0); // Turn off
delay(500); // Off for 500ms
}
// Fast flash mode: 25% duty cycle
for (int i = 0; i < 20; i++) {
analogWrite(pwmPin, 255); // Turn on
delay(100); // On for 100ms
analogWrite(pwmPin, 0); // Turn off
delay(100); // Off for 100ms
}
}
The LED does not turn on:
Flashing modes do not change:
The light is dim or flickering:
Q: Can I use the StrobeIT light with a 12V power source?
A: No, the maximum operating voltage is 6.0V. Using a higher voltage may damage the component.
Q: Is the StrobeIT light waterproof?
A: No, the component is not waterproof. Avoid exposing it to water or moisture.
Q: Can I change the default LED color?
A: The default LED color is white. Customization may require replacing the LED, which is not recommended as it may void the warranty.
Q: How do I mount the light on my drone?
A: Use heat-resistant adhesive or screws to secure the light. Ensure it is mounted in a location visible from all angles.
This concludes the documentation for the StrobeIT Anti-Collision Drone Light. For further assistance, refer to the manufacturer's support resources or contact Teravolt directly.