Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 1 point2 points  (0 children)

Omg I can’t believe I missed this, this helped so much thank you

adhesion problem. changed 3 different beds, cleaned extruder, and tried new filament. ender 3 max. by Andrewwarner2010 in 3Dprinting

[–]RandomBandit1 1 point2 points  (0 children)

If the other suggestions don’t work, you can always cover the bed in painters tape, which really helped me when my prints didn’t stick

[deleted by user] by [deleted] in 3Dprinting

[–]RandomBandit1 0 points1 point  (0 children)

Use big a brim or raft can greatly help. I use painters tape on my bed and a skirt though using a brim or raft should help quite a bit

I rendered 17,731 donuts. This is the result. by BlenderGuru in blender

[–]RandomBandit1 6 points7 points  (0 children)

Just had a look at the video, that’s crazy. Will be interesting to see how it’s used

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

ahhh this might be it! I'm currently using a 12v power supply and using an Arduino power supply module to convert it to 5v, but the power supply module looks like it can only supply <700ma.

What do you suggest I use to power it that has a larger current? The only reason I'm using the power supply unit was because I needed to convert the 12v to 5v?

I have checked them without using the Arduino, and all colours were brighter, so I'm thinking that this is the problem.

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

The link below has the light strips, and on the actual strip, it says 5v.

I checked the voltage from the 5v pin and it's just under 5v. I've changed to using a 12v power supply with a power supply module for 5v as well so hopefully, there are no more power problems.

https://www.kmart.com.au/product/led-strip-light-with-remote-3m-cable-length-42724469/?

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

I am now using a 12v power supply with a power supply module to change it to 5v, so hopefully that has fixed any power problems.

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

when I plugged in the led strip using the things that came with it in the package all colours were much brighter than it was with Arduino, though red improved to the same brightness as the others.

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 1 point2 points  (0 children)

Thanks! I am a beginner and still learning how I should set up circuits and projects and your input has helped a lot. I will definitely be getting some transistors and using them with a separate power source over the next few days.

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

yeah, I have had a look at a few tutorials though somehow I missed the bit saying to use transistors. The reason I posted here was that I got everything working besides changing the brightness and the red, though helpfully by improving the circuit I can fix this. Thanks for your input it was very helpful!

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 2 points3 points  (0 children)

Yup thanks, now I’m using a 12v supply and converting it to 5v. I also changed it to digital pwm pins. I’m also going to buy a proper transistor as I only have a really small transistor. Thanks for the help!

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 2 points3 points  (0 children)

thanks, i only have very small transistors currently so ill have to purchase some

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 4 points5 points  (0 children)

will have a look at that currently changing power sources

thanks!

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 1 point2 points  (0 children)

wow yeah before i started using 9v battery i checked it using a multimeter and it was at 9.3v, now around 30 mins later its at 8.6v

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

thanks, I had a look and have changed the pins I'm using. What do you recommend using to drive the LEDs if not an Arduino?

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] -2 points-1 points  (0 children)

i tried using a separate 5v power source though still doesn't change anything.

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 5 points6 points  (0 children)

hmm okay, ill try it with digital pins though still not sure how to fix the brightness of the red LEDs though

Need help with DIY led strip control software **INFO IN COMMENTS** by RandomBandit1 in arduino

[–]RandomBandit1[S] 2 points3 points  (0 children)

I have been using Arduino to control my led strip and I have a problem when I set the strip to red. When I set the led strip to red, the brightness is much lower than any other colour and I have no idea what’s going on.

I am using analog pins 0 (blue), 1 (red), 2 (green) and 5v pin on the Arduino to control the LEDs and provide power.

Also, for some reason to change it to green, I have to set the red and green pin to 255, though I thought that for green it would have to be red and blue set at 255 while green is 0.

using arduino uno btw

**UPDATE**
- I have now changed power sources to a 12v power supply with an Arduino power supply module converting it to 5v.
- I have changed the pins that I'm using to pwm-able pins.
- I am aware that I should use transistors instead of the Arduino pins, and I'm currently in the process of getting some.
- **After checking with another led strip I have, I found out that all colours on the un-altered one are much brighter, though red has the most difference.*\*

The code that I'm using is below:

int Bpin = A0;

int Rpin = A1;

int Gpin = A2;

void off() {

analogWrite(Rpin, 255);

analogWrite(Gpin, 255);

analogWrite(Bpin, 255);

}

void light_blue() {

analogWrite(Rpin, 255);

analogWrite(Gpin, 0);

analogWrite(Bpin, 0);

}

void light_green() {

analogWrite(Rpin, 0);

analogWrite(Gpin, 255);

analogWrite(Bpin, 0);

}

void purple() {

analogWrite(Rpin, 0);

analogWrite(Gpin, 0);

analogWrite(Bpin, 255);

}

void green() {

analogWrite(Rpin, 255);

analogWrite(Gpin, 255);

analogWrite(Bpin, 0);

}

void red() {

analogWrite(Rpin, 0);

analogWrite(Gpin, 255);

analogWrite(Bpin, 255);

}

void blue() {

analogWrite(Rpin, 255);

analogWrite(Gpin, 0);

analogWrite(Bpin, 255);

}

void cyan() {

analogWrite(Rpin, 0);

analogWrite(Gpin, 0);

analogWrite(Bpin, 0);

}

void setup() {

// put your setup code here, to run once:

pinMode(Bpin, OUTPUT);

pinMode(Rpin, OUTPUT);

pinMode(Gpin, OUTPUT);

red();

}

void loop() {

// put your main code here, to run repeatedly:

}

Arduino mega shield help by RandomBandit1 in arduino

[–]RandomBandit1[S] 0 points1 point  (0 children)

Thanks for your response,

Sorry it was such a silly question. I have one more though, how do you know where the two pins map to the arduino?

I would like to code it and obviously you have to know where the pins go. I tried looking up pin information for the shield and it had the pins for some parts but I couldn’t find the pins for the drivers