Recent content by feiji

  1. F

    problem with code

    i i think the class is fine, i just retried the code without turning off the motors and it worked fine.
  2. F

    problem with code

    m2 class ? sorry what is that ?
  3. F

    problem with code

    this works as an initialisation for the motors , it's a must so that they can start rotating, i used it in the setup funtion to initialise them and i used in the end of the loop function because that was the only way i could make the motors rotate, otherwise , if i remove this line from the end...
  4. F

    problem with code

    yes i did, and it works fine with the seocond code
  5. F

    problem with code

    1000 is the minimum value for the motors i'm using, and it's the standard minimum value for brushless motors. when it's 1000, the motors are off.
  6. F

    problem with code

    do you know any ohter way to make the motors turn with arduino ?
  7. F

    problem with code

    Hello i've been trying to control brushless motors with a simple code with arduino, when i run the following code nothing happens, the motors do not start ///////////////// #include <Servo.h> Servo m1; Servo m2; void setup() { Serial.begin(9600); m1.attach(5); m2.attach(7)...
Top