

The 4V 1A Starboard LED, Cool White (Manufacturer Part ID: LST1-01C54-5765-01) by New Energy is a high-performance LED designed specifically for marine navigation lighting. It emits a cool white light, ensuring optimal visibility and safety for starboard (right side) applications on boats and ships. This LED is energy-efficient, durable, and capable of operating in harsh marine environments.








| Parameter | Value |
|---|---|
| Manufacturer | New Energy |
| Part ID | LST1-01C54-5765-01 |
| Forward Voltage (Vf) | 4V (typical) |
| Forward Current (If) | 1A (maximum) |
| Power Consumption | 4W |
| Light Color | Cool White |
| Luminous Flux | 120-140 lumens |
| Beam Angle | 120° |
| Operating Temperature | -40°C to +85°C |
| PCB Type | Aluminum Starboard PCB |
| Dimensions | 20mm diameter |
| Solder Pads | 2 (Anode and Cathode) |
The 4V 1A Starboard LED has two solder pads for electrical connections:
| Pin Name | Description | Polarity |
|---|---|---|
| Anode | Positive terminal for power | + |
| Cathode | Negative terminal for ground | - |
Power Supply Requirements:
Wiring:
Heat Dissipation:
Protection:
The 4V 1A Starboard LED can be controlled using an Arduino UNO with a suitable MOSFET or transistor for current regulation. Below is an example circuit and code:
// Example code to control the 4V 1A Starboard LED using PWM on Arduino UNO
const int ledPin = 9; // Pin connected to the MOSFET gate
void setup() {
pinMode(ledPin, OUTPUT); // Set the pin as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Wait 10ms for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Wait 10ms for smooth transition
}
}
| Issue | Possible Cause | Solution |
|---|---|---|
| LED does not light up | Incorrect polarity | Verify Anode (+) and Cathode (-) connections. |
| LED flickers or dims unexpectedly | Insufficient power supply or loose wiring | Ensure the power supply provides 4V and 1A. Check all connections. |
| LED overheats | Poor heat dissipation | Attach the LED to a heatsink or thermally conductive surface. |
| LED burns out | Overvoltage or overcurrent | Use a constant current driver or series resistor to limit current. |
Can I use a 5V power supply for this LED?
What is the recommended heatsink size?
Can this LED be used for non-marine applications?
Is the LED waterproof?
This concludes the documentation for the 4V 1A Starboard LED, Cool White. For further assistance, refer to the manufacturer's datasheet or contact New Energy support.