<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II/RSS"></atom:link>
	<image>
		<url>http://files.channel9.msdn.com/thumbnail/2a2ec08a-7d5d-458d-b1f6-fa8fb2ebce1d.png</url>
		<title>Channel 9 - Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<link></link>
	</image>
	<description>In this article we will look at the OBD-II sub-system and instrument cluster application of the Project Detroit Mustang we built with West Coast Customs.&amp;nbsp; If you&#39;re not familiar with this project, you can find out more about it here and here. OBD-IIOBD stands for On-Board Diagnostics.&amp;nbsp; In the world of cars, this can be thought of as the computer which has a variety of data points which can be queried, such as speed, fuel level, and even trouble codes that relate to the check engine light.&amp;nbsp; If you&#39;ve ever taken your car in for service, your service center has hooked up the car to a computer via the OBD port to get the status of the car and what may not be working properly. Getting StartedTo use the OBD library with your vehicle, first you need an OBD to USB or serial cable.&amp;nbsp; These can be found in numerous places, but we recommend this cable from ScanTool.net, which was used with the Project Detroit car and our software.&amp;nbsp; Here&#39;s how to get connected: With the car off, plug the OBD end into your vehicle.&amp;nbsp; The port is in a different location in every vehicle, but it&#39;s guaranteed to be somewhere near the driver&#39;s location.  Plug the USB/serial end of the cable into your computer and note which COM port the cable is connected to. Update the app.config file of the InstrumentCluster project with that COM port. Start the car. Run the InstrumentCluster application, and data should start flowing. Calling the OBD library programmaticallyCreate an instance of the ObdDevice class Call the Connect method with the appropriate COM port, baud rate, and, if known, OBD protocol From here, the library works in two ways: automatic polling or manual polling Automatic – Pass true to the Connect method. This will poll the OBD as quickly as it can requesting RPM, MPH, MPG, Fuel Level and Engine Coolant Temperature. Note that not all vehicles will support all of these. In this mode, hook the ObdChanged event to receive an ObdState packet with the new data. Manual – Pass false to the Connect method. Then, create your own thread and call the ObdDevice&#39;s Get methods to retrieve the data you want as quickly as you want it.&amp;nbsp; This is the way we used the library in Project Detroit.&amp;nbsp; We polled manually, collecting the speed, RPM, and other critical data as quickly as possible, while only reading things like fuel level every few seconds. OBD is a polled system, so data can only be returned as quickly as the time it takes to request it and return it. In short, only retrieve what you need when you need it. 
ObdDevice obd;

obd = new ObdDevice();
obd.ObdChanged &amp;#43;= _obd_ObdChanged;

// com port, baud rate, protocol (if known), automatic polling
obd.Connect(&amp;quot;COM1&amp;quot;, 115200, ObdDevice.UnknownProtocol, true);

...

void obd_ObdChanged(object sender, ObdChangedEventArgs e)
{
    e.ObdState.ToString();
}
 Customizing the Instrument ClusterThe Instrument Cluster application is a WPF application that has 3 different skins which can be viewed by swiping left or right in the application, either with a finger, or the mouse.&amp;nbsp; This is a simplified version of the actual application we used in the Project Detroit car, modified to talk straight to the OBD port instead of our intermediate WCF service.&amp;nbsp; Please note that this isn&#39;t a robust, drop-in replacement application for a car dashboard, but only a sample of how the OBD library can be used. Internally, the application uses the OBD library and hooks the ObdChanged event.&amp;nbsp; The ObdChanged event returns a minimal amount of important data.&amp;nbsp; When the event fires, the the SetInstrumentClusterValues method is run, which sets the OBD values to each gauge in whichever skin is currently visible. 
private void SetInstrumentClusterValues(ObdState measurement)
{
    foreach (var item in _skins)
    {
        if(!item.IsVisible)
            continue;
        item.IsMalfunctionVisible = measurement.MilLightOn;
        item.IsLowFuelVisible = item.Fuel &amp;lt; 10;
        item.MPG = measurement.MilesPerGallon;
        item.MPH = measurement.MilesPerHour;
        item.RPM = measurement.Rpm;
        item.Fuel = measurement.FuelLevel;
        item.Temperature = measurement.EngineCoolantTemperature;
    }
}
  More InformationProject Detroit More information on OBD-II ELM323/327 Datasheet OBD-II to USB cable Known Issues / LimitationsThis is known to work with cables that uses the ELM323/327 chipset. The specific cable that was used to develop this library is available from ScanTool.net, however other ELM323/327 OBD-II to USB cables should work. There are a variety of different OBD-II signal protocols. This library only supports a few of them. If your car&#39;s OBD protocol is not supported, please feel free to add it and send us the changes to integrate back into the library! If the vehicle has multiple ECUs, the ECU with the most PIDs is used. The other ECUs are ignored. Not every standard PID is supported. No custom manufacturer/model-specific PIDs are supported. </description>
	<link></link>
	<language>en</language>
	<pubDate>Tue, 21 May 2013 15:14:20 GMT</pubDate>
	<lastBuildDate>Tue, 21 May 2013 15:14:20 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>Yeah, finally! Thank you <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /><br>Waiting for HUD project.&nbsp;</p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696013245799027</link>
		<pubDate>Mon, 09 Apr 2012 20:48:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696013245799027</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>Finally! Gratz!</p><p>Why don't you post the whole project instead only ODBII library?</p><p>Thanks!</p><p>posted by Gutemberg</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696236426939045</link>
		<pubDate>Tue, 10 Apr 2012 03:00:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696236426939045</guid>
		<dc:creator>Gutemberg</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696236426939045?areaType=Blogs&amp;areaName=Coding4FunArticles">Gutemberg</a>: We're designing the different components for reusability. For example, a lot of people will want to reuse the instrument cluster, but they wouldn't want to reuse parts like the LED lights for example.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696311648349881</link>
		<pubDate>Tue, 10 Apr 2012 05:06:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696311648349881</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696311648349881?areaType=Blogs&amp;areaName=Coding4FunArticles">Dan</a>:I'd Prefer The Whole Thing! Are The Episodes Available On Demand Yet? Sorry For The Caps, Silly Tablet</p><p>posted by ChrisHammond</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696334287594387</link>
		<pubDate>Tue, 10 Apr 2012 05:43:48 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696334287594387</guid>
		<dc:creator>ChrisHammond</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696311648349881?areaType=Blogs&amp;areaName=Coding4FunArticles">Dan</a>: I would like to reuse the HUD (front). Do you plan to publish this part? With hardware description please.</p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696381145065891</link>
		<pubDate>Tue, 10 Apr 2012 07:01:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696381145065891</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696381145065891?areaType=Blogs&amp;areaName=Coding4FunArticles">nesher</a>: the HUD requires some pretty extensive alterations to a car.&nbsp;</p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696659769360742</link>
		<pubDate>Tue, 10 Apr 2012 14:46:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696659769360742</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696334287594387?areaType=Blogs&amp;areaName=Coding4FunArticles">ChrisHammond</a>: Ideally, people will help build and improve on OBD support so it makes sense to launch that as a separate project without all of the dependencies, but point taken.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696675861156190</link>
		<pubDate>Tue, 10 Apr 2012 15:13:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696675861156190</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>I've done a little playing around with a USB OBDII dongle for my Android tablet, would love to do it all in .NET though rather than dealing with java for a while <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9' alt='Big Smile' />&nbsp;</p><p>I'm not sure I want to do anything with my current 350z, but am looking now looking for another project car to fit the bill. Thanks for making me spend money <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9' alt='Big Smile' />&nbsp;</p><p>posted by ChrisHammond</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696937102273106</link>
		<pubDate>Tue, 10 Apr 2012 22:28:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696937102273106</guid>
		<dc:creator>ChrisHammond</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634696659769360742?areaType=Blogs&amp;areaName=Coding4FunArticles">Clint</a>: Yes, I know this. That is why I'm asking about it. You have already made it and&nbsp;succeeded. I don't want to take my car apart only to fail. The OBD is nice and good, but not really new. The HUD is something that until now only car manufacturers could make. But you have made it. Maybe the first DIY HUD. We all have seen Xboxes, LEDs, projectors and other not always&nbsp;<span>useful things&nbsp;</span>build by customizing companies in the cars. The HUD IMHO is the first useful thing. It is not just some entertainment, but something that makes car driving really more comfortable and secure. Even if I can't install the HUD on my own, I could go to my local car customizing company and show them your &quot;blueprints&quot; so they not have to reinvent the wheel again.</p><p>So Channel9, please give us more info on HUD <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634697237859894736</link>
		<pubDate>Wed, 11 Apr 2012 06:49:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634697237859894736</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634697237859894736?areaType=Blogs&amp;areaName=Coding4FunArticles">nesher</a>:&nbsp; We're going to release a few more articles and code from Project Detroit.&nbsp; A full article on the HUD however is not one of them.&nbsp;</p><p>One of Coding4Fun's goal is we do the hard stuff so you can do the fun, cool, and interesting stuff.&nbsp; For what we're releasing from Project Detroit, the goal is for stuff the community can actually use without creating a crazy concept car.&nbsp; The OBD2 library only requires a cheap part that can be bought off the internet.&nbsp; This means anyone can do it with a modern car, a laptop, and&nbsp;the OBD2 cord can use the library!&nbsp;</p><p>The issue with our HUD implementation is it&nbsp;required structural changes to the physical car on top of modifying the dash and welding in mounts for the projectors.&nbsp; The projector also&nbsp;require a power source which means you'll need an inverter to go from DC to AC.&nbsp; You have to remember, we had one of the world's best automotive shops, west coast customs,&nbsp;helping us implement the HUDs.</p><p>Are the HUDs cool, you bet.&nbsp; Based on other crazy projects&nbsp;coding4fun has&nbsp;done in the past and how much work I know is required for doing our solution, I don't think this is a good project to for us to release.</p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634700496503707814</link>
		<pubDate>Sun, 15 Apr 2012 01:20:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634700496503707814</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@Clint: I agree with you that HUD is complicated. And is more hardware project as software. But you must agree, that using OBD2 just with a laptop on a co-driver seat is not very funny. You want to have this information not on a laptop, but on your dashboard or hud. And for any of this you have to change your hardware (car). Also they way you have implemented the HUD is only one way of doing this. How about using laser pico project from MicroVision? On page 6 (&nbsp;<a href="http://www.microvision.com/pdfs/MV_WhitePaper_v.4.pdf">http://www.microvision.com/pdfs/MV_WhitePaper_v.4.pdf</a>&nbsp;) you can see how they made a HUD prototype with a off the shelf pico projector. Also they have a HUD projector that can be build inside a car (&nbsp;<a href="http://www.microvision.com/vehicle_displays/head_up_details.html">http://www.microvision.com/vehicle_displays/head_up_details.html</a>&nbsp;). Unfortunately they don't sell this one to consumers. There is also Pioneer and its AR HUD&nbsp;<a href="http://youtu.be/QInEsw-25Qg">http://youtu.be/QInEsw-25Qg</a>&nbsp;They want to release it in 2012. It does not requires any modification to the car. But they want to use Android inside. I think Microsoft have to do something about it <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif?v=c9' alt='Wink' /></p><p>I think if you give the community what you have now, the community will optimize it and reduce the costs and complicated hardware changes to the car. Just give a start point.</p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634700820603333397</link>
		<pubDate>Sun, 15 Apr 2012 10:21:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634700820603333397</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634700820603333397?areaType=Blogs&amp;areaName=Coding4FunArticles">nesher</a>: I'm aware of both.&nbsp; The off the shelf pico isn't bright enough for the&nbsp;output&nbsp;size we wanted.&nbsp; I got some microvision picos for testing to verify this early on.&nbsp; I highly doubt either solution could be installed without modifying your car in some way, shape or form.&nbsp; Any current hud has&nbsp;a projection system&nbsp;that lives in the&nbsp;dash.&nbsp;</p><p>As I stated in my prior comment, unless there is something out there I'm not aware of that the public can purchase, a normal person could not implement our solution.&nbsp; We only want to release stuff that you guys can actually leverage.</p><p>What we provided with OBD-II, you could do what we did and leverage it as the instrument cluster.&nbsp; That skin is from the detroit project even.</p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634701547976974488</link>
		<pubDate>Mon, 16 Apr 2012 06:33:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634701547976974488</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634701547976974488?areaType=Blogs&amp;areaName=Coding4FunArticles">Clint</a>: Why did you build HUD if you don't want to release it?<br>To use OBD-II as instrument cluster you also have to modification a car. Or you can buy a car with a tablet instead of dashboard in USA?</p><p>If you build, then release it. If you don't want to release it, then don't show it.</p><p>Very&nbsp;disappointing&nbsp;this project.&nbsp;Definitely&nbsp;not coding4fun!</p><p>&nbsp;</p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634701728847654487</link>
		<pubDate>Mon, 16 Apr 2012 11:34:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634701728847654487</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634701728847654487?areaType=Blogs&amp;areaName=Coding4FunArticles">nesher</a>:&nbsp; I will ask that the comments go back on track to Brian's amazing OBD-II library and questions related to that.&nbsp; If you have issues, please email me directly.&nbsp; <a href="">Clint.Rutkas@Microsoft.com</a></p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634702192871282322</link>
		<pubDate>Tue, 17 Apr 2012 00:28:07 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634702192871282322</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634702192871282322?areaType=Blogs&amp;areaName=Coding4FunArticles">Clint</a>: I'm sorry for&nbsp;misusing&nbsp;this thread for offtopic. And big thanks to Brian for releasing this great library! I hope you will change your mind about HUD.</p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634702456894011339</link>
		<pubDate>Tue, 17 Apr 2012 07:48:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634702456894011339</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[Interesting tho some of your followers are expecting the impossible lols.  <br>OBD-II is possible because its an emission&#39;s standard based on ISO&#47;SAE -making OBD-II equipment via windows easy to obtain &#38; displaying values like RPM &#38; engine temp possible.  <br><br>They will have to build the rest themselves &#58;&#41;<br>PS. Im using silverlight in my project but not using off-the-self Elm tool, my own scan tool based on AT90CAN AVR.<p>posted by steve</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634716670079051991</link>
		<pubDate>Thu, 03 May 2012 18:36:47 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634716670079051991</guid>
		<dc:creator>steve</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p>@<a href="/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634716670079051991?areaType=Blogs&amp;areaName=Coding4FunArticles">steve</a>: already building <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634717389493411225</link>
		<pubDate>Fri, 04 May 2012 14:35:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634717389493411225</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[<p><a href="http://pioneer.jp/carrozzeria/cybernavi/avic_vh99hud_avic_zh99hud/">http://pioneer.jp/carrozzeria/cybernavi/avic_vh99hud_avic_zh99hud/</a></p><p>posted by nesher</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634722318239611209</link>
		<pubDate>Thu, 10 May 2012 07:30:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634722318239611209</guid>
		<dc:creator>nesher</dc:creator>
	</item>
	<item>
		<title>Re: Project Detroit: How to Read Your Car’s Engine Data with OBD-II</title>
		<description>
			<![CDATA[This is sweet, but can it be done with ODB-1&#63; I have a 1982 El Camino I am restoring and finding a dash cluster kit working is expensive, this would be a great alternative.<p>posted by Cedric Adams</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634781809770765381</link>
		<pubDate>Wed, 18 Jul 2012 04:02:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/articles/Project-Detroit-How-to-Read-Your-Cars-Engine-Data-with-OBD-II#c634781809770765381</guid>
		<dc:creator>Cedric Adams</dc:creator>
	</item>
</channel>
</rss>