Siddchafe

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • in reply to: programm not work pluto 1.2 #4480
    Siddchafe
    Participant

      actually i selected pluto v3r and i have pluto 1.2 and i was uploading a autotakeoff code of v3r in pluto1.2 after which the red led becomes high on and no response.
      But as i tried uploading other codes it works.

      in reply to: programm not work pluto 1.2 #4478
      Siddchafe
      Participant

        Its working with pluto blocks but when I upload a code with cygnus the pluto don’t respond the led stucks on red on

        in reply to: programm not work pluto 1.2 #4475
        Siddchafe
        Participant

          I’m facing same problem the drone is stuck on red led no response on app and cygnus when i upload code from pluto blocks it works but on cygnus no output

          in reply to: Code error #4400
          Siddchafe
          Participant

            In sesame code inside pluto loop i have the query about it ,
            As why those integers are taken and calculated are they a predefined terms or we can change it as per own

            in reply to: Code error #4384
            Siddchafe
            Participant

              Yeah thankyou so much for support it worked 🤘🏻

              in reply to: Code error #4382
              Siddchafe
              Participant

                1.0.6.201808090838

                in reply to: Code error #4380
                Siddchafe
                Participant

                  Yes i did

                  in reply to: Code error #4375
                  Siddchafe
                  Participant

                    I attached the screenshot of following

                    in reply to: Code error #4373
                    Siddchafe
                    Participant

                      Im using windows ,while using some of libraries as i mentioned earlier its showing error

                      in reply to: Code error #4372
                      Siddchafe
                      Participant

                        Im using windows while using some of libraries like utils.h & estimate.h its showing error

                        in reply to: Code error #4370
                        Siddchafe
                        Participant

                          Windows

                          in reply to: Code error #4368
                          Siddchafe
                          Participant

                            I have those documents already but the problem is the cygnus ide is showing error for user.h and estimate.h(unresolved inclusion)

                            in reply to: Code error #4365
                            Siddchafe
                            Participant

                              Actually i was trying to use the codes from pdf but the api are different in code and in documents

                              in reply to: Code error #4364
                              Siddchafe
                              Participant

                                I tried but not working

                                in reply to: Code error #4362
                                Siddchafe
                                Participant

                                  /*Do not remove the include below*/
                                  #include “PlutoPilot.h”
                                  #include “User.h”
                                  #include “Utils.h”
                                  /*The setup function is called once at Pluto’s hardware startup*/
                                  void ​plutoInit​()
                                  {
                                  /*Add your hardware initialization code here*/ }
                                  /*The function is called once before plutoLoop when you activate Developer Mode*/
                                  void ​onLoopStart​()
                                  {
                                  /*do your one time tasks here*/
                                  LED.flightStatus(DEACTIVATE); ​/*Disable default Led behavior*/
                                  }

                                  /*The loop function is called in an endless loop*/
                                  void ​plutoLoop​()
                                  {
                                  /*Add your repeated code here*/
                                  FlightMode.​set​(RATE); /​ *Change flight mode to Rate mode*/
                                  LED.​set​(RED, ON); LED.​set​(BLUE, ON); LED.​set​(GREEN, OFF);
                                  }
                                  /*The function is called once after plutoLoop when you deactivate Developer Mode*/
                                  void ​onLoopFinish​()
                                  {
                                  /*do your cleanup tasks here*/
                                  LED.flightStatus(ACTIVATE); ​/*Enable default Led behavior*/
                                  }

                                  Phone clone :

                                  /*Do not remove the include below*/
                                  #include “PlutoPilot.h” #include “Control.h” #include “User.h” #include “Utils.h” #include “Estimate.h”
                                  int16_t ​Error=0, PlutoXHeading=​0;​
                                  /*The setup function is called once at Pluto’s hardware startup*/
                                  void ​plutoInit​()
                                  {
                                  /*Add your hardware initialization code here*/
                                  }
                                  /*The function is called once before plutoLoop when you activate Developer Mode*/
                                  void ​onLoopStart​()
                                  {
                                  /*do your one time tasks here*/
                                  LED.flightStatus(DEACTIVATE); /*disablethedefaultLEDbehavior*/
                                  Error = App.getAppHeading() – Angle.get(AG_YAW);
                                  Monitor.println(“Error is: “, Error); }
                                  /*The loop function is called in an endless loop*/
                                  void ​plutoLoop​()
                                  {
                                  /*Add your repeated code here*/
                                  Monitor.println(“PhoneHeading: “, App.getAppHeading());
                                  PlutoXHeading = App.getAppHeading() – Error; if (PlutoXHeading < 0)

                                  {
                                  PlutoXHeading+=360;
                                  }
                                  Monitor.println(“PlutoX should turn to “, PlutoXHeading);
                                  DesiredAngle.set(AG_YAW, PlutoXHeading); Monitor.println(“PlutoX is at: “, Angle.get(AG_YAW));
                                  LED.set(RED, ON);
                                  LED.set(GREEN, ON); }
                                  /*The function is called once after plutoLoop when you deactivate Developer Mode*/
                                  void ​onLoopFinish​()
                                  {
                                  /*do your cleanup tasks here*/
                                  LED.flightStatus(ACTIVATE);
                                  /*Enable the default LED behavior*/
                                  }

                                Viewing 15 posts - 1 through 15 (of 15 total)