Тёмный

Workbench Essentials When Starting Arduino! (Beginner Guide) 

Robonyx
Подписаться 206 тыс.
Просмотров 213 тыс.
50% 1

Arduino Starter Course & Community 👇
www.skool.com/...
If you’re getting started with Arduino or building your engineering workbench, this video will cover all the essential components and tools that I personally use!
Links for parts mentioned:
Arduino Starter Kit: geni.us/arduin...
All other stuff: linktr.ee/robonyx

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 155   
@Robonyx
@Robonyx 3 месяца назад
Learn Arduino & join a community of engineers who want to change the world 🌎🦾 www.skool.com/robonyx/about
@ANAN0000
@ANAN0000 2 месяца назад
so my starter kit has Arduino uno smd so there are any problems to make projects
@ldandco
@ldandco 3 месяца назад
he wears gloves. therefore he is a pofessional
@BRICAMDEN
@BRICAMDEN 2 месяца назад
Tru
@billionaireclub0726
@billionaireclub0726 2 месяца назад
Ya 😂
@stevhandingwall2028
@stevhandingwall2028 Месяц назад
No is a food mukbanger
@RicardoReyes-hl6be
@RicardoReyes-hl6be Месяц назад
Yes because electronics have that nasty metal smell this is why we wear gloves
@D-Man-GamingShorts
@D-Man-GamingShorts 20 дней назад
It’s for his clapping at the end of the vid 😂
@MrTylersVlog
@MrTylersVlog 3 месяца назад
I think another important tip if you do get into the 3D printing aspect is get a caliper! Measuring the dimensions of motors and other components is essential for 3D design.
@TheSelfUnemployed
@TheSelfUnemployed 3 месяца назад
Check out Paul McWhorters Arduino Lesson series if you are a beginner looking to get started!
@GamingVlogBoxStudios
@GamingVlogBoxStudios 3 месяца назад
I used them too, and can confirm they are amazing!
@drepyman1385
@drepyman1385 3 месяца назад
Mr Paul is THE BEST arduino teacher. Even I come from there lol
@martinkuliza
@martinkuliza 3 месяца назад
Link ??
@YassinY06
@YassinY06 3 месяца назад
@@martinkuliza ru-vid.com/group/PLGs0VKk2DiYw-L-RibttcvK-WBZm8WLEP&si=8HEKr_6oDPXQPnMZ
@jbowser9679
@jbowser9679 2 месяца назад
I love Paul McWhorter! His tutorials are amazing
@powerfulking500
@powerfulking500 2 месяца назад
Bro is literally just teaching how to be an electrical engineer 😂
@Diamondsword85_RS
@Diamondsword85_RS Месяц назад
this makes me sad because no matter how cheap they are I will never be able to afford them
@sidplayzgaming9224
@sidplayzgaming9224 3 месяца назад
Bro this is exactly what I needed to help me progress further. So far ive only focused on theory knowing what i need to get started is huge. And you made it sound so simple. Thank you so much!
@Robonyx
@Robonyx 3 месяца назад
Hope it helps! 🙏
@martinkuliza
@martinkuliza 3 месяца назад
if you are starting, don't waste your time on Arduino Get an ESP32 board I'll tell you why . You want to know to get a headstart, HERE IS HOW 1. it's important to learn Arduino and ESP32 Arduino and ESP32 are the development boards they both use a form of C++ as the programming language Arduino uses Arduino IDE as the platform you program on NOW HERE IS THE COOL PART You should learn both, but you don't want to waste money buying an Arduino. Buy an ESP32 it's cheaper it's More Powerful it's Faster and you have Bluetooth and WiFi Options built in Also.... Faster Micro and Dual Core Processing it's not even a comparison Now.... WITH THE ESP32, You can absolutely (and YOU SHOULD) Start with Arduino IDE and Arduino Sketches Remember, ESP32 is just the board when people say "are you PROGRAMMING ARDUINO" they are talking about the sketches, not the board Essentially the connectivity between the 2 is more or less the same, but the ESP32 has more options so... Start with ARDUINO IDE but don't stay on it for too long, Give yourself, maybe 3 months then do this When you learn programming you want to learn 2 things in the beginning PYTHON and C++ so MY RECOMMENDATION Install PYTHON Install VS CODE (Visual Studio Code) this will be the IDE to replace Arduino IDE when you open VS Code you want to add these extensions Python Python Debugger C++ C++ Debugger ESP32 IDE and now you're ready to take it seriously Also, Don't go for Arduino Nano, it's a pain in the arse NEXT.... You can muck around with standard sketches for like 2 weeks But don't spend too much time on standard sketches LEARN TO PROGRAM ARDUINO OR ESP32 ON YOUR OWN ESP32 has an Operating system, it's called FREE RTOS (Free Real Time Operating system) First Learn your Arduino course WHILE USING ESP32 and WHILE USE VS CODE that way you won't be a noob for a long time As you learn each lesson Make a practice sketch to test what you have learned IMPORTANT : Understand very quickly what SERIAL MONITOR is and INTEGRATE SERIAL STATEMENTS INTO YOUR CODE then go to the serial monitor to see if it works EXAMPLE : Say you are blinking an LED once per second if it works it works, right but what if.... in the middle of the blink commands you entered serial commands that said print "LED Turned ON" (After it turned on) then after it turned off print "LED Turned OFF" that way you are doing a few things at one time 1. You are learning to code 2. You are confirming you understand what you have learned 3. The ability to create serial commands accelerates your learning 4. These serial commands later are used as troubleshooting and degugging tools (But since you already did them YOU DON'T HAVE TO LEARN THAT) AND THAT WAY.... You want be a noob that just forever blinks LED's and then Moves to LED Strips and forever uses stock Sketches and googles the answer IF YOU WANT TO LEARN THIS THING.... THEN LEARN IT and Honestly.... it will take you say... 3 days of solid learning (Not 20 hours) Because that's rubbish LEARN 1 THING PRACTICE THAT THING WRITE SOME CODE TO MUCK AROUND WITH THAT THING then LEARN THE 2ND THING PRACTICE THAT THING WRITE SOME CODE TO MUCK AROUND WITH THAT THING Remember this Author's goal is to fastrack you through a course DON'T DO THAT, You'll just get confused GO SLOWLY GO AT YOUR OWN PACE the point is TO LEARN not , to go through it as fast as you can Example : In Arduino, You'll no doubt start blinking LED's you will learn the Delay() command after a while you'll learn that because Arduino executes code sequentially IF YOU HAVE TOO MANY DELAYS they may conflict and stop things from working. You'll then try to adjust the timing of the delay, but that will hit a roadblock as well BUT IT'S GOOD TO LEARN THIS so... Your next thing will be to try using millis() You'll hit the same road block and if you are stuck on Arduino you will know NOTHING ELSE HOWEVER... on ESP32, You use vTaskDelay() the difference being Delay() is BLOCKING CODE vTaskDelay() is not Blocking code so you see... you can play with FREE RTOS and Arduino and Arduino IDE and VS CODE............AT THE SAME TIME , SIDE BY SIDE so you can learn the differences THAT'S HOW YOU SHOULD LEARN but it all starts with buying an ESP32, so you don't have to waste money on an Arduino YOU'RE WELCOME
@SeilingMart
@SeilingMart 15 дней назад
So youre telling me that all that time I spent learned trig and integral Calc is usless?
@nachiketacharya7599
@nachiketacharya7599 6 дней назад
😂
@jumbo999614
@jumbo999614 2 месяца назад
Love the fan sound at 1:58 😄
@NerdAffiliated
@NerdAffiliated 20 часов назад
Just got to that lol
@mongkkorn5505
@mongkkorn5505 3 месяца назад
1:58 how to code a dc motor to sound like that
@dizye2971
@dizye2971 Месяц назад
Thank you for speaking as if youre talking to a real beginner. This will help me get into arduino and robotics
@Sala-yg8wh
@Sala-yg8wh 2 месяца назад
This really helped me out. Thank You !
@Fatdarwin
@Fatdarwin 3 месяца назад
We going bankrupt with this one 🗣️🔥🔥🔥
@DetectiveNoir_
@DetectiveNoir_ 8 дней назад
Lmao 😂
@HVXmania
@HVXmania Месяц назад
You also seem to be wearing gloves and using a matt. Are those for electrostatic protection?
@ragibhasan8099
@ragibhasan8099 3 месяца назад
Bro can I do free arduino course. Because I don't have any bank account 😢.plz friend
@Pramod-Tayade-official
@Pramod-Tayade-official 3 месяца назад
Then go get a bank account
@ragibhasan8099
@ragibhasan8099 3 месяца назад
​@@Pramod-Tayade-officialI know bro but I can't open it. because my family doesn't agree 😢
@JT_2096
@JT_2096 3 месяца назад
How old are u ​@@ragibhasan8099
@Fatdarwin
@Fatdarwin 3 месяца назад
There's a lot of videos online ✌️
@ragibhasan8099
@ragibhasan8099 3 месяца назад
@@Fatdarwin I know but I want to do this course 😪😥😴
@Jacob_WasTaken
@Jacob_WasTaken Месяц назад
That's an $1800 oscilloscope new 😭
@ipXchange
@ipXchange 2 месяца назад
We would love to get on a call with you and get some advice on RU-vid!
@ronto55
@ronto55 2 месяца назад
Mate uses the cheapest multimeter there is but everything else is just worth solid gold 😂😂😂
@edwinfarid_
@edwinfarid_ Месяц назад
Bro, U are fire. This is what I've been looking for. Keep making this content 🔥🔥
@Genezis-88
@Genezis-88 Месяц назад
Not necessary to use UNO for everything. It's a waste. NANO is perfect for experimenting. It's 10x cheaper and the clock signal is still 16Mhz.
@aaronalquiza9680
@aaronalquiza9680 3 дня назад
you forgot helping hands or PCB clamps to hold down what you're soldering.
@KP094
@KP094 13 дней назад
Bignner guide Step 1: become rich enough to buy all the tools
@SeilingMart
@SeilingMart 15 дней назад
Pcbway or jlcpcb
@sebastian-jy5mf
@sebastian-jy5mf Месяц назад
Hi, is there an Option that you will make a Full Video of the Computer Vision ? Im very interesstet in These thing but i dont have Any Knowledge about that and i realy want to Build one for my Own
@Lunolux
@Lunolux 3 месяца назад
nice video, wish day was way longer to have time to do all these thing as hobby
@williamphanter9959
@williamphanter9959 10 дней назад
Dude you are a life saver damm hope your brain keep getting smarter and keep making vid like this, and please make it easy for dumb person like me 😢
@3DWolfEngineering
@3DWolfEngineering 3 месяца назад
can just agree!, awesome guide - i hope it will make it easier for people getting started Keep up the great work !
@mars420tame
@mars420tame Месяц назад
man i have been trying to do this for more than a week and i just found ur video
@THIRIIDEVKUMAR
@THIRIIDEVKUMAR 21 день назад
im looking for the tutorials, code on how you didi the motion tracking camera .
@Orbitaonamika
@Orbitaonamika 25 дней назад
Clark Lisa Garcia Helen Anderson Dorothy
@Poklaorpwjrjsddht
@Poklaorpwjrjsddht 2 месяца назад
in bangladesh, a fake arduino cost 6$ no joke i bought one
@kawaii.kawaiian
@kawaii.kawaiian 3 месяца назад
damn, any oscilloscope recommendations for an intermediate electronics student? urs is very expensive lmao
@martinkuliza
@martinkuliza 3 месяца назад
DEFINITELY.... Now it's best to buy brand new and don't buy those USB Based ebay pieces of crap, they are not the worth the money when buying a scope here is what is important - How many channels does it have (You can start with 2, 4 is better) - Analog Bandwidth of each channel (if it's says 100MHz, that means Each Channel can take a Max signal of 100Mhz in each channel. However, if you use all (say) 4 channels at the same time, You can only use a Max of 25Mhz per channel if all 4 channels are enabled) The trick with cheaper scopes is they will have 500kHz MOST SCOPES ARE UPGRADEABLE AS WELL - SAMPLING RATE , The Holy of Holies. this is the rate at which your scope can sample signals at, the higher the better. Cheaper scopes will sport numbers like 500Msa/s (Mega Samples Per Second) that's rubbish. You should aim for a Min of 1Gsa/s 2 is better 5 is awesome 3 is very cool - Memory depth, 24 to 56Mpts (Mega Points) is fine and more is better so.... CHEAP AND AFFORDABLE BUT GOOD............ Means... RIGOL Look at Rigol DS1054Z it's around $400 which is ridiculously cheap a better step up from that is DS2000A Series a step up from that is MSO5000 Series (here you are at $2,500_ if that doesn't work Look at the second hand Jobbies, Now.. You will certainly find a RIGOL DS1052E for about $300 don't buy it, it's not worth it Because you can buy a Tektronix 2210 for around $100 yes it's old, but it's a classic and it's literally the model that the Rigol DS1052E was built on but then.. it might be worth exploring Analog scopes CRO's (Cathode Ray oscilloscopes) You can pick them up for like $50 Now the trade off is there is no Digital Storage it's likely the cheap one's will be 20MHz on the front end , This starts you off but is rather limited Now there is a Hantek on ebay for like $300, but if you're gonna do that, Given that the Hantek is laggy, Just get the Rigol DS1054z you'll thank yourself down the track Any Questions... Ask me
@martinkuliza
@martinkuliza 3 месяца назад
Now it's best to buy brand new and don't buy those USB Based ebay pieces of crap, they are not the worth the money when buying a scope here is what is important - How many channels does it have (You can start with 2, 4 is better) - Analog Bandwidth of each channel (if it's says 100MHz, that means Each Channel can take a Max signal of 100Mhz in each channel. However, if you use all (say) 4 channels at the same time, You can only use a Max of 25Mhz per channel if all 4 channels are enabled) The trick with cheaper scopes is they will have 500kHz MOST SCOPES ARE UPGRADEABLE AS WELL - SAMPLING RATE , The Holy of Holies. this is the rate at which your scope can sample signals at, the higher the better. Cheaper scopes will sport numbers like 500Msa/s (Mega Samples Per Second) that's rubbish. You should aim for a Min of 1Gsa/s 2 is better 5 is awesome 3 is very cool - Memory depth, 24 to 56Mpts (Mega Points) is fine and more is better so.... CHEAP AND AFFORDABLE BUT GOOD............ Means... RIGOL Look at Rigol DS1054Z it's around $400 which is ridiculously cheap a better step up from that is DS2000A Series a step up from that is MSO5000 Series (here you are at $2,500_ if that doesn't work Look at the second hand Jobbies, Now.. You will certainly find a RIGOL DS1052E for about $300 don't buy it, it's not worth it Because you can buy a Tektronix 2210 for around $100 yes it's old, but it's a classic and it's literally the model that the Rigol DS1052E was built on but then.. it might be worth exploring Analog scopes CRO's (Cathode Ray oscilloscopes) You can pick them up for like $50 Now the trade off is there is no Digital Storage it's likely the cheap one's will be 20MHz on the front end , This starts you off but is rather limited Now there is a Hantek on ebay for like $300, but if you're gonna do that, Given that the Hantek is laggy, Just get the Rigol DS1054z you'll thank yourself down the track Any Questions... Ask me
@PaxtonCarlson
@PaxtonCarlson 3 месяца назад
7:23 HAHA, YES!! I have the Bambu Lab P1S as well and it is a GAME-CHANGER! Seriously, bed leveling is a thing of the past now. The bambu printers are so fast!
@RuToClose
@RuToClose 3 месяца назад
Set it, and forget it.
@-Honestly-idk-what-to-put-here
@-Honestly-idk-what-to-put-here 21 день назад
Could i make this on a rasberry pi 5 in python?
@moshivuu
@moshivuu 10 дней назад
Great video! I'm still needing the oscilloscope and the 3D printer... I start playing more "serious" with these modules in 2023. For screens I would also recommend an LCD Tft or a Nexus (colors and touchable features), one can make more portable projects.
@izuku_kun1037
@izuku_kun1037 Месяц назад
I am beggin for pcd design video!!!!!plzzzzzzzz
@RahulSingh-fl6bf
@RahulSingh-fl6bf 2 месяца назад
Hi! Awesome video! Would you happen to have recommendations for low budget get the job done oscilloscopes and power supplies good for university students? Thanks!
@PaisleyPark-kx1bj
@PaisleyPark-kx1bj 2 месяца назад
For my final year Thesis, i choose my thesis as QR Code Gate system, i am using esp32cam as QR code scanner and serve as main control unit for gate mechanism. But i still can't make it yet. Should i used another microcontroller for gate mechanism. I need u guys help. I am not very smart but i'm trying my best.
@TheKennMan88
@TheKennMan88 Месяц назад
Very beginner question. When you eventually get to the point of using a PCB, what do you use to write the code for that? I saw someplace that the Arduino code is simple. So wondering what you do if your not using an Arduino?
@bF93712
@bF93712 2 месяца назад
Hi! great video, I'm starting to learn electronics as a hobby, before purchasing all the tools, do you recommend any simulation software to learn the concepts ? like thinkercad arduino ?
@fridolineckerd6135
@fridolineckerd6135 29 дней назад
Can you show how you build the tracking camera from the beginning ?
@stevensonprimacio1592
@stevensonprimacio1592 17 дней назад
Why did it take so long to find this channel . Liked and subscribed . Thank you very informative and entertaining
@exorbitantmango200
@exorbitantmango200 2 месяца назад
Dude, you're so fucking awesome! Great editing and neat AI girl mascot!
@aboalzoz536
@aboalzoz536 4 дня назад
How can iget money from this 😕
@AstroBananna
@AstroBananna Месяц назад
That scope looks so mean.. wish listed
@OCaseyNat-z7w
@OCaseyNat-z7w 27 дней назад
Clark Karen Walker James White Susan
@BRICAMDEN
@BRICAMDEN 2 месяца назад
The Adam savage rule (i think) if you need a tool by the cheapest version of it than if you end up needing to up grade upgrade
@taejoonparkkk
@taejoonparkkk 3 месяца назад
i love you
@eshanazib9479
@eshanazib9479 Месяц назад
He's literary using apple pencil😂
@shaiksameerroshan9678
@shaiksameerroshan9678 2 месяца назад
Hlo sir , please upload the computer vision in detailed video.... please reply sir...
@johnbrooks7350
@johnbrooks7350 2 месяца назад
I used to have a crappy multimeter and only upgraded when I used one at school that was really nice and I found one for only $50. Best to only upgrade when you can actually experience and see the difference
@MADrobotics351
@MADrobotics351 3 месяца назад
Hello robonyx if you know how to design a pcb, do make a video. I'll be very happy to see it.
@shashikanthpatil2686
@shashikanthpatil2686 3 месяца назад
Insted of buying these multiple things can it be done by analog discovery
@martinkuliza
@martinkuliza 3 месяца назад
why are you deleting my comments when i'm trying to give people friendly advice ?
@zlora5657
@zlora5657 2 месяца назад
what advice
@martinkuliza
@martinkuliza 2 месяца назад
@@zlora5657 Exactly..... The Advice that i gave got deleted by the Author of the channel The Advice that contrasts ESP32 against Arduino and why you don't need to pay for this course. it seems that any attempt for me to save people time and money gets deleted
@prophet5955
@prophet5955 2 месяца назад
what recourses would yall recommend for pcb design
@fongaming101
@fongaming101 9 дней назад
Indian food videos, no gloves, / arduino videos, gloves 🧤 😂
@joejoebaker
@joejoebaker 3 дня назад
He's not Indian😂
@adamelmsri
@adamelmsri 3 месяца назад
Awesome vid, super helpful for when I tinker with Arduino on the side
@haydengowing4423
@haydengowing4423 2 месяца назад
What software do you use for editing these videos and the animations?
@pneumantic6297
@pneumantic6297 3 месяца назад
Best way to do male to male jumper wires is to buy a 22 awg set of colored solid core wire. With the jumpers you have to store them. Its nice to be able to just cut your own and throw it away if you dont want to organize after. The jumpers you end up with a mess of lengths, colors, and they are very annoying to store because they like to bend and get caught in things.
@gersoncastillo2074
@gersoncastillo2074 24 дня назад
Bros randomly clapping
@Sashik
@Sashik 3 месяца назад
1:57 not a fan
@Elmer_U_369
@Elmer_U_369 3 месяца назад
what is the name or type of the gloves that you use?
@martinkuliza
@martinkuliza 3 месяца назад
Black Latex Powderless Gloves The brand is irrelevant, if you are serious about these gloves you just really need to know a few things whether they are yellow, Blue or Black doesn't really matter, although Black is good if you're doing dirty work. Some workplaces have colour preference, Example, Chemical labs and hospitals will preference blue. where paramedics and onsite people and electronics people will preference black Now, if you're doing light work , most any of them are fine but i work in Telecomms pits, so the thinner one's don't last for me, i need thicker one's Try a few out and you'll see, there are thin one's and thick one's and there are one's that are dull (MATTE) in appearance and there are shiny one's stick to the thicker and Matte one's but brand is completely irrelevant go find a cleaning chemical supplier, they'll have boxes of them when they ask you for size Say L (Large) and then buy 1 box and go from there there is Small to XX Large
@balabal7689
@balabal7689 3 месяца назад
How dare u to assume the gender of wires??! 🤡🤡🤡
@aayushsapra3982
@aayushsapra3982 3 месяца назад
only buy an auto ranging multimeter and also a continuity tester.
@aayushsapra3982
@aayushsapra3982 3 месяца назад
only buy an auto ranging multimeter and also a continuity tester.
@mengvang396
@mengvang396 2 месяца назад
This is perfect for my low attention span 🙂ty
@redshark8796
@redshark8796 2 месяца назад
What is your “mat” or “desk mat” that you have?
@CheapoJoes
@CheapoJoes 2 месяца назад
This is super helpful. Thanks for making this 🙏. Good insight into what items to bring into our inventory. Subbed
@alitanik4051
@alitanik4051 Месяц назад
You are expert bro ,thnx for the knowledges
@rydjaradat
@rydjaradat 3 месяца назад
I love the vibes, editing is top notch, I don't know why but I have Jojo bizarre adventure undertone throughout the video.
@401uwu7
@401uwu7 2 месяца назад
Use esp the are really cheap and powerful.
@pfever
@pfever 9 дней назад
Awesome commercial
@shreyanshpanda544
@shreyanshpanda544 Месяц назад
Pls make more videos on learning ardurino
@DialloThierno-k2x
@DialloThierno-k2x 17 дней назад
Basically all the tools I need to get started
@AsteroidLeaf905
@AsteroidLeaf905 3 месяца назад
4:20 can also test for short circuit u plug in negative and positive input with probes
@craighamilton2063
@craighamilton2063 Месяц назад
brilliant
@internal8500
@internal8500 3 месяца назад
great vid. Have an arduino at work and im looking forward to do some with it at work. Looking forward for your vids
@piyawat1920
@piyawat1920 2 месяца назад
nice
@Alice8000
@Alice8000 2 месяца назад
I love ur videos bro but could you jsut talk normal?
@VishalBalaji-v6y
@VishalBalaji-v6y 2 месяца назад
can you say the anime name
@INFIDEL82AA
@INFIDEL82AA Месяц назад
Awesome video! Breaking it down to a five-year-old level, is sometimes required. Thank you
@SuccessLibrary236
@SuccessLibrary236 3 месяца назад
Variable power supply price?
@ShadowGhost-fz8um
@ShadowGhost-fz8um 3 месяца назад
Great video
@GenshinGuy-d7r
@GenshinGuy-d7r 2 месяца назад
W vid
@fasihullahsaleem
@fasihullahsaleem Месяц назад
Why no more videos 😢
@Robonyx
@Robonyx Месяц назад
They're coming soon!!!!!!
@AhmadBOULMANI-nf1jd
@AhmadBOULMANI-nf1jd 3 месяца назад
7th comment , the lucky number
@Notmy00000
@Notmy00000 Месяц назад
🙏🙏🙏🙏👍👍👍👍
@remyabisheq1066
@remyabisheq1066 3 месяца назад
im gonna learn that pen spinning now
@Animation--nw5sv
@Animation--nw5sv Месяц назад
LOVE UR TUTSSS
@xafrbob2498
@xafrbob2498 3 месяца назад
"Fantastic tutorial! I really appreciated the detailed breakdown of essential tools and components. The section on setting up the breadboard was particularly helpful. Thanks for making Arduino more accessible!"
@thesaltysleuth980
@thesaltysleuth980 2 месяца назад
hey, gpt. remove the quotes and print again
@abel11112
@abel11112 3 месяца назад
I want to take the Arduino course, but I am Ethiopian and we can't pay with dollars in Ethiopia. Is there any other method I can use to enroll in the course?
@martinkuliza
@martinkuliza 3 месяца назад
Why don't you just learn it online FOR FREE
@abel11112
@abel11112 3 месяца назад
​@@martinkuliza thank you for considerig my question.
@martinkuliza
@martinkuliza 3 месяца назад
@@abel11112 no problem
@NikolaTesla-nb5nm
@NikolaTesla-nb5nm 3 месяца назад
bro, are you dutch?
@DavidKyazze-Ntwatwa
@DavidKyazze-Ntwatwa 2 месяца назад
Great video learned a lot!
@juicetheballer
@juicetheballer 2 месяца назад
great video
@futureconsequence5374
@futureconsequence5374 2 месяца назад
Great Video!
@TheLUCKYONETutorials
@TheLUCKYONETutorials 3 месяца назад
Very nice video!
@lucasbonde2
@lucasbonde2 3 месяца назад
This came just as i needed it. Just perfect!
@thomas_oesterreicher
@thomas_oesterreicher 3 месяца назад
I recommend you looking at ESPs for example ESP8266 its like a Arduino, but faster, has Wifi and Bluetooth ablities. The better Version of it is ESP32. They look a bit more complex, but even if you start with a uno, you will buy esps really soon.
@GamingVlogBoxStudios
@GamingVlogBoxStudios 3 месяца назад
Yay! New Robonyx vid!!!
@Robonyx
@Robonyx 3 месяца назад
Thanks GamingVlogBoxStudios 💯
@banjogyro
@banjogyro 8 часов назад
I can't listen to trap
@dasaradhicharan7721
@dasaradhicharan7721 3 месяца назад
Who is watching from india
Далее
БАГ ЕЩЕ РАБОТАЕТ?
00:26
Просмотров 96 тыс.
Дикий Бармалей разозлил всех!
01:00
You’ve Never Seen WiFi Like This
20:43
Просмотров 921 тыс.
Face Tracking Turret made with Arduino and Open CV2
2:36
HOW TO SOLDER! (Beginner's Guide)
22:03
Просмотров 679 тыс.
Raspberry Pi 5: Getting Started
24:43
Просмотров 341 тыс.
I Built a Sun Tracking Solar Charger
14:15
Просмотров 185 тыс.
Top 5 Arduino Tips for Beginners
12:16
Просмотров 136 тыс.
БАГ ЕЩЕ РАБОТАЕТ?
00:26
Просмотров 96 тыс.