Search results

  1. P

    Teensy 4.0 unable to open com for reboot request

    I have a teensy 4.0 and i am unable to program it via USB. I programmed it before multiple time and it worked fine. I also tried another teensy 4.0 board. Tried pressing the reset button and on the teensy loader i can see it goes through the reboot process but i still cant program it. I got the...
  2. P

    teensy 4.1 esc control

    Thats a typo. But yea i have tried the power up sequence but that also doesn't seem to work from the teensy
  3. P

    teensy 4.1 esc control

    I have added the missing lines. #include <PWMServo.h> #define channumber 8 int channel[8]; int PPMin = 23; #define TH1 2 #define TH2 3 PWMServo throttel1; PWMServo throttel2; void setup() { Serial.begin(9600); throttel1.attach(TH1)...
  4. P

    teensy 4.1 esc control

    I am able to read the ppm signals. The only issue i am having is getting the motors to run. I am able to run the servos. I have also tried mapping it from 1000 to 2000 but i still have had no luck. the serial print just prints out the throttle value the receiver is getting
  5. P

    teensy 4.1 esc control

    Will do. sorry about that.
  6. P

    teensy 4.1 esc control

    I am trying to control an esc with the teensy 4.1 board but i am not able to get it to work using the PWM Servo library. #include <PWMServo.h> int channel[8]; int PPMin = 23; #define TH1 2 #define TH2 3 PWMServo throttel1; PWMServo throttel2; void setup() {...
Back
Top