Slashdot Mirror


Analog Tachometer PC Mod

greenape147 writes: "BurnOutPC has this review of a tachometer modification for your PC. The tachometer, made and sold by Xoxide, works via the serial port and displays the CPU utilization in RPM's! The classical look of this external tachometer is really nice to see after the "window phase" everyone seems to be going through. Not to mention the fact that analog meters are so fun to watch. Currently supported in Windows NT/2000/XP, a GNU/Linux driver is in the works."

67 of 222 comments (clear)

  1. Cheating? by Lord+Puppet · · Score: 4, Funny

    When you want to sell the computer, is there a way that you can cheat and roll back the tachometer?

    "Oh, this baby's practically brand new..."

  2. Re:Cheating? -Tach not odometer by soupforare · · Score: 2, Informative

    A tachometer measure revolutions per minute(rpms) you're thinking of the odometer (which is part of the spedometer 90+% of the time), which measures miliage.

    --
    --- Do you believe in the day?
  3. Oh, the humanity! by Anonymous Coward · · Score: 4, Funny
    This is pretty cool product, but I have these visions of computer geeks, who as a group can barely manage to use a fork without injuring themselves, trying to cut holes in PC cases with power tools and horribly maming themselves.

    What they really need is a miniature version that fits into a 5.25" drive bay, without the need for major case surgery.

    1. Re:Oh, the humanity! by Alsee · · Score: 2

      geeks. Here in crappy ole Iowa

      Yeah. In Iowa you're a geek if you know how to insert a floppy disk (or even know what a floppy disk is). But heay, at least that's better than Alabama where you're a geek if you have electricity and indoor plumbing :)

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    2. Re:Oh, the humanity! by crawling_chaos · · Score: 2
      I thought Alabama geeks bit the heads off of chickens.

      Other definitions of the word "geek"

      --
      You can only drink 30 or 40 glasses of beer a day, no matter how rich you are.
      -- Colonel Adolphus Busch
    3. Re:Oh, the humanity! by Amazing+Quantum+Man · · Score: 2

      geeks. Here in crappy ole Iowa

      Remember Gateway2000's earliest ads?

      COMPUTERS FROM IOWA????

      --
      Fascism starts when the efficiency of the government becomes more important than the rights of the people.
    4. Re:Oh, the humanity! by RollingThunder · · Score: 2

      You ain't kidding me.

      As somebody who has his own tablesaw, power drill, anvil (I do armorwork), etc, it amuses the heck out of me every time I read the "modboy" sites.

      You can always tell them - they're the ones that include four pages at the start on how to use a Dremel. A DREMEL! It's just a dremel, you just -use- it! ;)

  4. Schweete! by Chuqmystr · · Score: 4, Funny
    But when will they come out with those little tripple-gang under-dash mounting gauge thingies that were so prevalant in POS pickup trucks and Cameros all throughout the '70s and '80s? And just what would they measure? CPU and case temp and voltage? What's next, Pep Boys and Napa Auto stores end up with a cheesy PC hop-ups isle? Oh the humanity!

    /sbin/fsck -U micro$oft

    1. Re:Schweete! by steveha · · Score: 2

      It would actually work: use a thermal probe to actually hook up the temperature guage, hook the voltage guage up to the +12V on the power supply (but it would be very boring on a good power supply, so maybe you should hook it up to a drive light or something). Not sure what to do with oil pressure. Maybe sound volume to speakers?

      I think this would be a good use for those "Tokyo-by-night" guages, with LEDs instead of moving needles. That way you wouldn't hear the sound of needles beating against the stop post when the values fluctuated...

      steveha

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
  5. Gah! by Neon+Spiral+Injector · · Score: 3, Funny

    So what does this have a big assed shift light, even though you're driving an automatic transmission? There are enough "riced" out cars around now. Leave the computers alone. This in no way adds performance.

    Add a turbo or nitrous oxide, overclock or supercool. Not these useless mods.

    P.S. It is RPM, not RPMs, and expecially not RPM's.

    1. Re:Gah! by M-G · · Score: 2

      Thank you!

      RPM = Revolutions Per Minute

      The plural is built in, thus no need to tack a "s" on the end.

    2. Re:Gah! by ncc74656 · · Score: 2
      RPM's is more correct that RPMs, but yeah both are wrong.

      If you're going to be a grammar/spelling Nazi, at least get it right. "RPM's" is a possessive form which doesn't make any sense at all in this context. "RPMs" is a plural form...still incorrect in this context, but at least it doesn't shout "ignoramus" as loudly as "RPM's."

      --
      20 January 2017: the End of an Error.
  6. Idea I researched last year... by Niles_Stonne · · Score: 4, Interesting

    I thought that this would be a rather interesting project to do, but never really got around to making one.

    On Windows something like this is quite simple, as all of the information is available in HKEY_DYNAMIC_DATA (think that's the one). A driver for it would simply need to poll the value(s) of interest and output them to the serial port.

    On the hardware side of things a simple D/A converter could be used to convert the data to a position for the gauge. Perhaps add some memory or a random function to it so that it would maintain a level or have a nice little "bounce" to it.

    Note that ANY dynamic information could be displayed on it, not just processor usage. I thought about getting one of those old rotary switches and mounting it next to the guage, allowing me to select different things to watch on it. After all, processor useage on my system is rather unexciting - it's been pegged at 100% for over the last year. You could track disk useage, netword throughput(really useful), or any number of other values. For a listing of them look in the "Performance Monitor"(?) application on windows 9x/Me.

    --
    Sticks and Stones may break my bones, but copyright will always protect me.
    1. Re:Idea I researched last year... by Lumpy · · Score: 2

      no d/a needed all tachometers that are electronic look for pulses... 1 pulse = 1 rpm.

      just increase the rate of your pulses out the port (parallel port would be a better use, or a pic on the serial port generating the pulses based on a binary number so you dont need to use 30% of the processor to display useless information.)

      this is very easy to anyone that would want to do it under linux and can program a 16f84 Pic.

      --
      Do not look at laser with remaining good eye.
    2. Re:Idea I researched last year... by kawika · · Score: 2

      CPU utilization is only in HKEY_DYN_DATA for Windows 9x/Me. When you get to WinNT/2K/XP the interfaces are totally different and accessed through a complex HKEY_PERFORMANCE_DATA pseudo registry key.

    3. Re:Idea I researched last year... by Lumpy · · Score: 2

      true but I would rather service an interrupt every 1/2 second or even 1 a second. depending on the desired update rate. hell that gives you the ability to make averaging a possibility while leaving more cpu and system time to run Q3 at 3064X2098X32bit (Plain silly I know... A real gamer plays at 800x600 open GL and enjoy's insane refresh rates.)

      --
      Do not look at laser with remaining good eye.
  7. Re:It's not RPMs by scorcherer · · Score: 5, Funny
    $ rpm -qa|wc -l
    573

    Dunno about the rev/min, but my PC has 573 RPMs.

    --

    --
    The Cap is nigh. Time to get a fresh new account.

  8. Other external monitoring tools? by Mattygfunk · · Score: 2
    This could start a whole new line of pc monitoring tools.

    How about a cpu temperature gauge for overclockers.
    or
    A cpu odometer to give a running tally of exactly how many clock cycles it has done over its lifetime.

    Coming soon to a ThinkGeek ad near you.

    1. Re:Other external monitoring tools? by daniel_isaacs · · Score: 2

      When I was using BeOS on a regular basis, I would just turn oneof the CPUs off when it got too warm. God I miss that OS.

      --
      - Dan I.
    2. Re:Other external monitoring tools? by Emil+Brink · · Score: 2

      So, of course, can X11 users thanks to xodo (link to archive on ibiblio, couldn't find an official home page. There are RPM and DEB varities, too, plus a special version for KDE. So, if you're into this sort of thing, there's no need to switch to The Other OS just to get your dose. ;^)

      --
      main(O){10<putchar(4^--O?77-(15&5128 >>4*O):10)&&main(2+O);}
    3. Re:Other external monitoring tools? by asv108 · · Score: 2

      One of my older systems had a pretty cool temp and fan monitor availible here and probably many other places

  9. "Linux" driver, not "GNU/Linux" driver by Frothy+Walrus · · Score: 4, Funny

    since drivers deal with the kernel and not userspace apps, RMS can keep his grubby little mitts of this one. i'd call it a "Linux" driver.

    1. Re:"Linux" driver, not "GNU/Linux" driver by Snootch · · Score: 2

      If it's serial port, the driver is done in userland. Duh.

      Not necessarily. Just to name the first example I can think of, the parallel-port printer driver (lp) is in kernel-space. It just uses the low-level parport hooks. I would guess that this would be kernel-level too, as that would also be more expandable (other things, like CPU temp, etc, that it's easier to get from inside the kernel, unless you want to mess with /proc, but by that time it's a userland daemon, not a driver).

    2. Re:"Linux" driver, not "GNU/Linux" driver by Snootch · · Score: 2

      Touché! OK, conceded!

  10. Fluctuation by 1984 · · Score: 4, Interesting

    Erm, wouldn't this thing be sat there twitching the whole time?

    CPU usage fluctuates from near zero to 100% depending on what your box is up to, and a subsecond basis. Surely this'd only be good for a machine with a fairly constant load?

  11. YMMV by _PimpDaddy7_ · · Score: 4, Funny

    Brings a whole new meaning to the phrase
    "Your Mileage May Vary" now doesn't it? ;)

  12. Re:Cheating? -Tach not odometer by MrFredBloggs · · Score: 2, Interesting

    "Last time I checked, even the English were ahead of you in this field (they're using the metric system)"

    Not when it comes to miles per hour. Also, we drink pints of beer. This possibly isnt relevant in the states, where you apparantly get funny looks if you drink more than 2 pints in a day, for some reason.

    Drug sales are a curious mixture of both. Think thats something to do with harmonisation with Europe!

  13. One small flaw... by Daniel+Rutter · · Score: 5, Insightful
    I have, of course, just attempted to scam one of these to review on my site (most recent pointless case-mod widget review on Dan's Data: this one), but I can't help but think that there's a basic flaw in the idea.

    Namely - aren't most modders and overclockers running the distributed.net client, or some similar background task, which keeps our CPU utilisation at 100% all the time?

    I could draw a tachometer on the front of this PC, and it'd be 100% accurate :-).

  14. It only goes to 8! by Performer+Guy · · Score: 5, Funny

    I want one that goes to eleven.

    http://www.geocities.com/Hollywood/Academy/9177/

    1. Re:It only goes to 8! by Mignon · · Score: 2
      I actually saw Spinal Tap's concert at "Carnegie Fucking Hall," in David St. Hubbin's immortal words. Nigel's guitar had several cool mods, including perhaps over a dozen pickups, exhaust pipes, a speedometer, and a tachometer. That's as much as I could make out with my friend's binoculars, so I don't know if either of the last three did anything...

      Oh, and the show was pretty cool, too. I knew I was in for a good time when I saw the midgets hanging around the back stage door. During the show, they were dressed as delivery guys and brought in the Stonehenge triptych hanging from a wheeled clothing rack, and had David St. Hubbins sign for it mid-song.

  15. burnoutpc's tachometer by MrSpiff · · Score: 2, Funny

    burnoutpc's tachometer must be going warm now, they've been slashdotted :/

  16. How to build your own? by Hanno · · Score: 2

    I have to admit - I have *no* knowledge
    whatsoever about car electronics; I don't even
    have a car.

    But I like this idea. Is it possible to build such
    a unit oneself using a standard analog RPM display?

    --

    ------------------
    You may like my a cappella music
  17. some follow-up mods by mlas · · Score: 4, Funny
    • a dipstick that measures free RAM by the depth of brown viscous goo
    • a peep plug-in that makes revving noises as cpu cycles increase, and the sound of burning rubber when an app is launched
    • and heck, why not a temperature gauge with a probe attached to the CPU for all you overclockers out there?


    If this keeps up, it won't be long before you start seeing aftermarket replacement chips to improve your computer's performance... oh, wait...
    --
    "Luck is the residue of design" --Branch Rickey
    1. Re:some follow-up mods by ThatComputerGuy · · Score: 2

      Yeah, and how long unti all the ricers start putting huge 10" tachs with 3" shift-lights on their overclocked Celeron 300s?

      "Oh no, redline! Better turn the fan up to high!"

      --
      XML is like violence. If it doesn't solve the problem, use more.
    2. Re:some follow-up mods by anacron · · Score: 2

      I've always wondered -- if there was a 'Hurry The Fuck Up' button on your computer that you could press to increase the speed, how long would it take before the damn thing was permanantly duct-taped down?

      .anacron

  18. I have this vision by interstellar_donkey · · Score: 2

    Of getting one of those add on guage clusters sitting on top of my monitor with a cpu tach, a hours guage (hours of CPU usage), and a temp guage.

    I can finally get back at all those old folks I work with who scoff at me when I say that tweeking your computer is the same thing they did 30 years ago when they messed with their cars.

    --
    The Internet is generally stupid
  19. Re:Cheating? -Tach not odometer by Rand+Race · · Score: 5, Funny
    In the States you get funny looks if you drink pints at all, especialy 20 oz imperial pints rather than 16 oz US pints (and your ounces are 4% smaller than ours). And plenty of people down a six-pack a day, which is more than three imperial pints. Hell, you can buy single bottles of beer over here that are more than two imperial pints in capacity (warning to visiting brits, you will NOT like a 40 of Olde English 800).

    Drug sales are mixed on this side of the pond too. Pot is always measured in standard, coke is always measured in metric.

    My car gets 40 rods to the hogshead and that's how I like it!

    --
    Insanity is the last line of defence for the master diplomat. But you have to lay the groundwork early.
  20. What would be nice... by tom_newton · · Score: 4, Interesting

    ..is a USB version - advantages being: No serial-port theft (I use all of mine, ta!) and if you have internal USB headers there'd be no shonky cabling out back. Bonanza.

    I wonder if there's a USB device class for this sort of thing?

    ls /dev/usb/wasteoftime/ ;)

    --
    Tom Newton
    1. Re:What would be nice... by Bearpaw · · Score: 2
      [USB]

      Yah, and with 2 needles and OS X support for dual-processor PowerMacs. Vroom.

  21. Might be a bad idea by mikeage · · Score: 2

    I dunno... I like to keep my CPU relatively stations... seems even 1 RPM could lead to some rather twisted pins, unless the case was spinning too... and wouldn't any high velocity rotation be bad for the drives? Plus, who would want a spinning computer? ;)

    --
    -- Is "Sig" copyrighted by www.sig.com?
  22. Deja vu all over again by Observer · · Score: 5, Interesting
    (Warning: contains nostalgia ;)

    Old-timers among us still remember the days when mainframe consoles had lamps indicating the mode the processor was operating in. The old Univac machines used to have a green indicator for "guard mode" (unprivileged user mode) which was typically quite dimly lit but would flash into prominence when a compute-intensive task was active - or when a program was wedged in a tight loop. After you'd worked with one of these machines for a while, you got used to the behaviour of the lamps and of the rows of Blinkenlights on the maintainance panels and took notice if the patterns looked abnormal: quite often this was your first warning that something was going wrong that would need investigation later.

    To return somewhat to the topic, I remember working in the late 1970's on an prototype of the first of these mainframe systems that lacked the customary indicator lamps. I was puzzled for a while by a cheap analog 'Vu' meter balanced on top of one of the cabinets, with a few components soldered to its connectors and a couple of wires trailing back inside: one was clipped to the frame, the other to one of the many wire-wrap pins on the processor back-panel. The meter didn't seem to do anything, but all became clear when I was running a compilation a day or so later: the meter reading went up to 80 percent or so for seconds at a time. Yes, an ingenious engineer had worked out how to fit a guard-mode indicator to the new range machines; sadly, it never made it to the production models and a little piece of computing history came to an end.

    Of course, today I run the Windows task manager so I can tell when the braindead browser on this company-issue PC is wedged and must be killed and restarted. So much for progress.

    1. Re:Deja vu all over again by baptiste · · Score: 2
      After you'd worked with one of these machines for a while, you got used to the behaviour of the lamps and of the rows of Blinkenlights

      The lamps may be LEDs now, but not much has changed. I've got all my servers in one place next to each other with teh networking gear nearby. All blikenlights in clear view. I run web services, email, etc for a number of folks so I have pretty regular traffic. Its amazing how you quickly associate blink patterns and sounds. I can tell when my raid array (Deathstars) hits a bad sector (which is too often), the network lights tell a lot - I can tell by my switch which server is getting hit the most, etc If I hear an unusual sound from disks or notice odd blink pattersn - I often investigate looking for intruders ;)

      Now if all my web servers had teh triple gauge combos on top showing CPU load, Network load, and Temp - that would be WAY too cool.

      So many ways to waste what little time I have to do stuff like this!

    2. Re:Deja vu all over again by steveha · · Score: 2

      Back in my Apple ][ days, there was a gadget that I lusted after. It was an array of LEDs, 16x16 (256 in all), and it was connected to the 8-bit memory bus on the Apple ][. Since you only had 64KB of memory space, each of the 256 LEDs mapped onto a 256-byte chunk of address space. The lights would light up for each access to that chunk.

      It would have been very interesting to watch the lights during, say, garbage collection in BASIC.

      It would still be fun to have something like that on a grander scale, perhaps docked near my CPU meter in my GNOME desktop.

      While I never got the LEDs gadget, I did take an AM radio and set it up on top of my computer, volume turned down low. The RF interference made a distinct sound, which changed pitch when something different happened. If the computer went into an infinite loop, you could hear it. I got tired of the noise, though, so I don't do this anymore.

      steveha

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
  23. Re:Metric vs. imperial by hawk · · Score: 2

    >There are currently three countries that have not
    >officially switched over to the metric system
    >depending on your definition of "switched over"
    >-- try driving in England if you don't want to
    >use MPH). They are USA,


    Depends upon your definition of "officially." We've "officially" switched many times, it's just that we're not going to let some central government push us around on the issue.


    The first round wad during the Jefferson administration, when he issued an executive order to put us on that silly semi-10 based system. We didn't due it then, and it doesn't look so hot to us now, either . . .


    Just look at how much trouble it's caused--playing with those silly french units has already cost us at least one mars probe . . .


    hawk

  24. That's nice, but... by dracvl · · Score: 4, Funny

    ...the really cute thing about the case mod was the Pac-man eating the reset button and LEDs.

    Check out the picture :)

    1. Re:That's nice, but... by ncc74656 · · Score: 2
      ...the really cute thing about the case mod was the Pac-man eating the reset button and LEDs.

      PC Club was selling those the last time I built a couple of machines...they might still have 'em. Wocka wocka wocka wocka...

      --
      20 January 2017: the End of an Error.
  25. turbo switches by hawk · · Score: 2
    The first couple of turbo switches even made sense--they could drop you back down to the 4.77 clock of the original pc. After that, though,thy tended to just drop you back about 25% from full clock.


    Early games relied on loops and instruction execution for timing--they knew how long something would take, and how much time had elapsed b y where they were in the code. Double the clock, and things ran (roughly) twice as fast, making interactive games hard or impossible.


    I'm not sure this made it into the 286 perio, but if someone figured that that was as fast as desktop/home machines were going to get . . . (i.e., believed the line that the 386 was only for servers, ever . . .)


    hawk

  26. Re:Cheating? -Tach not odometer by Reality+Master+101 · · Score: 2

    Unless I'm totally off (which is usual), an odometer is really a tachometer, for it measures (sp?) a car's wheel rpms, perhaps with an added last stage to sum revolutions up until they make a mile and them zeroing them again.

    Yes, you're totally off. A tachometer measures rotations per unit time. An odometer measures accumulated rotations. A tachometer is much more complex than an odometer (an odometer is just some gears and wheels).

    --
    Sometimes it's best to just let stupid people be stupid.
  27. Sorry, It just bugs me. by J4 · · Score: 2

    "Are so fun to watch"
    ARRRRRGGGH, thats so *much* fun to watch.
    Or perhaps you meant "their more funner too whatch".
    Anyway, It is a cool hack, but kind of ass backwards. When the rpms are up you should get
    better response. Not likely when the load is up.

  28. Re:Cheating? -Tach not odometer by swillden · · Score: 4, Funny

    My car gets 40 rods to the hogshead and that's how I like it!

    Wow, that's what I call a real gas guzzler. I thought my SUV sucked fuel, but it gets around 270,000 rods per hogshead. Well, unless I'm pulling my trailer, then it drops to about 141,000, but what do you expect, I mean the trailer weighs like 500 stone and has a pretty large front sail area.

    What kind of vehicle are you driving, anyway? I mean, I think an M-1 Abrams tank gets around 6000 rph.

    --
    Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
  29. Re:How tachometers work... by ncc74656 · · Score: 2
    I believe tachometers work by getting a 12v pulse from the distributor every time cylinder 1 fires. So all you need to do is up the voltage from the serial port a little and send bits at a frequency proportional to the CPU usage.

    If it's RS-232, a serial port should be spitting out a 12V (±12V, actually) signal already. IIRC, a serial signal can go up to ±30V.

    --
    20 January 2017: the End of an Error.
  30. I have the l33test mod of all... by Pope+Slackman · · Score: 2

    My computer is a Type R .

    C-X C-S

  31. Re:How to build your own? -Car tachs are expensive by Andre060 · · Score: 2
    In fact, a real car tach is more expensive (new anyway) than the one they are selling. So unless you grab an old one from a junkyard for cheap, not much point to building it yourself...

    Andre060

  32. Ok here's the consensus by jgerman · · Score: 2
    After sending emails around about this here are the best ideas:
    • make a spoiler and airdams out of an old case
    • paint the whole thing neon green
    • slap some vtech stickers all over it
    • replace the drive bay covers with chrome grilles
    • replace the power button with a key start
    • link an engine wav to the tach, as rpms go up the sound get's higher pitched and louder


    Think I found a weekend project next time it's raining.

    --
    I'm the big fish in the big pond bitch.
    1. Re:Ok here's the consensus by jgerman · · Score: 2

      I forgot some, get a windowed case and tint it, and put neon strips around the bottom.

      --
      I'm the big fish in the big pond bitch.
  33. red zone, red zone, all the time by The+Fun+Guy · · Score: 2, Insightful

    This would be entertaining for anyone who isn't running a distributed computing project (d.net, SETI@home, Folding@Home, etc.). If you are, the thing would be pegged at 100%, all the time, maybe with a slight twitch when you load or terminate an app.

    While you might think it would be cool to have your tach pegged in the far red all the time, my first milisecond-scale reaction would be "Broken gauge", and my second milisecond-scale reaction would be "I just lost all my oil while driving at high speed and my engine will seize up in three... two... one...".

    Either way, I'd have that little viceral moment of panic each time I looked at the thing.

    --
    The man who does not read good books has no advantage over the man who cannot read them. - Mark Twain
  34. LCDs, VFDs, and lcdproc by Sloppy · · Score: 2

    This could start a whole new line of pc monitoring tools.

    (Ok, I just want to say, I think hooking up analog gauges is a neat idea, and I wholeheartedly approve of the "riceboy" mentality. With that out of the way...)

    None of this stuff is really new. A shitload of monitoring tools like this, have already been thought up and implemented. People why are interested in these sort of things, should look into getting something like a Matrix Orbital LCD or VFD (or one of their competitors) hooked up to a serial port, and the lcdproc server software.

    lcdproc clients have been written for all kinds of things, and idle monitors, temperature displays, etc are all old hat. Last year, I had a very embarrassing incident where my home fileserver's RAID5 was running in degraded mode for 6 months(!) before I noticed, because I never bothered to read logs (just goes to show what a shitty admin I am). So I thought, "never again" and darn near effortlessly wrote a little python program that displays my RAID status on the box's VFD. If my one of my RAID's partitions ever goes out again, then the usual "RAID Ok" that flashes on the front of my box every few seconds, will be replaced with something scary-looking, and I'll know.

    LCD/VFD displays are a lot more versatile and general-purpose than analog stuff, the sky's the limit to what you can do with these things, and lcdproc makes them so easy to program. Every box should have one! :-)

    --
    As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
  35. Old GE-635 had one of these per CPU by mesocyclone · · Score: 2

    The old General Electric 635 (mainframe - late '60s) had an analog MIPS meter for each CPU. It was great fun to watch... and ohh so exciting when it got up near 1 MIP (the maximum it could read).

    BTW... each processor was the size of a bunch of concatenated refrigerators. Memory, in 64MW chunks was in separate similar sized boxes.

    Hey... mod me up... us ancient fogies need all the help we can get :-)

    --

    The only good weather is bad weather.

  36. Something is missing... by brad3378 · · Score: 2
    If I were to do this on my Linux box,
    I'd have:

    Tach as shown above

    coolant temp gage (for monitoring processor temp)

    Fuel gage for UPS battery life

    Speedometer (for network traffic)

    Now if this was on a windows box,
    The obvious solution would be to replace all gages with idiot lights and fuzzy dice.

    ;)

    --

  37. RPM vs RPMs vs RPM's vs RsPM by Geek+In+Training · · Score: 2

    P.S. It is RPM, not RPMs, and expecially not RPM's.

    Agreed, Commander Pedant.

    And with baseball season coming up, you should be starting up your compaign to get all members of the press and game announcers to remember that Runs Batted in are RBI, not RBIs (and "expecially" [sic]) not RsBI!

    --
    SlashSigTheorem: Humorous, Political, Critical, Constructive- If you have a .sig, someone WILL complai
  38. Re:Meanwhile, back in reality. by ryanwright · · Score: 2

    Anyone with an extra $50 burning that large a hole in their pocket should feel free to contact me and I'll give you a few worthy charities who could more deservingly use the cash.

    More deservingly? You've got to be fscking kidding me. Are you saying I'm less deserving of my money because I earned it myself? Nobody decides who is more deserving of my money but me, and here's my position: *I* am the most deserving of my money. Why? I EARN IT.

    Deserving is defined as follows: To earn by service; to be worthy of (something due, either good or evil); to merit; to be entitled to; as, the laborer deserves his wages; a work of value deserves praise.

    So, tell me again how a charity is more deserving of my $50 than I am? The charity didn't earn it by service. The people whom the charity are giving it to didn't earn it. There was no work of value by anyone but me, so how can anyone but me deserve the money? The answer is, they don't. It's very nice if you're willing to give them money out of the goodness of your heart, but they don't deserve a single dime. Period.

    The USA was once full of people who worked their asses off to own nice things. Now it's full of people who don't do shit yet believe they are deserving of a luxurious American lifestyle. Their front-men are people like you, and the people who believe this "I deserve what you earned" mantra are part of what is tearing our country apart.

    In closing, take your anti-American bullshit elsewhere. We don't need it here.

    --
    -Ryan, with the unoriginal sig
  39. Re: 1 Pulse = 1 RPM [NOT] by Lumpy · · Score: 2

    actually that is only the case for low end tachometers. real tachs and OEM tachs get their pulse from the flywheel sensor which gives a pulse every revolution. and some others get a pulse on every cyl firing (ford) and do a mathematical conversion... these are a faster response tach as they can change within 1/4 of a revolution.

    Only the cheap aftermarket tachs like sunpro use a cyl-1 spark detector.

    --
    Do not look at laser with remaining good eye.
  40. Re:Cheating? -Tach not odometer by Dirtside · · Score: 2

    Real men measure their speed in femtoparsecs per microfortnight!

    --
    "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
  41. Build your own remote-controlled analog meter by leighklotz · · Score: 2

    I built my own remote controlled analog meter using an AC voltmeter from Radio Shack, and an X10 dimmer from X10.com (no link needed -- I'm' sure you already have a window open there anyway).

    You can control it remotely from a command-line program and use it to display your web server load, ebay price, whatever. (Hey, it could be a Web Service or maybe even a Gnome widget!)

    See pictures and instructions at http://graflex.org/klotz/meter

  42. Re:How tachometers work... by unitron · · Score: 2
    It's been a long while since I looked into (or cared about) hooking up a tach, but I'm pretty sure it gets a parallel feed of the pulse stream from the points (or electronic equivalent) to the coil primary. In other words, it gets a pulse every time that any plug fires (or misfires, for that matter).

    I can't remember if the crankshaft makes one turn or two for every rotation of the distributor but either way the faster the engine is turning the more pulses per unit of time. These pulses are fed to a capacitor which smoothes them out into a "steady" DC which rises and falls as engine speed does.

    The tach is basically a DC voltmeter that reads that voltage level on the capacitor. Some tachs have a switch or jumper to change capacitors or change the resistance in a resistor-capacitor combination so that you can set them for either an 8 cylinder or 6 cylinder engine (for 4 cylinders set it for 8 and divide the reading in half).

    --

    I see even classic Slashdot is now pretty much unusable on dial up anymore.

  43. How (I think) it's done by Ian+Peon · · Score: 2
    Having dabbled with my cars and done lots of work with serial ports, I think I got this one figured.


    When your car is running, the on-board processor (or, if you've got an older model, the points) is firing off a 12 volt signal 4 times per engine revolution (for a 4 cyl). The trigger tells the coil to fire it's juice to the spark plugs. (OK, actually, it causes a field collapse, but that's not important now!) That 12 volt trigger is what a tach normally reads. 1000 RPM = 4000 12 volt triggers per second. 8000 RPM (XOxide's tach max) is 32k triggers per second - closing on as fast as older com ports can go.


    OK, now wire up that trigger connector on the tach to the CTS (or was it RTS?) on a com port. Now a small background process that reads the stat you wanna display then opens the com port the appropriate amount of times per second should do it.


    I think I've got an old tach laying around somewhere...

  44. Re:Is there an open sdk for constolling it? by Shanep · · Score: 2

    I was considering making an analog system occupancy meter months ago. It would be really easy too, through the parrallel port.

    Periodically write the occupancy to the parallel port, which could have a super-simple (tm) R2R digital to analog convertor (appropriately built for the low voltage requirement) hooked up to an analog meter.

    Last time I was experiementing with lpt ports, 10 years ago, the data was held on those lines until the next byte comes through, so no latch should be required.

    --
    War crimes, torture, lies, illegal spying... Would someone give Bush a blowjob, already, so he can be impeached?