Flexible USB LED Light (5V, 1.2W)

  • Powered by 5V USB – plug-and-play with any USB port
  • 1.2W Power Consumption – energy-efficient lighting
  • Flexible Gooseneck Design – easy angle adjustment
  • Bright LED Illumination – ideal for laptops, reading, or workspaces
  • Compact & Portable – great for travel or everyday use

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

20,00 EGP

9 People watching this product now!

Payment Methods:

Description

Brighten up your workspace or illuminate tight enclosures with this ultra-portable Flexible USB LED Light. Designed for makers, technicians, and everyday users, this compact light plugs directly into any standard USB Type-A port—whether on a laptop, a portable power bank, or a dedicated USB wall adapter. The bendable silicone gooseneck allows you to direct the light exactly where you need it, holding its shape to provide steady, hands-free illumination. Drawing only 1.2W of power, it delivers a surprisingly bright yet diffused light that protects your eyes from harsh glare, making it an essential, energy-efficient tool for late-night hardware debugging, nighttime reading, or emergency lighting.


Key Features

  • Fully Flexible Gooseneck: The durable silicone body can be bent, twisted, and angled in any direction, holding its position to provide targeted lighting exactly where you need it.

  • Universal USB Power: Plugs seamlessly into any standard 5V USB Type-A port, making it compatible with laptops, power banks, and USB wall chargers.

  • Energy Efficient: Draws a mere 1.2 Watts of power, ensuring it won’t rapidly drain your portable power banks or laptop battery during extended use.

  • Soft, Diffused Lighting: A built-in frosted lampshade softens the LED output, reducing eye strain and eliminating harsh shadows during close-up inspection work.

  • Ultra-Portable Design: Lightweight and compact enough to slip into a pocket, laptop bag, or toolkit without taking up valuable space.


Technical Specifications

Specification Detail
Operating Voltage 5V DC (Standard USB)
Power Consumption 1.2W
Connector Type USB Type-A
Light Source High-Brightness SMD LEDs
Body Material Flexible Silicone / TPU
Dimensions ~170 mm × 18 mm × 9 mm
Weight ~16g
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
LightUSB powerruns from any 5V USB source; for microcontroller ON/OFF control, switch through a small transistor
📟
Flexible USB LED Light (5V, 1.2W)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Flexible USB LED Light (5V, 1.2W) - Arduino Uno
Flexible USB LED Light (5V, 1.2W) - Arduino Nano
Flexible USB LED Light (5V, 1.2W) - Arduino Mega
Flexible USB LED Light (5V, 1.2W) - ESP32
Flexible USB LED Light (5V, 1.2W) - ESP8266
Flexible USB LED Light (5V, 1.2W) - STM32
Flexible USB LED Light (5V, 1.2W) - Raspberry Pi Pico
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_arduino_uno.inoArduino Uno
323 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Uno
6#define LED_PIN 9
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_arduino_nano.inoArduino Nano
324 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Nano
6#define LED_PIN 9
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_arduino_mega.inoArduino Mega
324 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Mega
6#define LED_PIN 9
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_esp32.inoESP32
319 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 25 on ESP32
6#define LED_PIN 25
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_esp8266.inoESP8266
321 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin D1 on ESP8266
6#define LED_PIN D1
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_stm32.inoSTM32
321 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin PA8 on STM32
6#define LED_PIN PA8
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: flexible_usb_led_light_(5v,_1.2w)_-_raspberry_pi_pico.inoRaspberry Pi Pico
331 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 15 on Raspberry Pi Pico
6#define LED_PIN 15
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
Small 5V flexible LED strip light.

Specification

Specification

WeightWeight8 g
Dimensions4 × 3 × 1,5 cm
TypeUSB LED Light
Voltage5V DC
Power1.2W
DesignFlexible gooseneck
MaterialPlastic & LED components
UsageLaptop lighting, keyboard illumination, reading light, portable USB lighting

Customer Reviews