Slashdot Mirror


Resources for the Beginner Hardware Hacker?

StandardDeviant asks: "What would be good resources for a programmer looking to start a hobby in hardware hacking? By that I mean circuits, microcontrollers, computer controlled hacks, and such...sort of like a hobby-level EE education. It's just this itch I've had recently to dig down to the other extreme of the 'tower of abstraction' they bleat about so much in CS, also I find it ironic that I know more about the math (Maxwell's laws, and so on) behind electric widgets than I do about using them to build things. I'd be interested in pointers to good websites, books, magazines, parts sources, you name it! As an example: I've been looking recently at the microcontroller/circuit stuff from Iguana Labs, and of course browsing through Radio Shack. Thanks!"

6 of 38 comments (clear)

  1. Nuts and Volts by qurob · · Score: 5, Informative

    Nuts and Volts Magazine is pretty good.

    You'd be all set if you scored some back issues.

    Real good stuff in those.

  2. This book by rw2 · · Score: 4, Informative

    Ok, I admit that I'm not a hardware hacker, but during my fantasies of becoming one I've had several people recommend The Art of Electronics to me. I've even bought it (twice). Easy enough to understand.

  3. As bad as it sounds..... by jsimon12 · · Score: 4, Informative

    Radioshack is a ok place to start. I don't mean asking the yahoo's who work there. I mean they used to carry this begginger series on electronics, explained basics of electricity (Ohm's law and such fun things), how to read circit diagrams, how to solder, and how to build basic circuts. There was also a series called like "Engineers Mini-Notebook" or something.

    This is where I started when I was a lot younger. I also found that getting a small kit radio that required soldering (not those lame-o snap together ones, but a reall PCB and soldering iron type) helped me better understand what things where and how they went together.

  4. Steve Ciarcia' Circuit Cellar by cybrpnk · · Score: 4, Informative

    Circuit Cellar was a fixture in the back of Byte magazine back when it was worth reading. Hosted by hardware guru Steve Ciarcia, it was the beginning of many a budding computer hacker's career. Fortunately, it got spun off into its own magazine. Back issues are available on CD-ROM - get them, they're worth it. You'll be an expert hardware hacker in no time by reading the CD-ROM back issues.

  5. fpga's by toast0 · · Score: 4, Informative

    you may wish to look into getting some sort of FPGA...

    at the school i'm going to, we use boards from altera(.com), i believe they go for $150, and you can probably get an educational license to their software

    you can design with a schematic tool and their software will compile it into something you can program the chip with....

    this is a very nice thing for digital electronics, but i don't think it would work for analog circuits.

    their software also supports VHDL which is nice for getting a chip to do stuff without having to know how it is done. (as a side effect of not knowing how its done, the compiler can optimize it so it may work better than something you layed out yourself, assuming you aren't a master at optimizing circuits)

  6. H/W Hacking 101 by YourMessageHere · · Score: 5, Informative
    For the last several months I've been wading back into this myself, just for fun, having done alot during and shortly after college 20 years ago, but then drifting away. My suggestions:

    1. Suppliers

    Digikey absolutely rules. Largest variety of everything electronic. Very easily-navigated site. No minimum order ($5 handling charge if your order is under $25).

    Jameco is a good second choice. Especially good for lots of different cheap power supplies.

    With Radio Shack, this should be all you need for now.

    2. Learning Resources

    Someone already pointed you to the various cookbooks. TTL cookbooks are especially good places to start at your level.

    A great online resource used to be ePanorama.net, but they're 404ing at the moment, so maybe they're gone for good and they'll be back.

    Circuits Archive has lots of simple circuits you can peruse to see how stuff gets done at the lowest level, just like the cookbooks.

    3. Advice

    Stay away from FPGAs initially. I think you'll find the architecture and associated design process too big a piece to bite off at this point, and not worth the effort.

    Focus on TTL and learning what functions are available in various packages (track down an old "TTL Databook" from TI; they don't print them anymore but they're much handier for learning and browsing than online equivalents, which assume youknow what you're looking for). See this for high-level descriptions and this for pdfs of actual datasheets.

    When you're ready (which might be immediately) choose a microcontroller family to bone up on and stick with it. It's a huge waste of effort relearning architectures, instruction sets, and development tools for different families. For your purposes, either the PIC (from Microchip), 8051 (Intel et al.), or AVR (Atmel) will do fine (and they're all available from Digikey). I chose the AVR for the following reasons:

    a) Wide (enough) range of parts, from 8-pin to 64-pin, 1K ROM to 128K ROM, various arrangments of on-chip peripherals (including A/D).

    b) Cheap, from under $2/chip (single-piece) to under $30 for their fanciest.

    c) ALL members of the AVR family contain on-chip FLASH ROM for program storage and can be programmed in-system directly via your PC serial port. This makes a HUGE difference (compared to external ROMs or on-chip EPROM) during prototyping.

    Some people will suggest the BASIC Stamp from Parallax, which is a fine product which I've played with. My beef with it is it's expensive ($30 or so, I think) and all you really get for the money is a Basic intepreter. I think you'll find assembler for these chips so simple you don't need Basic. You can also get separate free Basic compilers for all of them.

    Good luck.