Mini USB LED Lamp – Ultra-Thin & Lightweight for Camping

  • Ultra-thin & ultra-lightweight portable USB lamp
  • Powered via standard 5V USB (mobile power, PC, laptop, etc.)
  • Features 3× 2835 SMD LEDs, 0.2W ultra-low power
  • High luminous efficiency with low heat output
  • Working current: ~40mA – long-lasting & energy-saving
  • Fits in a wallet or keychain – perfect for travel or camping
  • One 5000mAh power bank can light it for ~100 hours
  • Ideal for night reading, emergencies, or minimalist lighting setups

Apple Shopping Event

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

25,00 EGP

19 People watching this product now!

Payment Methods:

Description

This is Mini LED Light Ultra-thin Ultra-light Portable USB Small LED Lamp Camping Night Light. Mobile power can be used when the desktop computer lights. The single-sided 3LED piece, 0.2w ultra-low power, 2835 multi-chip led, a long time lit test, heat no problem, this should be assured.

5000mah mobile power, full of power can be lit for about 100 hours. Working current is more than 40 mA, high luminous efficiency, energy saving. Can be placed in the wallet, you can also hang on the key, very portable.

Power Supply :

Standard USB interface; as long as the USB can plug;5V power; mobile power; notebook; the netbook;  desktop computers can be.

Note :

As the LED lamp power consumption is very small, many will be filled with mobile power from the stop, not suitable for use, will think that there is no negative. 


Package Includes :

1 x Mini LED Light Ultra-thin Ultra-light Portable USB Small LED Lamp Camping Night Light

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
LampUSB powerruns from any 5V USB source; for microcontroller ON/OFF control, switch through a small transistor
📟
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - Arduino Uno
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - Arduino Nano
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - Arduino Mega
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - ESP32
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - ESP8266
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - STM32
Mini USB LED Lamp - Ultra-Thin & Lightweight for Camping - Raspberry Pi Pico
📄 File: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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: mini_usb_led_lamp_-_ultra-thin_&_lightweight_for_camping_-_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 LED lamp, drives directly from a switched pin at low current.

Specification

Specification

WeightWeight1,0000 g
Dimensions25 × 12 × 4 cm
lamp-shapePatch Light
lamp-cover-materialPlastic
lampholders-materialSynthetic
switch-typeNo Switch
voltagev5

Customer Reviews