✨ Light up your rig like a pro with magnetic ease! 🧲
The airgoo AG-NEON-LS1 is a pair of 15.75-inch addressable RGB LED strips housed in flexible, eco-friendly silicone tubes. Featuring 42 individually controllable LEDs powered by a 5V 3-pin ARGB header, these strips offer vibrant neon lighting compatible with major motherboard RGB software. Installation is simplified with 12 magnetic brackets, making it perfect for professional gamers and PC builders seeking customizable, seamless illumination.
Color | NEON ARGB LED Strips, 5v 3-pin, 42 LEDs |
Brand | airgoo |
Indoor/Outdoor Usage | Indoor |
Special Feature | Dimmable, Compatible with ASUS Aura SYNC, Gigabyte RGB Fusion, MSI Mystic Light Sync Motherboard 5V 3-Pin addressable LED headers |
Light Source Type | LED |
Power Source | 5V 3-Pin ARGB LED headers ONLY |
Light Color | RGB |
Theme | Indoor |
Occasion | Gift |
Style | Modern |
Material | Silicone Rubber |
Controller Type | ASUS Aura SYNC, Gigabyte RGB Fusion, MSI Mystic Light Sync Motherboard 3-pin D-RGB Header |
Connectivity Protocol | ASUS Aura SYNC, Gigabyte RGB Fusion, MSI Mystic Light Sync |
Connectivity Technology | Bluetooth |
Number of Light Sources | 42 |
Voltage | 5 Volts |
Wattage | 10 watts |
Included Components | 2 x Neon Addressable LED Strip (40cm) 2 x ARGB Extension Cable |
Number of Items | 2 |
Item dimensions L x W x H | 15.75 x 0.55 x 0.28 inches |
Control Method | App |
Water Resistance Level | Not Water Resistant |
Wireless Communication Technology | Bluetooth |
Manufacturer | airgoo |
Part Number | AG-NEON-LS1 |
Item Weight | 6.3 ounces |
Product Dimensions | 15.75 x 0.55 x 0.28 inches |
Country of Origin | China |
Item model number | AG-NEON-LS1 |
Assembled Height | 0.7 centimeters |
Assembled Length | 40 centimeters |
Assembled Width | 1.4 centimeters |
Shape | Linear |
Specific Uses | Compatible with ASUS Aura SYNC, Gigabyte RGB Fusion, MSI Mystic Light Sync Motherboard 5V 3-Pin addressable LED |
Special Features | Dimmable, Compatible with ASUS Aura SYNC, Gigabyte RGB Fusion, MSI Mystic Light Sync Motherboard 5V 3-Pin addressable LED headers |
Shade Material | Neon |
Light Direction | Up/Down Light |
Batteries Included? | No |
Batteries Required? | No |
R**N
Exactly what was advertised. Great price.
The media could not be loaded. I found these strips via Youtube when looking for some strips to diffuse in the bottom portion of my PC case. I found these ones, which actually looked pretty cool as they already came diffused, so I decided to purchase. The box came in good quality, and everything inside was packaged well. Out of the box, they were the perfect length for the bottom of my case, and the side as the box came with two strips.At first the install was confusing because I wasn't sure what cables go where. Both ends of the strips had 3 pin fan connectors (or what looked like them) and I was confused, but once you play around a little bit you can figure it out pretty easily. From there I got them daisy chained to each other, and then daisy chained to the rest of my system fans as I am only using the one ARGB header available on my motherboard. The magnets are actually pretty strong, and if you have a black case they will be hidden pretty well. I do wish however that there were more magnets as I had to take some off my bottom strip to make the lightning shape of the second strip.They started working immediately as soon as they were plugged in and I was extremely happy with the brightness & quality of the lighting. The colors are extremely accurate to what I want them to be. With these patterns can be limitless as each LED is addressable, however, you do need an *actual* RGB controller to be able to properly individually address them (not an ARGB splitter). I do not have one but I liked the quality of this enough to purchase Airgoo's ARGB controller.Now I only got these a couple days ago, so I cannot speak on the durability or the lifespan yet, but if any issues were to arise from them, I would edit my review. I also want to note that the fan sound heard in the video I attached is not from my PC but rather a standing fan, the strips are silent.
R**R
Great strips!
The lights are great and the strips are neither too bright nor too dim. The length is just right for 360mm fan setups. There is hot-spotting (you can tell where each LED is placed) but I have seen much worse in lesser products and it's only noticeable for lighter colors. My biggest complaint is that with most motherboards, you will need to daisy chain the two strips together and then you cannot control each strip individually, the 2nd will have the exact same light setup as the first. As for the magnets, they are great and stick to the case firmly enough where they won't move or fall on their own. I do wish they had a few more magnets for each connector, or at least the straight ones for some fancier showcases, but the provided ones do enough for your average setup. All in all, pretty great product I would definitely recommend!
T**S
Worked fine out of the box, bright and colorful but yellowed over time
I bought these early last year to accent my windowed case. Physical setup was easy, the magnets made placement a cinch and control through the ASUS board (via openRGB) worked fine. They work fine.Some time on, not long after a year of use, the material used to diffuse the lights to make them smooth has yellowed significantly. Stronger colors like straight blue, green or red are fine. Yellow is fine (obviously). If you set it to white (which, while not completely bright white, was still white upon installation), it's very much more of a wheat yellow. What used to be cyan now looks almost exactly like straight green. If you put them onto a cycle color you'll see them blend in as though some colors are just missing entirely.So I'm not giving it a terrible rating, but be aware these are likely to yellow with age, which can and will affect the colors they output.
B**Y
Fantastic product and Vendor customer service!
The initial pack I purchased had some minor problems with an internal connections in one of the strands and depending on the positioning of the strands it wouldn't stay illuminated. I reached out to the customer support team Airgoo and they immediatly apologized and sent me a free set to make things right. I was so impressed I ended up buying a second set from Amazon! The build quality, color quality and ease of installation for all 5 strips I have in my PC are amazing; and for only $20 a pop they are a good value too.My only complaints are the lack of mounting hardware each pack comes with. If you want to keep it simple it's not a big deal but I wanted a lot of twists in my lighting so I bought an additional mounting pack. I'd like to see a couple more corner mounting brackets per pack, but other than that I cannot recommend this enough for customer lighting!In short: great product, good build quality, fantastic customer service team at Airgoo, and an affordable pricetag. I highly recommend this product
P**L
Works with Arduino and ESP32 using FastLED library
The LEDs are ws2812B and work well. Example code for rainbow effect:#include <FastLED.h>// Define the number of LEDs#define NUM_LEDS 42#define LED_PIN 5 // Pin connected to the data input of the WS2812B strip// Create an array to hold the LED colorsCRGB leds[NUM_LEDS];void setup() {// Initialize the FastLED libraryFastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);FastLED.clear();FastLED.show();}void loop() {// Example animationsrainbowEffect();}// Function to display a rainbow effectvoid rainbowEffect() {static uint8_t hue = 0;for (int i = 0; i < NUM_LEDS; i++) {leds[i] = CHSV(hue + (i * 10), 255, 255); // Hue gradient along the strip}FastLED.show();hue++; // Update the starting hue for the next framedelay(20); // Adjust the delay for animation speed}// Function to set all LEDs to a solid colorvoid solidColor(CRGB color) {fill_solid(leds, NUM_LEDS, color);FastLED.show();}// Function to turn off all LEDsvoid clearStrip() {FastLED.clear();FastLED.show();}
J**A
Works with my setup seamlessly
Loved this product. It connects with my current PC setup well using the 3 pin connector. It is configurable too
Trustpilot
3 weeks ago
3 weeks ago