The Caution Panel (with a Typo) - A10C Warthog Simulator

  Рет қаралды 67,971

The Warthog Project

The Warthog Project

Күн бұрын

Пікірлер: 114
@mike_van_in
@mike_van_in 4 жыл бұрын
I don't know if enough people have told you this - but your video production and your narration is really good. No unpleasant verbal mannerisms, just clear, well prepared speech, well edited transitions, practical lighting - all things that are invisible when done properly. Most of all; consistent! Excellent work!
@RobotoForgoto
@RobotoForgoto 2 жыл бұрын
I don't know....what about the dodgy accent! 🤣 just pulling yer leg!
@jwracingteam
@jwracingteam 2 жыл бұрын
Didn't know I needed a laser cutter/engraver until I just viewed this :)
@philiplitvin3914
@philiplitvin3914 4 жыл бұрын
I keep waiting for the video of you installing an engine and taking off out of your living room.
@robbieh1899
@robbieh1899 4 жыл бұрын
Mate, you've my ULTIMATE respect and appreciation in what you've accomplished. I only worked out recently how to release bombs on the A10C...
@sporehux8344
@sporehux8344 4 жыл бұрын
Fun fact, you can catch up to your bombs when diving after release. :(
@recklesflam1ngo968
@recklesflam1ngo968 3 жыл бұрын
@@sporehux8344 That sad face tells me you learning this did not end well :(
@WarrenPostma
@WarrenPostma 3 жыл бұрын
Hello other me.
@icemarkom
@icemarkom Жыл бұрын
@@sporehux8344 You can do that in Hornet, too. Ask me how I know :-)
@Squog
@Squog 4 жыл бұрын
Good job dude! super jelly of your setup! Looking forward to you getting a fully working HUD and then completing the whole shebang with a canopy frame (hint hint hint!) ;)
@sorryforcallingyouanelonga1766
@sorryforcallingyouanelonga1766 4 жыл бұрын
Yes that would be so cool
@Waylander131
@Waylander131 2 жыл бұрын
fantastic, I can't get enough of your videos, Sir! I will use this knowledge on building my cockpit for a different type of aircraft but the know-how you show is priceless! Due to budget constraints, I can't afford a K40 or similar laser cutter so I am building a laser CNC myself and I'm going to use the machine for engraving only and do the cutting by hand.
@terranovarain6570
@terranovarain6570 4 жыл бұрын
Amazing skills 👏 love your passion
@matk4731
@matk4731 4 жыл бұрын
That’s sick. You must be looking forward to the update A-10. Thanks for sharing 👍🏻👍🏻🙃🙃
@Jager-er4vc
@Jager-er4vc 4 жыл бұрын
Absolutely love your A-10C project! Keep the videos coming!!!
@scottcampbell96
@scottcampbell96 3 жыл бұрын
The real panels have two bulbs per status light (for redundancy) and they are definitely not of equal brightness. Since some of your status lights will be a little dim because of the slightly burned pieces, they actually contribute to more realistic lighting.
@RainmanHST
@RainmanHST 4 жыл бұрын
Fantastic video.. Man I REALLY wish I purchased a laser cutter like yours when I started my project.
@No1sonuk
@No1sonuk 4 жыл бұрын
My first thought on LEDs for this panel is "Neopixels". The wiring is easy - Power all in parallel, data all in series. Control is easy - One data line from the Arduino, each LED is individually RGB addressable.
@bretttoddable
@bretttoddable 4 жыл бұрын
I've been fiddling around with doing this with Neopixels, any pointers on the required Arduino code required to address each Led?
@No1sonuk
@No1sonuk 4 жыл бұрын
@@bretttoddable I use the FastLED library here: github.com/FastLED/FastLED
@bretttoddable
@bretttoddable 4 жыл бұрын
@@No1sonuk thanks for that, I'm having a hard time getting dcs bios to run the fastled code, don't suppose you mind sharing yours?
@No1sonuk
@No1sonuk 4 жыл бұрын
@@bretttoddable I've only tried a simple backlight brightness thing so far. This code also includes some LCD stuff you'll need to extract. One thing to remember is to do all the other library includes BEFORE the DCS BIOS library include. ' ' /* Tell DCS-BIOS to use a serial connection and use interrupt-driven communication. The main program will be interrupted to prioritize processing incoming data. This should work on any Arduino that has an ATMega328 controller (Uno, Pro Mini, many others). */ #define DCSBIOS_IRQ_SERIAL #include // #include #include #include // I2C connections: // Board I2C / TWI pins // Uno, Ethernet A4 (SDA), A5 (SCL) // Mega2560 20 (SDA), 21 (SCL) // Leonardo 2 (SDA), 3 (SCL) // Due 20 (SDA), 21 (SCL), SDA1, SCL1 #include LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 20 chars and 4 line display #include "DcsBios.h" /* paste code snippets from the reference documentation here */ // Which pin on the Arduino is connected to the NeoPixels? #define BACKLIGHTPIN 9 // How many NeoPixels are attached to the Arduino? #define NUMPIXELS 12 CRGB leds[NUMPIXELS]; // For fastLED uint8_t backlightBrightness = 64; // initial value - will be set in brightness function later (255 max) uint8_t backlightBrightnessOld = 64; // initial value - for use in loop code DcsBios::LED masterCaution(0x1012, 0x0800, 13); // Master caution light DcsBios::Switch2Pos ufcMasterCaution("UFC_MASTER_CAUTION", 10); // Master caution reset // This secction determines which control the backlight LEDs respond to void onLcpConsoleChange(unsigned int newValue) { /* your code here */ backlightBrightness = map(newValue,0, 65535, 0, 255); // Change 16-bit input to 8-bit for FastLED brightness function FastLED.setBrightness(backlightBrightness); // Set the new level FastLED.show(); // Send it to the LEDs } DcsBios::IntegerBuffer lcpConsoleBuffer(0x1150, 0xffff, 0, onLcpConsoleChange); void onCmsp1Change(char* newValue) { lcd.setCursor(0,0); // set cursor position (column,line) starting at 0 lcd.print(newValue); } DcsBios::StringBuffer cmsp1Buffer(0x1000, onCmsp1Change); void onCmsp2Change(char* newValue) { lcd.setCursor(0,1); // set cursor position (column,line) starting at 0 lcd.print(newValue); } DcsBios::StringBuffer cmsp2Buffer(0x1014, onCmsp2Change); void setup() { DcsBios::setup(); lcd.init(); // initialize the lcd lcd.backlight(); lcd.setCursor(0,0); // set cursor position (column,line) starting at 0 lcd.print("Disply online"); lcd.setCursor(0,1); // set cursor position (column,line) starting at 0 lcd.print("Awaiting DCS"); FastLED.addLeds(leds, NUMPIXELS); FastLED.setBrightness(backlightBrightness); fill_solid( leds, NUMPIXELS, CRGB(0,255,0)); // Fill strip with green leds[0] = CRGB::Red; // Set 1st led as red - because why not? FastLED.show(); } void loop() { DcsBios::loop(); } ' ' BTW, I use this username over on the ED forums if you'd prefer to continue this in a better format.
@bretttoddable
@bretttoddable 4 жыл бұрын
@@No1sonuk Many thanks for this bud, I will look you up in the forums... Thanks again!
@Datttsnake
@Datttsnake 4 жыл бұрын
This is great Ive been trying to figure out how to make a annunciator panel and this is exactly what I needed!
@MrHichammohsen1
@MrHichammohsen1 4 жыл бұрын
Amazing work as usual! Very inspiring.
@ALPHARICCO875
@ALPHARICCO875 Жыл бұрын
Fantastic work Congratulations 👌👏
@james2563
@james2563 4 жыл бұрын
Perfect, I love your videos. It will be very helpfull when I start with my own Cockpit.
@GaryMCurran
@GaryMCurran 4 жыл бұрын
I have to wonder which you like more, the fling of your sim, or the actual building of it! I'm not in a position right now, but after watching your video, and the new Flight Simulator 2020, I want to build a GA, complex single or twin cockpit. I'd like to find a wrecked fuselage for something like a Piper Seminole, Arrow, or Malibu. Cut off the fuselage right before the firewall and aft of the two front seats. Then, start to fill in the cockpit. A couple of G1000 displays, a yoke that gets connected behind the panel to both yokes in the cockpit. Not sure about the rudder pedals. Anyway, your work on your son is very encouraging for those of us who can't fly the real stuff anymore
@WarrenPostma
@WarrenPostma 3 жыл бұрын
This is really cool. It makes me wanna go out and buy one of these laser cutter dealies. I am thinking of making a thing that looks like it could be either a caution panel or an MFD, or a glass cockpit module (thing general aviation garmins), and is mounted in a cockpit, but the display will be entirely handled by an android tablet.
@CasaDeLoco_BoredBob
@CasaDeLoco_BoredBob 3 жыл бұрын
This is a thing of beauty.
@yorgle
@yorgle 3 жыл бұрын
Really great technique to make this panel! Love it! Thanks!
@GeoFry3
@GeoFry3 3 жыл бұрын
Looked like you are using regular screws for you panels. Look up dzus/zloc fasteners for that authentic touch. They are quick release fasteners used on many instrument panels.
@Xeus1985
@Xeus1985 4 жыл бұрын
What amazing work Sir! Keep on!
@D4NS80
@D4NS80 3 жыл бұрын
Awesome job! Are you an avionics tech as a day job by any chance? Very tidy work. Interesting seeing the slow mo at 13:00, it only cuts in one direction not on the return to the left. Pretty cool project.
@biiLL4bonG
@biiLL4bonG 3 жыл бұрын
This is just awesome, hure respect for that project! Would love to build some cockpit to - so thanks for sharing your files! Maybe i can get in touch some day with this :)
@owensparks5013
@owensparks5013 4 жыл бұрын
Top bloke 👍
@SVgamer72
@SVgamer72 4 жыл бұрын
Love the work! Thanks for sharing. Very inspiring!
@AurelTristen
@AurelTristen 4 жыл бұрын
I'm guessing you'll be first in line for DCS A-10C II? If so, are you looking forward to cutting those new panels? Fingers crossed that there will be a way to use the helmet mounted hud with a static screen.
@thewarthogproject
@thewarthogproject 4 жыл бұрын
I think the only thing i wont be able to use is the new HMD- unless i go back to using trackir. That is unlikley.
@schmiddy8433
@schmiddy8433 4 жыл бұрын
@@thewarthogproject maybe you could un-assign head movement in DCS from trackir but assign HMD movement to it, might require some additional software as a proxy for those axes.
@pethoviejo
@pethoviejo 3 жыл бұрын
Awesome!
@zimbakin
@zimbakin 4 жыл бұрын
Great video. Really well explained, thanks.
@lucachacha71
@lucachacha71 3 жыл бұрын
Thanks to the algorithme for this
@noel12397
@noel12397 4 жыл бұрын
Really cool mate! Keep it up!
@theperpetual8348
@theperpetual8348 4 жыл бұрын
I wonder if there's any way to give DCS your head position (eg trackir) without that translating into a camera movement. Then you could use the scorpion with your projectors, if you found a headtracker that does those very wide angles anyway. Perhaps a gyroscope track? There are people that use old phones for that stuff so it's not impossible.
@randycarter2001
@randycarter2001 9 ай бұрын
I don't know if you know this but an Arduino Uno and a single MAX7219 can turn on 64 LED's individually. The MAX7219 has all of the current limiting circuitry built in. The current is set by a single resistor. No other components needed. You wire the LED's in an 8 row by 8 column matrix. Adafruit sells a product that can do 128 LED's in a 16 x 8 matrix. Only 3 pins from the microcontroller.
@Nanne118
@Nanne118 4 жыл бұрын
So, are you looking forward to making an adaption for the new upcoming A-10C II module (upgrade)? Love your work mate, it is a true inspiration :D
@Peteskis
@Peteskis 4 жыл бұрын
Great Vid, Sorry if it has been asked but what laser do you have please? Thank you
@rafbarkway5280
@rafbarkway5280 3 жыл бұрын
Strange fact-the early bulb versions of these pannels with twin bulbs were upgraded to fixed LED versions,the LED's are more reliable but if ONE fails the whole panel needs to be replaced..NOT cheap.i have one somewhere but my place is a mess.
@indianajon7980
@indianajon7980 4 жыл бұрын
Amazing as always. Will you upgrade the cockpit with the new upcoming release or are you sticking with how you have it?
@thewarthogproject
@thewarthogproject 4 жыл бұрын
Yes- the upgrade is already happening...
@indianajon7980
@indianajon7980 4 жыл бұрын
@@thewarthogproject can't wait to see!
@LukeAinsworth
@LukeAinsworth 4 жыл бұрын
Looks awesome man, where do you get your acrylic from? Sounds like you're in Australia too!
@thewarthogproject
@thewarthogproject 4 жыл бұрын
I get some in bulk on ebay, and some of the harder to find stuff here- www.acrylicsonline.com.au/
@paulb36utube
@paulb36utube 4 жыл бұрын
I can’t wait until the arduino build
@flymetothemoon5138
@flymetothemoon5138 3 жыл бұрын
Is there a video dedicated to your laser cutter and the upgrades you've done to it?
@sorryforcallingyouanelonga1766
@sorryforcallingyouanelonga1766 4 жыл бұрын
I love your videos
@bryanmorgan356
@bryanmorgan356 4 жыл бұрын
There is a new alternative to TrackIR, its called Smooth Track, it uses a mobile phone, (needs a certain type) but very good works via wifi to your dcs pc. I love it so much better.
@ItsOnlyErwin
@ItsOnlyErwin 3 жыл бұрын
This is really incredible :-) I would like to go down this path but for an F18, any good suggestions for an F18 plan? Also, knowing where you are now, what would you have done differently to optimize your build? If you had to start all over now? Thanks for the Epic content :-) Greetings from South Africa
@jasontrueman2726
@jasontrueman2726 4 жыл бұрын
Good stuff love the content! Question about your buttons you used for your UFC and CDU , did you print those or did you cut them with the K40, I've been looking at ways to make proper buttons with back-lit lettering and numbers, i want to cut them with my k40 but trying to find a way to keep them in the panel ? I can print them but then I don't get the nice led back-lit with the acrylic, any suggestions or help would be appreciated
@No1sonuk
@No1sonuk 3 жыл бұрын
He explains it all here: thewarthogproject.com/keypads-and-buttons
@zeesterrene
@zeesterrene 3 жыл бұрын
Wow, very impressing job! Could you tell more about your lasercutter (what K40 updates do you have and which software are you using). Are you still using the K40 for modifications/updates of your simpit? I would like to build an A10 simpit also and allready bought the plans.
@MichalPlichta
@MichalPlichta 4 жыл бұрын
What happen with your project (huge respect to you) when A-10 Tank Killer II will be released? How it would affect your cockpit?
@thewarthogproject
@thewarthogproject 4 жыл бұрын
Biggest panel change will be the new ARC-210 radio- which im building already. As far as i can tell, everything else will still work. I think the only thing I wont be able to use it the new Scorpion HMD - unless I go back to using trackir (which is very unlikely).
@nikosgeorgakis6759
@nikosgeorgakis6759 3 жыл бұрын
Captain! Giving inputs is ''somehow'' ''easy'' via an Arduino etc. But Getting feedback from the software (in case of hydraulics failure for example) how the Game informs your board that ''this led'' should light/ come ON? Does this software give you the opportunity to do so?
@JamesW81
@JamesW81 2 жыл бұрын
Did you ever get round to changing the Phidgets 64 out? I'd be really interested to see the way the matrix is done for the LEDs. I've not made any further progress on my pit due to various things, but I'm hoping to get back on it in a couple of weeks.
@heefie8659
@heefie8659 4 жыл бұрын
So I'm curious now that wags released the HMCS video, I'm sure you're super happy about the warthog II overall, but are you able to incorporate that?
@thewarthogproject
@thewarthogproject 4 жыл бұрын
I could if I went back to TrackIR... but i doubt ill do that. Ill give it a go and see how it works. The HMCS looks great- but I'm much more exited for the improved flight model!
@oldmanfunky4909
@oldmanfunky4909 4 жыл бұрын
Now that DCS has the new A-10c 2, Are you loving it?
@wall_y
@wall_y 3 жыл бұрын
Why the leds are 64, as you tell in this video, when the cells on the front side are 12rows x 4 coloumns?
@CavemanGaming
@CavemanGaming 4 жыл бұрын
How much would you charge to make these panels? Have been following for a long time and love you set up.
@h0tdiggity_dog918
@h0tdiggity_dog918 4 жыл бұрын
Do you have a link for that Laser CNC?
@thewarthogproject
@thewarthogproject 4 жыл бұрын
No direct links- but its just a cheap eBay K40 with a few decent upgrades- machine is similar to this- www.ebay.com.au/itm/40W-CO2-LASER-ENGRAVING-MACHINE-LASER-ENGRAVER-CUTTER-USB-PORT-CRAFTS-ARTS/281951608772?epid=25034140253&hash=item41a5a01fc4:g:h~IAAOSwJtNdea34
@uniteddrones7626
@uniteddrones7626 4 жыл бұрын
You have any videos on upgrade to ur printer, I hear right it’s a k40
@thewarthogproject
@thewarthogproject 4 жыл бұрын
Not yet- but I'm planning on doing one eventually.
@cklescewski
@cklescewski 6 ай бұрын
I love this project, and I want to use some of what you've done for a project of mine. I want to use this panel (the caution panel) as part of my vehicle. I have this in place of the idiot light in my 2001 GMC Sierra 2500HD. If I could pick your brain that would be great.
@AAAAAAAHHHHHHHHH-y5f
@AAAAAAAHHHHHHHHH-y5f 4 жыл бұрын
Are you eventually gona upgrade for the new A10C?
@thewarthogproject
@thewarthogproject 4 жыл бұрын
Im already building the new ARC-210 radio...
@AAAAAAAHHHHHHHHH-y5f
@AAAAAAAHHHHHHHHH-y5f 4 жыл бұрын
@@thewarthogproject Even a full on HMCS monocle? :D
@Nick-xe2hu
@Nick-xe2hu 2 жыл бұрын
Did you ever update the LED driver? Whats the one you mentioned you were going to upgrade to and how did you set it all up in DCS Bios? I'm tackling something similar soon and could use your guidance. Thanks
@thewarthogproject
@thewarthogproject 2 жыл бұрын
I did, I've got the footage from ages ago and am editing it now mate. A video should be up soon.
@thewarthogproject
@thewarthogproject 2 жыл бұрын
In the meantime, check out Craig's video. It helped me a lot, and I'll be referencing it my video. kzbin.info/www/bejne/l2LMXqycgaujhtk
@Nick-xe2hu
@Nick-xe2hu 2 жыл бұрын
@@thewarthogproject Oh man awesome. I'm hoping doing it myself would save me some money to apply elsewhere in the sim pit. Thanks
@Nick-xe2hu
@Nick-xe2hu 2 жыл бұрын
@@thewarthogproject Perfect. Thanks
@JamesP33R
@JamesP33R 4 жыл бұрын
No! Your other Left! ;) Hate when that happens. I printed a set of UFC Buttons with engraved text in them. Up until I installed it, I thought it had a 'Back' button, when in fact, it's supposed to be a 'Hack' button. Oops.
@maegeekpaigamer
@maegeekpaigamer 4 жыл бұрын
Will you buy or do you uave a pilot helmet? if you buy will you mod one to work with radio? it would be a real immersive with the helmet!!! i hope when my kids are grown up i can have the time and money to build something like this, still trying to get a pc to play DCS.
@astrogumbie2399
@astrogumbie2399 3 жыл бұрын
Can you tell me what things I would need to do some of this work like Laser Cutter or 3d printer
@xuhaoping4360
@xuhaoping4360 4 жыл бұрын
try ht16k33, that can drive 8*16 led
@williamedwards6607
@williamedwards6607 Жыл бұрын
What font are you using?
@ShuhDonk
@ShuhDonk 4 жыл бұрын
There may of been a R al error but you thought it was left :)
@thewarthogproject
@thewarthogproject 4 жыл бұрын
Haha really most of the times Ive seen those light up its because BOTH of the wings have fallen off
@IM2awsme
@IM2awsme 3 жыл бұрын
Why didn't you use vector letters?
@nikosgeorgakis6759
@nikosgeorgakis6759 3 жыл бұрын
Hello Captain, what are the best sensors for Sensing flight controls like pedals / stick?
@duckner
@duckner 3 жыл бұрын
Couldnt you have just painted over the typo and re-engraved the text just for that indicator lol
@lululala3771
@lululala3771 2 жыл бұрын
what server you play on
@crazystuffproduction
@crazystuffproduction 4 жыл бұрын
I want to see a anupdate, a led with muti colors would be cool, even if only for a LED DEMO TEST mode. SEE Neopixels
@late_kamer7440
@late_kamer7440 4 жыл бұрын
You need do that simulator 360 degrees
@lunai0076
@lunai0076 4 жыл бұрын
How you do the switch and knob wheels
@kellycleveland
@kellycleveland 4 жыл бұрын
Hey just thought of something. Why don't you just use the insides or the screen of 8" or 10.5" pads from a Samsung then overlay the black grill over it. the go back and to site you programmed that box the should be a patch for the the upgrade. like I said It just came to me. Check it out to see if was possible any way. please let use know if it worked or if its possable or any thing simiuliar. Thank you for your time.
@panagiotiselsisi7752
@panagiotiselsisi7752 4 жыл бұрын
Can your hardware be used with Lockheed Martin's P3D or is it made for DCS specificaly?
@JamesW81
@JamesW81 3 жыл бұрын
If the input is based on a Leo bodnar card, they can be used with any game/flight sim. If the input is Arduino and DCS bios it's DCS specific.
@ExplorerSpace
@ExplorerSpace 3 жыл бұрын
can you explaign how you connect with the game
@thewarthogproject
@thewarthogproject 3 жыл бұрын
The Arduino is connected using a program called DCS-BIOS dcs-bios.a10c.de/docs/v0.7.0/userguide.html
@wingbatzero
@wingbatzero 3 жыл бұрын
If I ever win the lotto, I'm building 2 of these, one for me, and the other for my buddy that's a huge fan of all things aviation. Then we can fly missions together until our wives beat us silly.
@sairus6055
@sairus6055 3 жыл бұрын
Visually panel looking great nice job. But electrically this is a mess... wires soldered to single leds... How about build pcb on one side SMD leds (maybe even addressable like ws2812 or equal) and on another side all your circuits (It can be just connector for control board like arduino or even control board itself ) Addressable LEDs give you brightness and color control for really big amount of "pixels". Best regard.
@thewarthogproject
@thewarthogproject 3 жыл бұрын
That's the nature of using a Phidgets LED64 board. I didn't build it. I'm using a commercially available board, that requires soldering single leds....
@rickmccaskill7888
@rickmccaskill7888 3 жыл бұрын
What power of laser are you using? Thanks
@JamesW81
@JamesW81 3 жыл бұрын
It's a Chinese K40 with the tube and PSU upgraded to 60w
@portret_lazerom_za_prizm4286
@portret_lazerom_za_prizm4286 3 жыл бұрын
Крепко жму правую!!!!
@TimberDCS
@TimberDCS 4 жыл бұрын
I just came here to see the typo
@simonpike779
@simonpike779 3 жыл бұрын
You make Tony Stark look like a dummy!
@PaletoB
@PaletoB 4 жыл бұрын
So who else what's this for your car? 😂
@archivushka
@archivushka 3 жыл бұрын
I'm a 100th comment
The UFC and HUD - A10C Warthog Simulator
14:58
The Warthog Project
Рет қаралды 30 М.
ARC-210 Digital Radio! - A-10C Home Flight Simulator
26:50
The Warthog Project
Рет қаралды 57 М.
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
What it Cost! - A10C Warthog Simulator (Part 1)
34:06
The Warthog Project
Рет қаралды 296 М.
Building a New Oxygen Panel
28:28
The Warthog Project
Рет қаралды 60 М.
DIAL UP YOUR COCKPIT with Arduino and Air Manager:Beginners Guide
26:57
The $2 Backlit Button Panel: Simple Method For Flight Sims and More
8:50
Making New MFCD's- A10C Warthog Simulator
18:05
The Warthog Project
Рет қаралды 60 М.
The Main Instrument Panel!- A10C Warthog Simulator
27:07
The Warthog Project
Рет қаралды 56 М.
The Complete Right Console- A10C Warthog Simulator
29:26
The Warthog Project
Рет қаралды 49 М.
DCS A10C Simpit Fuel Panel Prototype
18:13
Craig S
Рет қаралды 32 М.
Making a flight sim panel with a CNC router
4:38
I'm no expert, but
Рет қаралды 10 М.
Upgrading the Caution Panel (and laser cutting PCB's)
28:37
The Warthog Project
Рет қаралды 39 М.
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН