Reading PWM Values from an RC Receiver using Arduino

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 มิ.ย. 2024
  • This is an example that demonstrates how to use Arduino to read RC values (50 Hz PWM) using pulseIn() or external interrupts.
    Check out this Reference Desk Mat for Arduino:
    amzn.to/3vO6QBl
    👉Subscribe for more robotics and engineering tips:
    / @theboredrobotllc
    Share this video with a friend:
    • Reading PWM Values fro...
    Website:
    www.theboredrobot.com/
    Parts needed for this example:
    Arduino Uno: amzn.to/3IofhnP
    RC (Remote Control) Transmitter and Receiver: amzn.to/33vpvEp
    Male to Male Jumper Wires: amzn.to/35ax6sl
    Servo Connector: amzn.to/3rE53c9
    or
    Male to Female Jumper Wires: amzn.to/3GNz7IY
    Connect:
    Instagram - /theboredrobot
    Twitter - @theboredrobot
    Facebook - / theboredrobot
    Pinterest - /TheBoredRobot
    Disclaimer: This video contains affiliate links, meaning that if you make a purchase from one of the product links, I'll receive a small commission.
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 78

  • @lnz5660
    @lnz5660 ปีที่แล้ว +34

    Its always the smallest youtubers who have the best tutorials.

  • @willyr5981
    @willyr5981 ปีที่แล้ว +9

    Thank you for making small videos on a single subject, it's alot easier to digest. Good Job!

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  ปีที่แล้ว +1

      Thank you! I'm glad it helped with your understanding of the topic.

  • @williamzhang6197
    @williamzhang6197 2 ปีที่แล้ว +3

    Thank you so much. It's really great to see these videos in such quality!

  • @noicthebrave
    @noicthebrave หลายเดือนก่อน +1

    Much appreciated - Needed something like this for a lil project of mine :) Very helpful

  • @lorenzothepasta2820
    @lorenzothepasta2820 2 ปีที่แล้ว +2

    Thank you so much, now I can FINALLY read pwm signals from my reciever. Thank you, thank you, thank you!!!!!! I used your code from your blog/website.

  • @brandonsprojects3294
    @brandonsprojects3294 ปีที่แล้ว +1

    Fantastic tutorial
    Informative and concise

  • @paulopmt1
    @paulopmt1 7 หลายเดือนก่อน

    Saved my day, thank you so much!

  • @Anselm1115
    @Anselm1115 4 หลายเดือนก่อน

    thank you so much, excatly what i needed!

  • @ToyTechMachines
    @ToyTechMachines 2 ปีที่แล้ว

    Nice tutorial

  • @elektron2kim666
    @elektron2kim666 9 หลายเดือนก่อน +1

    I'm doing the opposite as I wait for money or objects in the mail and it's a bit mind blowing. I already have a Pico W running code for PWM out like a throttle and the ESC/Brushless motor with BEC connectors. On an oscilloscope I get a square wave from the Pico pin. In stage 2 I want to hook in to "something" for auto throttle control which can be a heat sensor or the other servo. An RC car with a propeller is the original idea. Also removing the need for 2 hand controllers.

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  9 หลายเดือนก่อน

      That sounds like a fun project. I usually take that approach as well. I start with a controller and then I use sensors or some other input to create autonomous motion.

  • @andreweberjavorski2231
    @andreweberjavorski2231 25 วันที่ผ่านมา

    thanks code works

  • @DaveFer
    @DaveFer ปีที่แล้ว +2

    This is a great video -- very well-done and educational about interrupts. But ... the way this is constructed, won't this have the interrupt handler routine called with each pulse of the PWM signal? Even if the duty cycle hasn't changed? Won't this swamp the processor? ALSO, what is the point of a PWM port if it doesn't convert the PWM duty cycle into some value for us? Aren't you treating the PWM port like any other digital port?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  ปีที่แล้ว +1

      You are correct that an interrupt happens at each pulse, but I haven't had any issues with simple projects so far. I was able to use this to read an RC signal and control a stepper motors without a problem. Yes, I am using this PWM port simply as a digital port. I could use the "pulseIn" command to measure the PWM signal, but I didn't have great performance with it.

    • @DaveFer
      @DaveFer ปีที่แล้ว +1

      @@TheBoredRobotLLC Very interesting. I had the opposite result with my Arduino Mega 2560 ... the interrupt method absolutely swamped my board and it basically prevented any other processing.
      Here's another consideration: You're calculating the pulse width using an interrupt (which ties up the proc for the duration of your algorithm, no?).
      Is that any different from pulseIn()? I'm guessing there may be a slight difference but ... is your algorithm more efficient than the Arduino pulseIn() function? If so, congrats. But by how much? I suspect both methods take up approx. the same proc cycles per iteration.
      BUT, you're video is a stellar tutorial on how to implement hardware interrupt handlers. Sincere congratulations. It's well-done in every way and highly valuable. I'm just contesting this usage context ... or rather hoping someone will suggest a trick so that the interrupt isn't called on every pulse cycle. Best wishes!

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  ปีที่แล้ว

      @@DaveFer Thanks for the feedback. Perhaps there is a better approach for this application. It's strange that your Arduino Mega is struggling with this. Generally speaking, interrupts are faster than pulsIn(), but I think it could be a cool experiment to quantify that.

  • @JakeRobb
    @JakeRobb 6 หลายเดือนก่อน +1

    Thanks, nice video! Keep up the good work! FYI, "baud" rhymes with "clawed," not "cloud."
    It might be nice if you occasionally dipped into the "why" behind some of your decisions. For example, why 9600 baud? As far as I can tell, it just controls the maximum rate at which you can write new values to the serial output port, and just needs to be fast enough keep up with the 50Hz input rate -- but that's not obvious, and it would be good if you said so (and perhaps even showed what happens if you pick a different value). I'm not sure how big an int is in Arduino land; guessing 32 bits. So that's 50 * 32 = 1600 bits per second, which means that any rate higher than that would be sufficient here, and anything faster would make no difference (except, I suppose, the _tiny_ change in latency between input and output). Google says the Arduino can go up to 115,200 baud (12x faster than 9600), so you'd be looking at a potential latency change from ~100µs down to ~8µs.
    At first I thought that the _input_ was 9600 baud, but I did the math on that and determined that it would only give you enough resolution to differentiate about ten levels of pulse width. Your output graph clearly shows at least an order of magnitude more resolution than that!

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  6 หลายเดือนก่อน

      Thank you for this! My apologies on the mispronunciation.
      The "why" is something that I could have delved into more. Generally speaking, I try to focus more on how to do something, but in this example, you're right in that the "why" could provide more insight in some other specific applications.

  • @frasermossman8467
    @frasermossman8467 2 ปีที่แล้ว +2

    Could you show how to do this with (multiple) switches on your transmitter?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  2 ปีที่แล้ว +1

      Sure, I can do that for my next video.

  • @user-ho8nq9ol1r
    @user-ho8nq9ol1r ปีที่แล้ว +1

    Thank you for this nice video, very instructive. It is a nice start for a RC project. I am however experiencing soms troubles. When using this sketch on a Nano, it stalls after about 35 minutes. Do you have any idea what might cause this?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  ปีที่แล้ว

      To be honest, I have never let it run for that long. I'm not quite sure what the answer is here, but there could be some sort of overflow issue here. I would have to do a bit of research on that.

    • @jeffreyharpen6772
      @jeffreyharpen6772 8 หลายเดือนก่อน +1

      The micros() value is 32 bit unsigned integer which overflows after ~70 minutes (see the arduino language documentation). The reason you got 35 minutes is probably because you had signed int in your code.

  • @ivanravaglioli
    @ivanravaglioli 7 วันที่ผ่านมา

    Avrei bisogno di leggere 6 canali da un ricevitore RC, come devo modificare la Sketch?

  • @rufo
    @rufo ปีที่แล้ว

    Thanks for the tutorial! Could one use a brushed ESC plugged into the RC receiver, and just measure the analog voltage it delivers? Would that work?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  11 หลายเดือนก่อน

      You're talking about reading the motor output for a brushed ESC? Yes it's possible with the Arduino, assuming that the output isn't greater than 5V.

    • @JakeRobb
      @JakeRobb 6 หลายเดือนก่อน

      The ESC in that scenario would be acting as a digital-to-analog converter, taking the digital PWM signal and outputting an analog voltage signal. And then you want the arduino to take that analog signal and convert it back to digital? It'd work (given that you stay within the voltage limitations), but it seems kinda silly.

  • @user-sj7ej4yq9c
    @user-sj7ej4yq9c 8 หลายเดือนก่อน

    Excellent and succinct video! If I used a receiver with a 2.4 GHz signal, would it still work with the pwm stuff?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  8 หลายเดือนก่อน

      Yes this should still work. The Arduino is reading the PWM signal and not the 2.4GHz signal.

    • @JakeRobb
      @JakeRobb 6 หลายเดือนก่อน

      2.4GHz is the carrier frequency, not the signal rate. So long as your transmitter and receiver are on the same carrier frequency (aka channel), you should be good to go -- and I'd expect that you'd still see 50Hz signal rate.

  • @matthewjensen6380
    @matthewjensen6380 3 หลายเดือนก่อน

    @TheBoredRobot how can I control a mosfet using this technique to drive coreless motors? Thanks For Your Help.

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  3 หลายเดือนก่อน +1

      Assuming you have everything wired up correctly, you might be able to get away with just using the analogWrite() command. This pin sending the command could be sent to the gate with a resistor to protect the Arduino.

    • @matthewjensen6380
      @matthewjensen6380 3 หลายเดือนก่อน

      I will try. Thanks

  • @undyinglegends3973
    @undyinglegends3973 ปีที่แล้ว

    I have a question, I am currently using this technique to try and controll a servo, but everytime when i pull on the elevator, the servo starts twitching

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  ปีที่แล้ว

      The first thing I would check is how smooth the signal to your servo is. If there is a lot of noise, then you might want to use a smoothing technique for the signal being sent to your servo. If that's not the case, I've had issues in the past if I am powering the servo directly from the 5V output from the Arduino.

  • @billysallerlei
    @billysallerlei 4 หลายเดือนก่อน

    I playing around with this stuff for a fuew weeks. I have the problem thatt at the 0 position, the arduino reports values between 1505 and 1490, it ist'nt stable. At a stable position with an switch at the radio, defined 40% , isn't stable too. Is woobling around 20 digits.
    Is this an issue on arduinohardware or the used library?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  4 หลายเดือนก่อน

      That seems normal. The value is going to bounce around a bit. You can implement some sort of smoothing function or filter if it doesn't work for your application.

  • @matzetech
    @matzetech 7 หลายเดือนก่อน

    I want to do the same but with an Raspberry Pi Pico. Should I wire Servo Anode to ADC Ground and Servo Signal to ADC0? The Servo Signal and Servo Anode Pin give a low Voltage between 0.2V and 0.5V which is fine for the Pico's max Voltage of 3.3V

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  7 หลายเดือนก่อน

      Sorry, to be completely honest, I don't have any experience working with Raspberry Pi yet.

    • @matzetech
      @matzetech 7 หลายเดือนก่อน

      @@TheBoredRobotLLC No problem, I found out there are RC switches that can measure the length of the signal and switch something when the signal is low or high

  • @zl2961
    @zl2961 5 หลายเดือนก่อน

    how would you do it fot a switch on the transmitter? Im trying to use arduino to control lights on an RC plane.

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  5 หลายเดือนก่อน

      It would work in the same way. Instead of a continuous set of pulse lengths, it would just be two discrete pulse lengths when you flip the switch. You would just have to measure what those two values are when the switch is flipped back and forth.

  • @youssefmohammed6126
    @youssefmohammed6126 2 ปีที่แล้ว

    how can i use this to control a stepper motor like a dc motor

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  2 ปีที่แล้ว

      You'll have to map the values you read from remote control to some sort of value that relates to the time between steps for the stepper motor. I'm working on a video to do this.

  • @pendramoon
    @pendramoon 3 หลายเดือนก่อน

    how can I find out the same thing but from a Bluetooth remote controller app?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  3 หลายเดือนก่อน

      Do you have any documentation on the type of the signal coming from the Bluetooth module? If it's the same PWM signal as an RC receiver, the process should be the same.

  • @9e05cherianpadipurackalvar6
    @9e05cherianpadipurackalvar6 3 หลายเดือนก่อน

    i didn't understand why just using the pulseIn command wasn't enough. (im new to this stuff)

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  2 หลายเดือนก่อน +1

      The pulseIn command can be too slow depending on the application. It stops all other parts of the programming while it waits for the pulse.

  • @user-nb1oq5fu6t
    @user-nb1oq5fu6t 3 หลายเดือนก่อน

    I can only read up to 50% of the duty cycle and then the readings begin to invert, not entirely sure why. Thank you

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  3 หลายเดือนก่อน

      This can be a number of things. My first thought would be to check the output settings on your transmitter. I do have an update to this video to make things easier.
      th-cam.com/video/MsUL-RY8ZrY/w-d-xo.html

    • @user-nb1oq5fu6t
      @user-nb1oq5fu6t 3 หลายเดือนก่อน

      Hi, thanks so much for your response I managed to write a working programme with help from your videos

  • @finewoodworkingbyJJ
    @finewoodworkingbyJJ 10 หลายเดือนก่อน

    produces an overflow after 35mins cause youre using long instead of unsinged long...
    will be 70mins with unsigned

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  10 หลายเดือนก่อน

      That makes sense. Thank you!

    • @finewoodworkingbyJJ
      @finewoodworkingbyJJ 10 หลายเดือนก่อน

      Thank You for the Idea 🙂checking old time < new time will eaven make it easy to reset the variables. I am doing it in your interrupt
      @@TheBoredRobotLLC

  • @albon4038
    @albon4038 ปีที่แล้ว

    Hi do you have any contact platform for pm. Email?

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  ปีที่แล้ว

      You can leave a message for me here:
      www.theboredrobot.com/contact

  • @levinoshow9139
    @levinoshow9139 10 หลายเดือนก่อน

    oops! friend to control the position of the stepper motor and the speed

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  9 หลายเดือนก่อน

      To control speed and position at the same time, you might have to try out using the AccelStepper Library. I have another video on this as well.

  • @drinski6720
    @drinski6720 6 หลายเดือนก่อน

    When could CurrentTime be less or equal than StartTime? I think never. CurrentTime will be greather than StartTime always.

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  6 หลายเดือนก่อน

      Yes, that's true! That's an oversight on my end. The inequality is not necessary in the code.

  • @NightEagle816
    @NightEagle816 13 วันที่ผ่านมา

    volatile long StartTime = 0;
    volatile long CurrentTime = 0;
    volatile long Pulses = 0;
    int PulseWidth
    void setup() {
    Serial.begin(9600);
    pinMode(RCPin, INPUT_PULLUP);
    attachInterrupt(digtalPinToInterrupt(RCPin),PulseTimer,CHANGE);
    }
    void loop() {
    if (Pulses < 2000){
    PulseWidth = Pulses;
    }
    Serial.println(PulseWidth);
    }
    void PulseTimer(){
    CurrentTime = micros();
    if (CurrentTime > StartTime){
    Pulses = CurrentTime - StartTime;
    StartTime = CurrentTime;
    }
    }

    • @TheBoredRobotLLC
      @TheBoredRobotLLC  6 วันที่ผ่านมา

      I have an update to this video to make things easier:
      th-cam.com/video/MsUL-RY8ZrY/w-d-xo.htmlsi=HysbnLop4zBKpxot

  • @arduinomaquinas
    @arduinomaquinas 6 หลายเดือนก่อน +1

    Like 660, great, awesome project, 🇧🇷😊👍 subscribed, @arduinomaquinas thank you bro, 😉👍👍