#2,692 in Musical Instruments

Reddit mentions of LEDJump Data Repeater RGB Signal Amplifier For LED Strips SMD3528 5050 12V 12A MAX Output (2 x 4pin connector included)

Sentiment score: 1
Reddit mentions: 2

We found 2 Reddit mentions of LEDJump Data Repeater RGB Signal Amplifier For LED Strips SMD3528 5050 12V 12A MAX Output (2 x 4pin connector included). Here are the top ones.

LEDJump Data Repeater RGB Signal Amplifier For LED Strips SMD3528 5050 12V 12A MAX Output (2 x 4pin connector included)
Buying options
View on Amazon.com
or
LED amplifier is used for all our company RGB LED controllerIn theory , RGB amplifier can be connected to numerousIt can accept PWM signalWhen adding one RGB amplifier, it can connect to more than double of the number led lights
Specs:
ColorRgb

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 2 comments on LEDJump Data Repeater RGB Signal Amplifier For LED Strips SMD3528 5050 12V 12A MAX Output (2 x 4pin connector included):

u/classicsat ยท 1 pointr/Lighting

If they are the same controllers, the one remote likely will control off of them at once, provided they are RF remotes, or you can bunch the IR receivers together, or rig one receiver to a few controllers.

You can get LED strip amplifiers, like this

u/butric ยท 1 pointr/arduino

This is actually a really easy and good starter project for anyone interested in Arduino.

Each of the digital (PWM) output pins on the arduino can be used in unison with a RGB LED strip controller to allow full RGB dimming of a 12v RGB strip.

You should try to find some code online to help you with this, but heres the general layout:

int red = 1;
int blue = 2;
int green = 3;

pinMode(red, OUTPUT);
pinMode(blue, OUTPUT);
pinMode(green, OUTPUT);

analogWrite(red, 255); // 0-255 for brightness

Obviously this is really bad code structure, hopefully you catch my drift. The Arduino cannot support a high load such as an LED strip, so this is why you need that booster pack.

Good luck!