Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Hardware Hacking Hardware Build

Arduino Project Upgrades With 2 New Boards 113

EqualSlash writes "The Arduino Project is releasing two new boards — Arduino Uno to replace Duemilanove and Arduino Mega 2560 to replace the existing Arduino Mega board. With Uno, the board is not just getting a new pronunciation-friendly name but also has a custom-made USB-serial converter to replace the older FTDI chipset, thereby removing the need to install drivers (they now have their own USB Vendor ID). It now has a logo and stylish packaging, and soon will have its own branded web store. A new Ethernet integrated board and a tinkering toolkit will be made available shortly."
This discussion has been archived. No new comments can be posted.

Arduino Project Upgrades With 2 New Boards

Comments Filter:
  • by MadGeek007 ( 1332293 ) on Sunday September 26, 2010 @03:18PM (#33704794)
    It's basically a prototyping system for the rest of us (non electrical engineers).
  • by Gordonjcp ( 186804 ) on Sunday September 26, 2010 @03:18PM (#33704796) Homepage

    It doesn't need any funny drivers or anything, it Just Plain Works.

  • by Anonymous Coward on Sunday September 26, 2010 @03:25PM (#33704826)

    Yeah, but they wouldn't be too useful without something connected to any pins other than power.

  • by zlogic ( 892404 ) on Sunday September 26, 2010 @03:26PM (#33704832)

    On Windows you'll need to install a driver in order for USBserial to work. There were no drivers on Windows Update ~6 months ago so you need to install the drivers manually (possibly it's already fixed now). Otherwise the board is useless since it cannot be programmed.

  • by TheGratefulNet ( 143330 ) on Sunday September 26, 2010 @03:50PM (#33704960)

    the only thing that does not 'plain work' is the rts/dtr hack to reset the cpu.

    that, and, well, the ftdi cable is $20 and is needed to program the chip. the ftdi chip is not that much but its a PITA to solder to (fine lead pitch) and the usual solutions (sparkfun) have the board at $15, anyway. cut that out of the picture and things are finally cheap enough to be used by 'anyone'.

    anyway, RTS/DTR idea is that you toggle one of those lines for a short while to discharge a small value cap across the cpu's reset line. its a neat idea and the cpu does NEED to be reset VERY prior to the first byte in the download. either you press it 'very quickly' or have software do it.

    ftdi uses RTS and some other boards use DTR. that's one problem. and the other is that windows or linux (both) have no easy way to twiddle that bit and needed to call other routines to do the reset and then start the download (via what's known as 'avrdude', the downloader).

    if they properly architected instead of hacked this, it would be a big step forward.

    also, with regard to ethernet; I posted something about this on the ladyada forum and it did get some commentary. the problem with ethernet/ip is that there is no security (none, not even a tiny bit). for a physical device that can turn things on and off in the real world (including ruining/damaging things) you NEED security. I just firmly believe this. no firewall, no hosts.allow, no nothing. not authentication or encryption or MAC access control, just like TRULY nothing. I find that unacceptable in a real-world device.

    given the fact that you can buy $50 things (pogoplug, seagate dockstar, even WRT routers) that run a full linux and IP stack, why hack around with dodgy ip-on-a-chip things (the arduino ethernet shield) when you can front-end the controller (arduino) with an embedded linux board that has proper IP features. as long as the linux board can shake 2 bits it can talk i2c. if it has 2 leds or 2 colors, it can shake 2 bits. there, you have all you need really to talk between the 1board linux plastic router thing and the arduino. AND you can run a real apache, php (etc!) there. even mysql ;)

    the controller is great for fast polling of i2c devices and even spi and analog. its really really sucky for things like ethernet and IP and apps that sit on them. just not meant for them and its the wrong tool for the job.

    (disc: I develop for arduino and have spent over a year on an embedded project using them).

  • by Yvan256 ( 722131 ) on Sunday September 26, 2010 @04:07PM (#33705062) Homepage Journal

    That's why I prefer simple, smaller carrier boards instead. They got the ISP header and sometimes a place for a crystal+caps or a resonator and a power supply connector at most.

    I had a small batch made for the ATtiny85, and my PCBs only adds one row above and below for the carrier board pins (useful for connecting into protoboards), and 2.5 columns more to the width for the ISP header.

  • by Sarten-X ( 1102295 ) on Sunday September 26, 2010 @04:15PM (#33705126) Homepage

    So Ethernet, at layer 2 of the OSI model [wikipedia.org] doesn't offer the security functions of layer 6?

    With all those rules regarding collisions, timing, and even the physical wiring, they didn't even throw in the simple requirement for all Ethernet devices to have a powerful processor, memory, persistent storage, keys, and programming to handle security? Or even the ability to update as new encryption becomes standard?

    Those lazy bums must have no idea what they're doing!

  • by Gordonjcp ( 186804 ) on Sunday September 26, 2010 @05:57PM (#33705678) Homepage

    On Windows you'll need to install a driver in order for USBserial to work

    Well, they can't support every niche OS out there. Anyone with half a brain is going to be doing their microcontroller development in Linux.

  • by Yetihehe ( 971185 ) on Monday September 27, 2010 @02:03AM (#33708430)
    Making it yourself is just more fun.
  • by Stele ( 9443 ) on Monday September 27, 2010 @11:08AM (#33711510) Homepage

    Anyone with half a brain is going to be doing their microcontroller development in Linux.

    Fortunately I have a WHOLE brain, so I know how to install a (mostly automated) one-time driver on Windows when necessary.

"Engineering without management is art." -- Jeff Johnson

Working...