Tested In-Depth: Getting Started with Arduino

Поделиться
HTML-код
  • Опубликовано: 21 авг 2024

Комментарии • 662

  • @tested
    @tested  5 лет назад +6

    Read our practical starter guide to the most popular Arduino kits here: www.tested.com/tech/robots/456466-know-your-arduino-guide-most-common-boards/

  • @tested
    @tested  11 лет назад +13

    Tested In-Depth: Getting Started with Arduino ruclips.net/video/EUgeB46JiXw/видео.html

    • @Atrax1207
      @Atrax1207 10 лет назад +3

      I want that Roomba looking thing. It's awesome! :D

    • @kevinjose293
      @kevinjose293 10 лет назад +10

      A little correction: Arduinos are mostly AVR processors. Arduino Due is ARM.

  • @dhruvkp1510
    @dhruvkp1510 10 лет назад +75

    If only they taught Arduino in grade school...the world would be such a cooler place.

    • @MoonJumpMania
      @MoonJumpMania 4 года назад +2

      A few years later... They do.

    • @robertoflores7200
      @robertoflores7200 4 года назад

      Now days they do but the world isnt a cooler place

  • @Skwisgar2322
    @Skwisgar2322 8 лет назад +26

    Arduino Mega is an 8bit 16MHz Atmel, not 32 bit 32MHz ARM.

  • @TOGxFTW
    @TOGxFTW 9 лет назад +39

    Prototyping is the gateway drug...

    • @logan2669
      @logan2669 8 лет назад +1

      to more prototyping

  • @WhitentonMike
    @WhitentonMike 11 лет назад +1

    Minor corrections: FWIW The clock display was wired upside down. The decimal point should be on the bottom.
    The clock display is a variant of a seven segment display, A matrix display is a 2 dimensional array/grid of individual LEDs.

  • @Bozemoto
    @Bozemoto 10 лет назад +6

    "If-loop", oh dear...
    Personally the hardware has been the thing that's scared me off. I am a programmer so programming not so much. I've been browsing around for something simple to get started with robotics with a higher focus on software. Getting really pumped, next paycheck I'll try and get something cheap to play with.
    Thanks for the great material

  • @tested
    @tested  11 лет назад +2

    I understand that. I said I had work to do to get it brighter. Even at 12V, it wasn't that bright though.

  • @Barnacules
    @Barnacules 10 лет назад +53

    These boards power both my 3D printers.

  • @ElectronicsIsFun
    @ElectronicsIsFun 11 лет назад

    On the Arduino boards, the analog pins are only inputs and the digital pins are input and output. The Due also has (2) DAC outputs that can generate analog signals in addition to the analog input pins and the digital I/O pins. Using external components, the PWM pins can also generate analog signals.

  • @DanielDJCRO
    @DanielDJCRO 8 лет назад +8

    1:58 AFAIK it's 8-bit, not 32-bit. And it's 16MHz, not 32.

  • @Keduce22
    @Keduce22 11 лет назад

    For a first year electrical engineering project my group built a fully functioning elevator prototype. With programming knowledge and a proper tutorial in a matter of minutes you could get an led to work and perhaps a small dc motor or buzzer.

  • @knighthawk404
    @knighthawk404 11 лет назад

    Unless I'm mistaken it looks like a standard cutting mat you can get them anywhere where they sell fabric/sewing supplies. They're for use with a rotary cutter (think pizza cutter with a much sharper blade).

  • @gadgetwhore2
    @gadgetwhore2 11 лет назад

    The Ben Heck show has exactly that project, lots of detail, explains everything, but keep your finger on the pause button, on-screen info pops up while he's talking. He makes a portable one too. and a double decker.

  • @FizzicksDude
    @FizzicksDude 11 лет назад

    I love arduino and what it has to offer. The only correction I can see that no one else has mentioned is the fact that the "Due" is one of the newest released boards out on the market and the "Leonardo", "Mega", and "Uno" are older. Small detail but I thought you might like to know. Keep up the good work gentlemen!

  • @NathanielJohns1258
    @NathanielJohns1258 11 лет назад +1

    Great video guys! I can confirm what others have been say about the microcontrollers being AVR. Also, Vaes Joren said earlier the the uno uses ATtiny. This is incorrect. The uno uses an AVR based ATmega328 and the mega uses an AVR based ATmega2560.
    Very good stuff in the video, keep up the awesome work!

  • @gunnarMyTube
    @gunnarMyTube 10 лет назад

    These guys have quite some cozy shop set up there. They do a great job here describing the controller board phenomena and crams a heck of an amount of verbal info into the 30 minutes. Well done !

  • @daveythacher2161
    @daveythacher2161 10 лет назад +1

    The Arduino Mega is 8-bit AVR ATmega1280 by Atmel running at 16MHz. Did you even go to the Arduino website? Most Arduinos are not ARMs. The newer ones are, some of them. They are mostly 8-bit AVR. I am only aware of one x86 Arduino, Intel Galileo. Because it has a lot of pins does not make it 32-bit or an ARM. An 8-bit microcontroller can be made to have 2048 pins. Using 256 (2^8) bytes (8 bits). ARMs are not the only microcontrollers out there. For most tasks they are overkill and cost more. Also what makes an Arduino an Arduino is not the hardware. It is a bootloader and software/toolchain. Arduino support can be made for almost any microcontroller. You just have to write software support for the hardware configuration. (Not as easy as it sounds.) Pinguino is an example of this. Which supports some of Microchip's 8-bit and 32-bit PICs.

  • @DelireWeb
    @DelireWeb 10 лет назад

    ...My take on "Introduction to the introduction of programming" :D
    At 28:27, simply put: "structured programming language". Markup "languages" are not actually "languages" as per computer science paradigms, they are "markups" : they're like the highlighter you'd use over some text, while the text itself is the result of a structured thought process (markups don't define a _Regular grammar_). A cooking recipe can be compared to a structured program, having its own vocabulary structured with precise and ordered instructions in sequence, even in some cases "at the same time", or that must be repeated xx number of times (like shake the mixture for 20 seconds every 1 minute during 5 minutes), or that depend on intermediate results of which you don't know the outcome in advance because you're trying a new ingredient (thus offering different sequences of instructions depending of that outcome, like _if_ it tastes too salty _then_ add water... Or like _if_ it's boiling _then_ turn off the heat, _else_ _repeat_ the _"shake" procedure_ every one minute... Etc.).
    One can understand why programming is an Art by itself : there are many ways to do something, like there are many ways to cook an egg. Which one is "better" given a distinct context depends of the cook (of the computer analyst-programmer), same goes for Writers : there are many ways to tell a story, it all depends of the story-teller/Writer to make it a good one or a bad one if not a weird one.
    HTML markups can appear dynamically given something you do on a Web page, in which case they are governed by some structured programming _language_ like JavaScript, C, Python, PHP, etc., which interprets the user input so as to generate the correct HTML markups on the Web page. For the sake of comparison: a markup would be the light on a led, or some switch on a circuitry bread; while the "intelligence" behind the led and the switch, capturing signals to interpret and then sending back other signals accordingly and thus controlling Arduino's controller, for lighting the led or not, is all done via some programming language (like a cooking recipe written in English's _Regular Grammar_ using specific cooking vocabulary).

  • @holdengreene9717
    @holdengreene9717 10 лет назад +3

    Should have given Blum a shout out. His arduino series brings kings to their knees.

  • @ElectronicsIsFun
    @ElectronicsIsFun 11 лет назад

    To be clear, On the Arduino, the Analog Pins are only capable of being analog inputs. However, if you choose to use the Analog pins as Digital pins, then they can be used as inputs and outputs.
    If you listen to your video at 4:40, You state "You can usually configure each analog pin and each digital pin as either an input or output as you wish".

  • @JohnDoe-qx3zs
    @JohnDoe-qx3zs 11 лет назад

    Got a couple, still working on the I/O design. Hard part: There seems to be no decent standard shield for powering on/off mains voltages or even the 24V needed to control industrial grade I/O blocks.

  • @Guten101
    @Guten101 8 лет назад

    I'm soooooo glad I'm not the only one that decorates my office with Lego Star Wars sets! Such a relief

  • @DarudeDandstorm
    @DarudeDandstorm 9 лет назад +42

    Since when are if statements loops? o.o

    • @KingKehra
      @KingKehra 9 лет назад +3

      Darude Sandstorm
      foo(){
      if bar
      foo() }
      An if loop?

    • @DarudeDandstorm
      @DarudeDandstorm 9 лет назад +3

      KingKehra an if IN a loop. not an if loop

    • @KingKehra
      @KingKehra 9 лет назад +1

      Darude Sandstorm Well it's not an if IN a loop either, it's just recursion. But it's the best I could think of what an "IF LOOP" would be like.

    • @HowardPrice
      @HowardPrice 9 лет назад +3

      KingKehra FLOOP. New Instruction. YAY!

    • @EdwinFairchild
      @EdwinFairchild 9 лет назад

      Darude Sandstorm Objects lmao

  • @RFC3514
    @RFC3514 10 лет назад +2

    It would have been interesting if you had quickly coded & uploaded sketches to exemplify what you were talking about. For example, when Norm picks up the LED strip and asks how it works, tell him to connect it to pins X and Y, and quickly write a sketch that makes them blink. That would be a lot more productive than saying "it's really simple" 20 times, while showing no actual example.

    • @mikedebruyn2195
      @mikedebruyn2195 10 лет назад +1

      Yes. And please don't make condescending comments like: "If you went to school you already know this." If I DID go to those classes and already know it, then I don't need to be told that I already know it. If I did NOT, then telling me I don't know it is neither new, nor useful information.

  • @CatalinEpuras
    @CatalinEpuras 11 лет назад

    Hi,
    Yes you can. You can start doing simple programs (led, buzzers, simple sensors) in a few hours. (the videos in my channel are the result of a afternoon). Before I started, I had college knowledge of programming ... no electronics.

  • @SilverMiraii
    @SilverMiraii 7 лет назад

    I don't have an arduino but the easiest way to understand it was seeing a video where this guy puts in LED connected to a particular pin, and then writes code for it. I don't know C but I know javascript and the concepts are pretty similar, basically he defined a variable named led, and assined it to pin 13, it's a way to keep track of your inputs and outputs, then he said you need to do a setup for any program, so he wrote code saying that led is an output, and it makes sense.
    And then he made a loop and in it a simple code give the led high voltage, sleep, wait, whatever you want to call it for 1 second, then low voltage on the ping 13, sleep again
    Since it's a loop it goes on and on, and what this does is that it turns the led on and off in intervals of 1 second. And that's pretty much the most basic thing you can do, but that's the thing about it, it's sort of like a hello world type of thing, it gets people into it.

  • @AdamMacNeil
    @AdamMacNeil 11 лет назад

    Although you're correct that the Due is a newer board (and is an ARM based board, rather than AVR based like most other Arduinos), the older one that Will kept mangling the name of was the Duemilanove, which is basically the predecessor to the Uno

  • @kodabrome
    @kodabrome 11 лет назад +1

    Object orientation is just a paradigm: you can implement it in whatever language you want. There are object-oriented implementations for C, and they're actually quite straightforward to use; except there's no syntactic sugar like, say, C++. Trivia: early C++ compilers emitted C rather than machine code.
    Also, the official language used by Arduino is actually C++ in disguise. You're free to use classes, templates & other stuff; although, for most of the time, there's really no need to use them.

  • @Horforia
    @Horforia 11 лет назад

    Plug it up to your computer, download the arduino software, and run the "blink" example. that's the quickest and fastest way to get started learning the basics of it.

  • @tested
    @tested  11 лет назад

    It's the Adafruit 7-segment kit, so there really wasn't anything for me to wire wrong.

  • @therespectedlex9794
    @therespectedlex9794 8 лет назад

    Apart from the last bit about the dog, very helpful and encouraging. Thank you

  • @CrazedVandal
    @CrazedVandal 11 лет назад

    Factual corrections: the 2560 is based on the AVR architecture, not ARM. In that light, most Arduino MCUs use Atmel ARM processors, not ARM. It can be kind of confusing though because more and more MCUs (like the teensy) are ARM based but use the open source Arduino toolchain and ide (which is the real power of the Arduino package).

  • @tornuptom
    @tornuptom 11 лет назад

    PWM Is on the Analog Outputs not digital. And Arduino are 8 bit not 32(with the exception of the "Due")
    Really loving these videos! been a massive fan of Tested.com for ages now, and I am a big fan of Arduino.... both of them at the same time is just far too exciting!
    Keep it up!!!
    Thanks Guys!

  • @jarinal
    @jarinal 10 лет назад +1

    Beginners, know that the arduino nano doesn't have short circuit protection like the UNO. If you short the 5V to ground, you'll fry one of the diodes on the board.

  • @gpowerdragon9852
    @gpowerdragon9852 8 лет назад

    if you're making Hi-Tech go karts it's pretty fun having a buzzard notify you you left left the lights on or doors open a light switch that works on relays do all the heavy stuff like headlights of the vehicle and of course indicators program how fast Left Right Amber indicator should go

  • @ghen
    @ghen 11 лет назад

    oh, awesome. i was reading about arduino but couldn't quite grasp it. this really helped.

  • @johnfranks
    @johnfranks 11 лет назад

    If your USB port does not have some sort of current limiting, yes it can be damaged. You can use a powered USB hub as a buffer if you are concerned/clumsy/dyslexic.

  • @MrFelixdodd
    @MrFelixdodd 10 лет назад

    Yes Stamp 2 was the pre-cursor, but great to see interfacing making a comeback.

  • @danielwgk
    @danielwgk 11 лет назад

    Going to watch all of this. I've owned my Arduino kit for way too long to have not done anything with it.

  • @ElectronicsIsFun
    @ElectronicsIsFun 11 лет назад

    Arduino Analog pins can only be used as Digital outputs not Analog outputs. The Atmega328 chip spec shows that the only analog support in the chip is the analog to digital converter (ADC). To support analog output, the Atmega328 would require a digital to analog converter(DAC). The only Arduino board with Digital to Analog (DAC) converters is the Due.

  • @freakyfreak7777
    @freakyfreak7777 10 лет назад +2

    I learned lua to play the computer craft mod on minecraft and never thought it would be useful but helps learn other languages

  • @TheAtomicOlive
    @TheAtomicOlive 11 лет назад

    This looks like a great way to spend my summer, thanks for introducing me to this guys.

  • @lunhil12
    @lunhil12 11 лет назад

    I've seen these used to program lighting in model kits and the "sketches" or programs are simple enough for anyone to learn on their own or you can use and fine tune one of the many found on the web.

  • @nicknack125
    @nicknack125 11 лет назад

    You guys need more subs - this video would be great for all the beginners I see posting around on forums and getting near no assistance.

  • @fuckmyego
    @fuckmyego 8 лет назад +1

    Norm doesn't talk enough! He just asks a question and helps leads Will's rambling (which often IS entertaining) at the right time.

    • @applejinx7172
      @applejinx7172 8 лет назад

      That's because he's a good natural interviewer (that, or he's actually worked on being one)

  • @katelynhamer1350
    @katelynhamer1350 9 лет назад +96

    "If Loops"
    "32-BIT"
    "Clocked at 32Mhz or something"
    Tested. I love you but please do your homework before doing a video 😂.

    • @gregroberts6339
      @gregroberts6339 8 лет назад +1

      I so agree

    • @jangtheconqueror
      @jangtheconqueror 7 лет назад +3

      Maybe write a facts card and a basic script, cause the flow of the video is a bit interrupted at times

    • @Whatsthegeek
      @Whatsthegeek 6 лет назад +3

      "Some are x86 based"
      x86 microcontrollers xDDDDDD #seemslegit

    • @cahsahhhhhhhn
      @cahsahhhhhhhn 6 лет назад +1

      I just bought an arduino kit on a whim, knowing nothing about it, and 20 min in I know it's not 32 bit lol

    • @s4rg380
      @s4rg380 4 года назад +1

      I'm still new to Arduino, but yeah, I know they are 8 bit, typically 16MHz. (3.3v versions of the pro mini and nano run at 8MHz) And it is AVR, not ARM.
      But, and a big but...
      Take a look at Curie: (Arduino 101)
      Which is an Intel based arduino. Which I suppose would be X86, don't know though, but I heard that it is 32-bit.
      And the Arduino Yun, of which I know not much, but it is apparently a hell of a lot faster ARM based MCU.

  • @ElectronicsIsFun
    @ElectronicsIsFun 11 лет назад

    The Arduino MEGA is an 8-bit AVR microcontroller board. Only the Arduino Due uses the 32-bit ARM processor.

  • @chingy1788
    @chingy1788 11 лет назад

    I learnt to program micro-controllers with assembly. C is a cake walk.

  • @itsame1277
    @itsame1277 7 лет назад

    Really enjoyed your video even as a casual viewer with just a passing interest in arduino kits and programming. You covered a lot of ground and I got a real feel for what is involved.
    Thanks

  • @BariumCobaltNitrog3n
    @BariumCobaltNitrog3n 11 лет назад

    Self healing cutting mat, architectural supply, art supply, craft store. Olfa makes nice ones.

  • @raptor50trex
    @raptor50trex 11 лет назад +1

    im a CET and A+ certified and i want to get into some engineering and this stuff looks cool but where should i start bc i dont know any programming.

  • @85Studios
    @85Studios 7 лет назад

    I use these in conjunction with a Raspberry Pi 3 to control my entertainment system in my vehicle, various lights, speedometer, clocks, and a bunch of other stuff, I use them all the time, they are cheap, durable, easy to program, easy to hook up, and just in general really cool. one of my favorite boards is the Arduino Uno R3. You can get them for 5 bucks now and they are genuine, on Tayda Electronics.

  • @rdoetjes
    @rdoetjes 11 лет назад

    Not exactly that is a specific Arduino called the Due but it's a different beast all together. It's not a revision thing that The Uno is now suddenly equipped with an ARM processor. The Mega, The Minis the Unos in this film are all ATMEL's AVRs.

  • @JustinShaedo
    @JustinShaedo 8 лет назад +3

    If you took C in college, but you can't handle the basics of programming an Arduino, then ask for refund.

    • @nextstorming3908
      @nextstorming3908 8 лет назад +1

      I learnt
      Digital write, analog write, setting pins as input or output, creating variables, analog in, delay
      All in 2 days except for digital read, I can't figure that out yet

  • @josevillegas2721
    @josevillegas2721 7 лет назад

    Will (I think) mentions digital buttons. Are these buttons that do not need to be debounced? What are they? What is the difference between a push button and a digital button?

  • @anarios-ryd
    @anarios-ryd 9 лет назад +4

    Chinese sites have all the arduino boards\shields\elements 5-10 times cheaper. Never had a single problem with them. Got my starter kit with arduino uno and LOTS of stuff for 25$. Arduino uno board for 5-7$ and arduino nano for just 3$

    • @Strawberrymaker
      @Strawberrymaker 9 лет назад +5

      Well, its good to buy the original Arduino because then you are gonna support the devs of it. It is Open source, but they are still working on bootloader, and if they dont have money, they cant develop new Open source boards or make the bootloader better/smaller. I also buy most of my hardware from chinese but i still got 2 original boards here.

  • @sharpchain_1862
    @sharpchain_1862 8 лет назад

    To all other people interested in Arduino you can also program the boards in C++

  • @HNickProg
    @HNickProg 11 лет назад

    You first showed the Arduino MEGA which is 8-bit and it was not the biggest at that moment.
    The Due is the biggest with a 32-bit ARM.

  • @Quiggers1981
    @Quiggers1981 11 лет назад

    True it's an atmel ATmega, the "arduino due", however is ARM based.

  • @marcgeiser2228
    @marcgeiser2228 11 лет назад

    you can us a DC/DC converter too have 12V but make sure you display can delivered the Amp. that you need.

  • @ernieschatz3783
    @ernieschatz3783 8 лет назад

    Come up for air every once in awhile. It's good for you and the listeners both. A few pauses of a maybe a couple of seconds helps you AND the audience digest things and stay focused.

  • @The1wsx10
    @The1wsx10 8 лет назад +1

    trig WAS useful!!!
    love it

  • @aristotelian9693
    @aristotelian9693 11 лет назад

    The micro actually has greater capacity for peripherals in the form of digital and analog pins. The uno has way more shields available

  • @Sillyzombie666
    @Sillyzombie666 9 лет назад

    i just got an uno and im sure this videos gonna help me out, i wish they had just a tiney bit of this info on the damn box, i might buy a mini/ micro since radio shack has those cheap now

  • @DaryXnfinite
    @DaryXnfinite 11 лет назад +10

    It always feels like these 2 guys are competing with each other.. Guys just relax lol

  • @lancewalker2595
    @lancewalker2595 7 лет назад

    Atmel MCUs do not use the ARM architecture, Atmel is an architecture in its own right.
    Also, and I know this is nitpicking, the Ardunio IDE uses Objective-C not C. The Ardunio boot loader is what allows the conversion from C to Objective-C, Atmel actually has an IDE, this is the one that uses C.

  • @kleinbiker1
    @kleinbiker1 6 лет назад

    I chuckled as he talks about taking C in college in like 1993. Fudge, I took Fortran 77 in like 1991...lolThis is going to be a slow learning process for me.

  • @flyaxe
    @flyaxe 8 лет назад +1

    76 to 200 usd? I just bought a Ultimate starter kit from ebay for 45 usd, it contained 210 parts including breadboard, arduino uno, servo motor, ps2 joystick and all you could need modules and wires/components. Seller is mepal18 from hong kong or china or something,

  • @TheDyingFox
    @TheDyingFox 8 лет назад

    @ 0:28 "I was scared of programming...", to me it's the opposite, when programming goes wrong: you get an error, when electronics goes/is put wrong: it might catch fire xD, in short, I've bought "THE ARDUINO STARTER KIT, SKILL LEVEL: BEGINNER, 15 PROJECTS" a ½ year back and it's still in it's protective plastic. (I know I need to start by removing the plastic, but then... mind stuck)
    Wish I had some opportunity to learn more about electronics to feel a bit safer using it (or to gain more confidence using it).
    Programming on the other hand shouldn't be a problem... I hope... (I know how to use C++, DirectX (DirectInput, Direct3D9/Direct3D10/11, DirectSound), to make 2D/3D games) but with electronics I know just basics, pretty much using a multimeter, and how to use and calculate to use resistors together with a battery and a button to make a LED switch on and off, most advanced thing I've made so far is figuring out how much current was needed together with how to connect the wires to light up a Seven-segment display hahaha

  • @AugustoGuerrero__Main__
    @AugustoGuerrero__Main__ 11 лет назад

    No. For example, the new Arduino Yun is based on two chips. One is the ATmega32u4 (AVR) and the other is the Atheros AR9331 which is a MIPS 24k processor. For the upcoming Arduino Tre, the processor is a Sitara AM3359AZCZ100 (ARM Cortex-A8).

  • @LawrenceHortonRocksAllTheSocks
    @LawrenceHortonRocksAllTheSocks 11 лет назад

    Its a cutting surface and you can pick one up at amazon

  • @Brute4rce1111
    @Brute4rce1111 4 года назад

    can you imagine if you left your arduino countdown project hanging out in a backpack...

  • @DanHonnen
    @DanHonnen 11 лет назад

    Thanks so much for doing this video! You guys are super awesome at doing good honest general overviews of stuff and I've been thinking about trying to get into Arduino for a while now, so this video really really motivates me to pursue it further! I'd love to see more updates on your Arduino projects and more general tips about the stuff you guys have learned! Keep up the awesome work guys! I'm soooo freaking glad I subscribed to your guys channel! You guys rock!! :D

  • @richardthompson4415
    @richardthompson4415 11 лет назад

    it is called a cutting mat, you can buy them on amazon

  • @SeabasR
    @SeabasR 11 лет назад

    That is a cutting mat, you can get one at a craft store like Michaels or maybe at a hardware store.

  • @rockettcrawford890
    @rockettcrawford890 Год назад

    I think this guy misspoke when he was talking about PWM. PWM (pulse width modulation) is what the "analog" outputs to simulate analog output. It's still on/off digital. The only difference is in the duty cycle of the PWM's square waves. The longer the width of the pulse, the more the whole signal averages out to be.

  • @fehrrato
    @fehrrato 11 лет назад

    Thats a cutting mat. You can get it in any store that sells architecture related stuff.

  • @WiZeR911
    @WiZeR911 11 лет назад

    Idea: Does the timer flash when it gets down to say 1m left? Or is that what you're using the piezo for?

  • @williamwallace9901
    @williamwallace9901 9 лет назад

    Thanks for this informative video! I recently learned about the projects being built using these types of hardware and the possibilities are endless. There is an artist in Russia, I think, that made a metaphone, building on an earlier physicist's research trying to replicate the "god voice" using rotating microphones and speakers, a Geiger counter and synthesizers reacting to the feedback of itself, all being controlled by Arduino. This video really helped me learn the basics of Arduino.

  • @EEEnthusiast
    @EEEnthusiast 9 лет назад

    What's your opinion on all of the different Arduinos out there? I mean there is some use to each one of them, but most of them are extremely niche and quickly come off the market.

  • @lukejtmulder
    @lukejtmulder 11 лет назад

    You can get them at sewing shops. Search "Olfa Gridded Cutting Mat" on Amazon, it is similar.

  • @SamuraiCoding
    @SamuraiCoding 11 лет назад

    It's actually a cutting mat for quilting, my wife has one. Look up this on Amazon "Olfa Gridded Cutting Mat"

  • @DAVIDGREGORYKERR
    @DAVIDGREGORYKERR 8 лет назад

    I think that there must be a way to build a AM/FM demodulator based on the Arduino so that you can build a SDR radio with it.

  • @beanstartarb6295
    @beanstartarb6295 7 лет назад

    Nice video, are you guys have a prototype, you seems so good at it, i got an idea people might like it, its a key chain, and stuff on it

  • @JustifyJustin
    @JustifyJustin 10 лет назад

    Hey folks - excuse the odd question - but what does one call that green tabletop mat that you have there?

  • @ElectronicsIsFun
    @ElectronicsIsFun 11 лет назад

    Arduino bootloaders are not all the same. They depend on the Arduino board. The Arduino IDE has different bootloaders available. Some bootloaders use ~500K bytes and others can take 2K or more bytes.

  • @sponmagnet
    @sponmagnet 10 лет назад

    whats the name of the book he mentioned to learn c code for completely beginner?

  • @ChemicalPete
    @ChemicalPete 11 лет назад

    It looks like a simple self-healing cutting mat. They come in many different sizes. Search something like "Alvin Professional Cutting Mat"

  • @DuganPanther
    @DuganPanther 11 лет назад

    I want to try these. Don't no C though, took a basic Ruby class.

  • @christophertaylor87
    @christophertaylor87 11 лет назад

    Well I'm looking at my Arduino and the analog pins are input only. Digital pins are for input and output. The digital PWM pins are only able to simulate an analog output signal.

  • @bigboom378
    @bigboom378 9 лет назад

    Err the mega is actually 16mhz running an avr Risc architecture. The only higher clock arm cortex board is the due

  • @t3du
    @t3du 11 лет назад

    The guy was sweating & crying explaining the Arduino stuff, LOL

  • @123456789robbie
    @123456789robbie 11 лет назад

    The arduino mega is neither 32 bit nor is it arm. It's atmel, and i believe it's 8 bit. You might have confused it with the due which uses a 32 bit arm.

  • @kevrobster
    @kevrobster 11 лет назад

    Will, I'm interested in your closet lighting project. Are you documenting your progress on it for later posting?

  • @JamesBalazs
    @JamesBalazs 11 лет назад

    7:45 Word still doesn't have syntax highlighting for HTML even though it has native HTML support and HTML file type saving...

  • @adambamf9365
    @adambamf9365 7 лет назад

    I have just started the arduino journey if anyone out there is thinking about taking the plunge i 100% recommend it

    • @boowonder888
      @boowonder888 7 лет назад

      I will be plunging next year. Gonna buy a kit from china, they are really cheap over there. You mostly don't get the original Arduino, but clones are good too. I just watch the comments, hey 500 people cant be wrong!

  • @AndrPhoto
    @AndrPhoto 11 лет назад

    Loved this video, just got into arduino a few weeks ago. Although I'm not entirely sure what an "if-loop" is! :P

  • @DominicSpatz
    @DominicSpatz 11 лет назад

    mega uses neither 32bit processors nor 32mhz clock frequency.
    it is the atmega2560 (8bit AVR running at 16mhz)

  • @johnfranks
    @johnfranks 11 лет назад

    Arduino Pro Mini clone eBay ~$5usd. You'll also need a FTDI FT232RL dongle/cable for programming. (Super handy tool to have around. Its also about $5 shipped)