Hey you guys,
i am a noob and i got a question.
I am running a brushless dc motor with its esc, powered by a computer psu (12v). I can steer the motor's rpm with a potentiometer and an arduino uno, the code was adapted from the interwebs. Everything works fine.
I updated to a more powerful power supply today (also 12v), but this one simply doesnt work. The esc gives me the initial 3 beep sounds, but instead of continuing with 2 more beep sounds like it did with the old psu, it just starts to beep at ~2 sec intervals. I tried everything i could find in regards of arming the esc (starting with max throttle etc), but nothing results in any kind of reaction, it just continues to beep.
If i plug the system into the old psu, everything just works perfectly again.
Here are the specs from my rig:
Motor: A2212 KV1000
ESC: No clue, prolly super low quality, came in a plastic bag without any manual or serial code. came with the motor
PSU (old pc): a random computer psu with max 18 amps on the 12 v rail
new PSU: https://smile.amazon.de/gp/product/B07GZTF6HZ/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&th=1
Code:
#include <Servo.h>
Servo esc;
int FanSpeed;
void setup() {
esc.attach(3, 1000,2000);
Serial.begin(9600);
}
void loop() {
FanSpeed=analogRead(A0);
FanSpeed=map(FanSpeed, 0, 1023, 0, 180);
esc.write(FanSpeed);
Serial.print(FanSpeed);
}
maybe someone of you can help me.
Love you guys:)