Slashdot Mirror


Ultimate Automotive Computer Installation

ErnstKompressor writes "I came across a story detailing an awesome car mod out of the Czech Republic. The author undertook what must be the most impressive exercise in computer integration I have ever seen, installing an extensive Mac system with custom Cocoa software controlling nearly every aspect of a 1993 Tatra 613. On-board systems monitoring, navigation, entertainment, Bluetooth and Wi-Fi, plus much more, are all rolled into a tight, extensible, package. Check it out."

20 of 294 comments (clear)

  1. I wonder by somethinghollow · · Score: 4, Insightful

    I wonder at what point this becomes over-kill. I wonder was it worth all the work (e.g. is it that useful).

    On the "bright side", however, I can purchase a Toyota Prius and get a lot of the same functionality without all the work (and with 60+ miles per gallon)... of course, then I can't brag I have a Mac in my car and can't add things to it... but you get the picture.

    1. Re:I wonder by dyte · · Score: 5, Insightful

      I wonder at what point this becomes over-kill.
      When he started thinking about doing it, it became over-kill.

      It's a hobby (very cool). Hobbies don't have to be practical or usefull.

    2. Re:I wonder by Phrack · · Score: 2, Insightful

      Does it have to be? Sometimes the journey is the point...

      --
      Dump the IRS - http://www.fairtax.org
    3. Re:I wonder by sebi · · Score: 4, Insightful

      How much do you think he earns in his country?
      Since he is actually working in the Netherlands my guess is quite a bit. I read the article yesterday (it was linked from macslash) and he stated that he got the Tatra because of a lifelong fascination for the maker. Apparently his father was a driver for the leading class during communist years and took his little boy along in a Tatra.

      What I really liked about the article that there was no justification for using a Mac. Seems like he is simply a fan who never even considered using anything else. That should set an example for many past and future flamewars on Slashdot.

    4. Re:I wonder by martingunnarsson · · Score: 5, Insightful

      I think the parent has missed the whole concept of, well, hack-value. If you have a lot of money, you can buy almost anything. But what's that worth compared to actually building the stuff yourself? Kudos to this guy and all the other "hackers" out there.

      --
      Martin
    5. Re:I wonder by Bedouin+X · · Score: 1, Insightful

      It's a G4 450. Not exactly cutting edge.

      --
      Dissolve... Resolve... Evolve...
    6. Re:I wonder by timeOday · · Score: 2, Insightful
      This is a terrific piece of work. I hope you enjoy your Prius, but you should be comparing this guy to a Toyota research engineer, not yourself.

      Hewlett Packard likes to talk about how they started in a garage. It's people like this who carry on that spirit and who own the future, not consumers or the HP of today.

    7. Re:I wonder by milkman_matt · · Score: 3, Insightful

      I think the parent has missed the whole concept of, well, hack-value. If you have a lot of money, you can buy almost anything. But what's that worth compared to actually building the stuff yourself? Kudos to this guy and all the other "hackers" out there.

      Too true, Yeah, i've got a custom, stock looking TV and DVD in my truck(Please be gentle with my server, also, the DVD player has been upgraded and moved, that part was cheesy :( ) However, a tv/dvd in a car/truck these days is a nickle a dozen, it's standard equipment almost, true mine's custom and I did it myself, so I am kinda proud, but shit, mine didn't require a fraction of the effort or work or knowledge that this guy put in. My tv doesn't show the temperature in various parts of my car, it doesn't show gas consumption, it doesn't do GPS, have a clock, tell me how many more miles I can go on the amount of gas I have, or have trip-o-meters, it's not customizable to that degree.. I hear the new BMWs have pretty advanced computers, but I doubt they can do this... This is an extremely cool hack, it looks totally custom, and it's more powerful than any computer system you can buy as an option as your car. I agree, Kudos to this guy, shit i'm jealous.

      -matt

  2. Been done. by Corvus9 · · Score: 3, Insightful
    Lots of techies have decked out their cars with computer-controlled GPS, audio, entertainment, trip planning, and such.

    For example, some guy named Wally Rodriguez built a similar Mac-based system.

  3. Re:Clever, but... by segmond · · Score: 4, Insightful

    Why does it frighten you? Did you even read the article? If you did, can you tell us what is so distracting? Everything there is an article about a car with a tech modification, someone like you is bound to post a lame reply like this just cuz you know that people who didn't read will bound to agree.

    Go read the article.
    http://apple.slashdot.org/comments.pl?si d=93970&ci d=8066041

    --
    ------ Curiosity killed the cat. {satisfaction brought it back | it didn't die ignorant | lack of it is killing mankind
  4. Re:Fastest Mac on four wheels? by Anonymous Coward · · Score: 1, Insightful

    Maybe because movies aren't real?

  5. Re:Fastest Mac on four wheels? by mo^ · · Score: 2, Insightful

    insightful???? get tae fuck!

    funny, YES

    ]damn the dude even "winks" of course this aint insightful

    --
    bah!*@%!
  6. One minor problem, in my eyes... by Luckboy · · Score: 2, Insightful

    Did anyone else notice that it takes 1 minute 20 seconds to boot his car? Granted there are cities where you can get booted in under a minute for illegal parking, but I digress...

    Total time for me to plug in my iPod and hit play: 10 secs. In-dash GPS? Turns on with the car.

    I know that this is a minor nitpick, and it's truly an admirable geek project. He may have even saved a couple bucks from buying off the shelf. Does this really work any better than the store bought equivalents?

  7. I said it before... by BeProf · · Score: 3, Insightful
    I'll say it again.

    Am I the only person left in the world who:
    • uses his cell-phone just for talking to people?
    • uses his car just to get from A to B?
    --
    You are attempting to read sigs. Cancel or Allow?
  8. Re:Cocoa in the "embedded" world? by Anonymous+Meoward · · Score: 2, Insightful

    Actually, I've been thinking about this quite a bit recently, or at least a related topic: what object-oriented language works best in an embedded environment?

    My first answer is "none", as embedded systems usually have more stringent requirements for speed and size. Also, most embedded programmers I know cannot do object-oriented programming well, even without the constraints I just described. (I could relate quite a few horror stories about that EE who just learned C++ and was let loose upon an unsuspecting source base. Nightmare for the brave, that.)

    The top two choices are C++ and Java. I have bones to pick with each. C++ is ridiculously complex, and isn't even a real OO language, what with the crappy extensions provided for run-time type identification. At best, C++ is object-based, and tries to use very abstruse strategies (such as templating) for generic programming.

    Furthermore, many of the language's idioms rely on exception handling. However, throwing an exception in an embedded system is usually a no-no due to speed constraints; embedded programmers prefer to have control over the flow of execution, and are loath to trusting opaque run-time management of any kind. And of course, exceptions are off-limits in device drivers.

    Java has its own problems with the requirement of a virtual machine. The C++ run-time is too small to allow for rapid application development, but Java goes to the other extreme entirely. Admittedly, I know very little about Java's use in the embedded space, but how exactly is garbage collection controlled in the embedded world? How do Embedded Java systems avoid, for example, missing a device interrupt for the sake of cleaning house?

    Objective-C seems to be just the right mix: real object-orientation, backwards compatibility with C, and a very small run-time library to support its extra functionality. And it's a breeze to learn, especially when compared to the other choices.

    So has anyone thought of using Obj-C in an embedded system? Is it a viable, attractive alternative?

    --
    --- The American Way of Life is not a birthright. Hell, it's not even sustainable.
  9. Not this cleanly by tiktokfx · · Score: 2, Insightful

    This Czech has done something similar, but approximately 10x more elegant and well-thought-out.

  10. Re:Fastest Mac on four wheels? by kfg · · Score: 3, Insightful

    You may smell as you wish, but it's simple history.

    http://www.lightauto.com/ledwinka.html

    http://www.corvetteconti.com/C5-Backbone.htm

    And of course VW, FIAT and even myself have designed and built backbone chassis well before the modern Corvette adopted it.

    If you wish to do more in depth research on this you'll have to rely on these things called "books." Not everything is on the web. I can highly recommend "The Bosch Book of the Motor Car: Its Evolution" to the casual reader.

    L.J.K. Setright's book "The Designers" also has a lovely little chapter on Ledwinka and his contributions although this title is now a bit scarce.

    By the way, the four valve, double overhead cam engine was invented by Ernest Henry for Peugot in 1912. The "unibody" was pioneered by Lancia in the early 1920s, whose chief designer spent an evening drawing up plans for virually every independant suspension system known to man.

    In fact the only really serious technical innovation in automotive technology since WWII has been the microprocessor. The rest of it has basically boiled down to the simple availability of better materials. Lancia didn't have the carbon fiber the modern F1 car is made out of, but the construction of the modern F1 is basically the same Lancia's 1922 Lambda.

    KFG

  11. Re:See More @ mp3car.com by srvivn21 · · Score: 2, Insightful
    From your link:
    2) Replace the GAIN/Xenarc panel with a Lilliput screen. 250 nits is absolutely not bright enough in the daytime even with tinted windows no matter what anyone tells you -- unless you live in Alaska where there are many months of darkness.

    Don't forget, this means several months of light in the summers. :o) They don't call it the "Land of the Midnight Sun" for nothing...

    Nice install BTW.
  12. Something disproportional... by jlockard · · Score: 2, Insightful

    The rear doors are full sized and not wrapped around the rear wheels, add to that the shape of the trunk and you have a car that is extrodinarily long with seemingly no trunk.

    --
    --JLockard - "Some mornings, it's just not worth chewing through the leather straps." - Emo Phillips
  13. engine by phriedom · · Score: 2, Insightful

    Didn't anyone else notice he said the car had an air-cooled V8 over the rear wheels?

    I couldn't believe I was reading that correctly, and had to re-read it 4 times. That is far more strange than his custom computer.

    --
    Don't moderate flamebait as Troll. Know the difference or you will be Meta-moderated.