Slashdot Mirror


Recycling Parts From Dead Motherboards

An anonymous reader writes "I had this dead motherboard on my hands and I wanted to see what would happen if I cut out the clock generator and used it stand-alone. So I removed the Winbond chip from the motherboard (I cut out the section of PCB with a hacksaw), powered it up and it was still working. Add a display, a microcontroller and two switches, and I got a cheap frequency generator. Here's my progress so far. Be kind to my Web skills, I'm really just a hardware monkey. It's not completed yet, but I just wanted to get the idea out there."

9 of 198 comments (clear)

  1. Re:I could use one of these by Michael's+a+Jerk! · · Score: 5, Informative

    What frequency range?

    The price is something like $20, including transformer, PIC16F628 Microcontroller, FTDI serial to USB chip, etc. The problem is the clock chip. Places like radio shack etc aren't likely to have them.

    The hardest part is learning PIC assembly. PIC's are weird devices, having an accumalator style, havard archecture. Take a look here for a good tutorial on PICs.

    --

    I'm not Seth.

  2. Re:ool, but a Waste of Time by Michael's+a+Jerk! · · Score: 5, Informative

    OK, OK. I'll let you in on a little secret.

    If you want cool plans for how to build electronics stuff, google for 'DIY pic projects' for starters. Or you could just click here

    There is a *huge* hobbiest crowd porgramming PICs to do all sorts of cool things. The chip takes maybe a day to learn the basics, and 2 or 3 weeks to master. The chip is around $4, and the programmer under 20. check out the Piclist for free tutorials, projects and code.

    If you think it's cool, then go for it.

    --

    I'm not Seth.

  3. Hey, I resemble this article! by sec · · Score: 5, Informative

    However, I find that it's easier to remove components from circuit boards by taking a heat gun (ie. the kind you use for removing paint) and using it to melt the solder. Yes, on high heat, most heat guns get hot enough to melt solder. Just direct the gun at the back of the circuit board while gently prying or tapping at the component you're trying to remove from the front.

    Just be sure to do this in a _very_ well ventilated area (ie. outside) because if you leave the heat gun in one place too long, which you probably will sooner or later, you'll burn the board, which produces some of the most evil smelling smoke you've ever had the misfortune of smelling.

    Also, I find that dead motherboards aren't particularly fertile grounds for component salvaging. Once, I got a whole skid full of old scientific instruments at a government surplus auction for $10. The load of components I salvaged from this was quite unreal!

  4. there's a better answer by alizard · · Score: 4, Informative
    I think the general solution for your problem and the problem of many people here who have an occasional need for test equipment like signal generators, frequency counters, etc. is to find a connection for used / surplus electronic test gear.

    You generally don't need the latest / greatest / hottest for what you're doing, there's probably vacuum tube gear that is alive, well, and will probably solve some of your problems if you poke around a bit for a lot less money than you'd expect, especially if you value your time.

    Most metropolitan areas have at least one or two places for this sort of thing.

    Google is your friend. Try searching on:
    used electronic test
    or on the specific gear you want.

    Not to say there's anything wrong with this project, it's a cool hack and anyone who gets into electronic hardware is going to have a growing pile of junk to recycle parts off.

  5. limited utility by frovingslosh · · Score: 4, Informative
    The clock chip in question (and others like it) produces some pretty specific clock frequencies, but overall the frequencies provided don't seem to have much use. On the other hand, he's added a pic to the process, and by itself the pic could output a wide range of frequencies under program control. True, it can't directly output as high of frequencies, but I don't know what big use he could have for that limited selection of high frequencies.

    I do like the idea of a usb controled and powered frequency source, but I would settle for lower frequencies but greater tunability than just a dozen presets and use the PIC directly. Or better yet, use the PIC and a multiplier circuit if you want the high frequency values the PC clock circuit offers.

    Since the clock chip in question uses a 14.318 mhz crystal and PLL frequency multiplication to get the higher frequencies, you might even be able to still use a hacked MB clock circuit, but feed it a clock generated by the PIC rather than from the clock crystal. The top end would still be lower with this approach (better to just use a stand alone PLL and a divider feedback circuit), but it would allow one to get reasonably high frequency by very tunable signals.

    --
    I'm an American. I love this country and the freedoms that we used to have.
  6. Re:ool, but a Waste of Time by billy_troll · · Score: 3, Informative

    or, if you are sly, you can get the PIC for free.
    just apply for a sample on the website!

    just go to http://sample.microchip.com/

    hoorah!

    1 pic will last for ages if you treat it with care.

    --
    -----im billy troll----- im better than you at everything you do.
  7. Stating the Obvious by Anonymous Coward · · Score: 1, Informative

    Did anyone else notice that his webpage has a very nice layout, regardless of how much of a hardware guy he is? I for one am impressed by it. It's not cluttered, it's easy to read, and best of all, it's not slashdotted.

  8. Halogen lamps work, too. by XNormal · · Score: 4, Informative

    Blacken the solder you want to remove with a candle. Wipe the soot from parts you don't want to heat too much. If necessary, cover them with aluminum foil. Place the circuit close to a high powered halogen lamp and - presto. Even PGA parts with high pin count can be pulled out with relative ease (try doing that with a soldering iron and wick!)

    --
    Stop worrying about the risks of nuclear power and start worrying about the risks of not using nuclear power.
  9. Re:ool, but a Waste of Time by Lumpy · · Score: 3, Informative

    The chip takes maybe a day to learn the basics, and 2 or 3 weeks to master.

    this is horriby misleading. The above statement is true if you know assembly programming or programming in general. There are some C precompilers for Pic's but the good ones are horribly overpriced. and they have one very useful app out there... picbasic. Picbasic is the best way to get people started as they don't have to unbderstand RS232 communications to write a serial input routene.. while in assembly you had better understand every bit of the communications protocol you want to impliment as you are writing it at the lowest level possible.

    And then we have getting the pic programmer to work.. If you are rich and can shell out the hundreds for the real thing that is great. the rest of us are building minimal programmers and using freeware loaders.... and fighting alot to get them to work.

    PIC's are NOT easy to get started in. there is at least a 1 month gearing up and learning curve. and at least 1-2 years to learn assembly, communications protocols and protocols for every device you want to talk to.. (Want to display on a lcd? you need to know every bit of that LCD's info.)

    There are some C libraries that people have written to make LCD's Rs232, RS485 and I2C as easy as calling a subroutene, and picbasic has all of them already in it.

    but the true power of a pic is in assembly. I have seen a pong game in a pic that directly generated the NTSC video signal out one of it's pins and many other accomplishments that are impossible with any language on the pic other than assembly.

    I do think that everyone whould start with messing with a pic. get a basic electronics book if you dont know electronics and start there... buy a 16f84 and build a jdm programmer. and download the microchip dev kit.

    Sadly...on a side note, Atmel has a better line of microcontrollers but atmel doesn't give a rats ass about home developers so their dev kit is priced to keep you and I out of them and their Non discloseure attitude keeps them at second banana. I can find 20-30 times more info and support software for microchip products and Atmel has almost ZERO for them.

    --
    Do not look at laser with remaining good eye.