RC Airplane Homemade Autopilot (Arduino - PID control)

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.ย. 2024

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

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

    Greats! We need a sequel 🤝

  • @rizkisetiawan5628
    @rizkisetiawan5628 3 ปีที่แล้ว +12

    Hy , that was really good job ., Do you mind to share the code or schematic of this project ?

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

    Bien joué!

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

    Should add max roll angle limit or in some cases, it will lose lift.

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

    this is really cool man but can you share the code with us plz?

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

    very nice video!
    it would help people if you share arduino code and electronic schematic.

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

    ı want to build a programmable flıght controller (like pixhawk) using raspberry pi pico or esp32 and nrfl01 module as telemtry

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

      I do too! Have you succeeded? If so, can you send me the code? Thanks in advance

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

      @@charlienicholsonr how its going ?

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

      Bro guide me too if you got that

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

    Cool video! I plan to try a similar project. Can you share the code to help me kickstart ideas on how t set up the gps in Arduino?

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

      you can use neo 6M GPS module which is compatable with arduino uno and this is the code to get lat and long:
      #include
      //#include
      #include "SoftwareSerial.h"
      TinyGPSPlus gps;
      SoftwareSerial ss(6, 7);// TX, RX
      void setup() {
      Serial.begin(9600);
      ss.begin(9600);
      }
      void loop() {
      // put your main code here, to run repeatedly:
      while (ss.available() > 0) {
      if (gps.encode(ss.read())) {
      if (gps.location.isUpdated()) {
      Serial.println(String(gps.location.lat(), 7) + "," + String(gps.location.lng(), 7));
      }
      delay(1000);
      }
      }
      }

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

    Where's the update?

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

    Great!!! But do yo mind to share the code??? I am doing something like that and need some guidance... Thanks in advance.

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

    hey what happened to your goals

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

    autopilot software nam

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

    where is the code?

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

    Could you plz provide code

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

    Provide the code plzz

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

    hi i am doing a project like this culd you plis show me the whole code