Pinecil Intro
9:06
21 сағат бұрын
Header Pins to Practice Soldering Board
11:10
Geofences in Arducopter
25:57
3 ай бұрын
Ardupilot Quicktune Pt 2
11:08
3 ай бұрын
Ardupilot QuickTune Part 1
17:19
3 ай бұрын
Ardupilot LED Control Intro
11:54
4 ай бұрын
Loading and Utilizing a Lua Script
16:06
Fall 2024 FPV Build Instructions
49:46
Soldering Tools & Intro
17:53
5 ай бұрын
#igow4 week1 WeBleedFPV Orbitals
0:58
#igow4  week2 Chairlympics
1:01
11 ай бұрын
PicaSim 90sec Skills Improvement
5:17
Пікірлер
@TiDeviSpaventareeeeh
@TiDeviSpaventareeeeh 6 күн бұрын
the video is upside down
@steinne
@steinne 28 күн бұрын
thank you for putting this together.... great video
@yairzafrany838
@yairzafrany838 Ай бұрын
thanks - i have an issue with reverse direction calibration
@davidjacobs8558
@davidjacobs8558 Ай бұрын
It was very difficult to find any documentation on Ardupilot LED script. but this seem to be the dumb basic way of turning them on individually when daisy chained. this shows extremely simple Lua for LED strip of 16 leds (8 + 8) connected to servo 13. first 8 (0 to 7) are Red, next 8 (8 to 15) are Green. -------------------------------------------------------------------------------------------------------- serialLED:set_num_neopixel(13, 16) serialLED:set_RGB(13, 0, 255, 0, 0) serialLED:set_RGB(13, 1, 255, 0, 0) serialLED:set_RGB(13, 2, 255, 0, 0) serialLED:set_RGB(13, 3, 255, 0, 0) serialLED:set_RGB(13, 4, 255, 0, 0) serialLED:set_RGB(13, 5, 255, 0, 0) serialLED:set_RGB(13, 6, 255, 0, 0) serialLED:set_RGB(13, 7, 255, 0, 0) serialLED:set_RGB(13, 8, 0, 255, 0) serialLED:set_RGB(13, 9, 0, 255, 0) serialLED:set_RGB(13, 10, 0, 255, 0) serialLED:set_RGB(13, 11, 0, 255, 0) serialLED:set_RGB(13, 12, 0, 255, 0) serialLED:set_RGB(13, 13, 0, 255, 0) serialLED:set_RGB(13, 14, 0, 255, 0) serialLED:set_RGB(13, 15, 0, 255, 0) serialLED:send(13)
@davidjacobs8558
@davidjacobs8558 Ай бұрын
let's say there is 2 led stips in daisy chain, and connected to a single servo port. how do u make on strip to light up in green, and the other in red?
@davidjacobs8558
@davidjacobs8558 Ай бұрын
I have Matek F405 WTE with Matek LED 2812 stips in daisy chain. for some reason, the LED only works if connected to LED port, which is Servo 12 port. doesn't work if connected to Servo 11 or Servo 10, not sure why. and also only upto 15 LED's would light up. each strips has 8 LED's. not sure why Mission Planner input is in decimal format with two digits after the point.
@borgivatasmidatumanong7465
@borgivatasmidatumanong7465 2 ай бұрын
greetings..i would like to use the f405-se in a 4 servo plane..can you kindly show the wiring connections in the f405-se if it is possible.thanks
@CP-zi3eg
@CP-zi3eg 2 ай бұрын
Thank you for the video. Could you make a video where is explained how to run a mission, previously saved, when you have no internet connection at the airfield ?
@YEA-r3b
@YEA-r3b 2 ай бұрын
i couldn't see the "joystick" option in the settings menu
@OrchardTech-24
@OrchardTech-24 3 ай бұрын
waiting for Part-2! secondly, is sd card is required to be present in PixHawk for QuikTune to work?
@ZawiszaCzarnyFPV
@ZawiszaCzarnyFPV 4 ай бұрын
Nice
@agespin
@agespin 4 ай бұрын
Hi i am new to FPV I have a futaba 14 sg can this be use for FPV
@chiennguyenngochoang2300
@chiennguyenngochoang2300 4 ай бұрын
nice video m8, love it. Btw do u have any idea to control 1 servo with PWM 1000 - 2000 when armed and not armed via Lua script: -- Define the GPIO pin numbers (Use SRV_Channels to control GPIO pins) local spreader_pin = 94 --I connect through AUX1, but were told to change this into 94 for scripting1 function update() if not arming:is_armed() then SRV_Channels:set_output_pwm(spreader_pin, 1100) gcs:send_text(0, "Pin set to LOW (unarmed)") else SRV_Channels:set_output_pwm(spreader_pin, 1900) gcs:send_text(0, "Pin set to HIGH (armed)") end return update, 100 -- Run every 100 ms end return update()
@kiwiron
@kiwiron 4 ай бұрын
Are the motors a special size? All of the 2812 900Kv products that I've seen have 19mm x 19mm mounting hole centers, yet the X500 V2 frame has 14mm and 16mm mounting patterns according to Holybro. Or maybe you're using a special carbon fibre adaptor plate? If it is it would useful to have it confirmed that it fits into the arm shells.
@dpapworthuas
@dpapworthuas 4 ай бұрын
The motors used in build can be found here, rotorgeeks.com/rotorgeeks-2812-900kv?search=2812 they do have 19x19 mounting. We use the standard carbon mounting plates from Holybro with the X500 v2 kit too - I just measured one, it looks like it would support from 16x16 to 19x19. The blue injection molded pieces appear to be the same size range. I hope that helps.
@kiwiron
@kiwiron 4 ай бұрын
Figured it out with some photogrammetry measurement from your video. By the look the 16 mm centre motor holes in the carbon fibre mounting plate have been filed out to a slot to accommodate 19 mm centres, only 1.5 mm per hole needed. A thin washer with slightly longer bolt should recover any compromised strength.
@dpapworthuas
@dpapworthuas 4 ай бұрын
@@kiwiron I'm glad you got it sorted out. I have not done any filing myself - the plates to my knowledge come that way from the factory.
@kiwiron
@kiwiron 4 ай бұрын
​@@dpapworthuas Thanks. Actually the guys at Holybro technical just contacted me again to say that they'd made an error, that the V2 was slotted to 19mm. So all is now clear! Have just ordered a set of 3110 800KV motors.
@dpapworthuas
@dpapworthuas 4 ай бұрын
@@kiwiron Oh good to hear - I hope your build goes well!
@joshuazelmon2716
@joshuazelmon2716 4 ай бұрын
easy to understand! great vid...
@hi_desert_rat
@hi_desert_rat 4 ай бұрын
Nice little build.
@ryanjensen-j1d
@ryanjensen-j1d 6 ай бұрын
thank you so much, you're a blessing
@luttappi_airlines
@luttappi_airlines 7 ай бұрын
thanks for the explanation..saved my time on figuring out
@alexandralexandrovich9501
@alexandralexandrovich9501 10 ай бұрын
Does it means that you can control your fpv by laptop and internet?
@ReRunTyson
@ReRunTyson 10 ай бұрын
I have a Radiomaster Nano and it seems like when I plug it in via USB the Com port doesn't pop up. How do you solve that?
@kian3217
@kian3217 11 ай бұрын
😎 Promo sm
@SuperJohnedge
@SuperJohnedge 11 ай бұрын
I was watching your video on how to do sbus for aura 5. How do you get around aura modes must be on channel 5? There no place for comments on that video.
@theoztreecrasher2647
@theoztreecrasher2647 11 ай бұрын
Very handy that it can be set to maintain some degree of control when everything from the Mini back to antenna is dead.
@Kolecerfpv
@Kolecerfpv 11 ай бұрын
Nice fly
@hi_desert_rat
@hi_desert_rat 11 ай бұрын
Deep!
@JDDupuy
@JDDupuy 11 ай бұрын
Thanks for the quick refresher course.