<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rich Fesler</title>
	<atom:link href="http://o-l-m.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://o-l-m.com/blog</link>
	<description>another day ...another project</description>
	<lastBuildDate>Wed, 16 Nov 2011 07:04:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Windows 7, DLNA, and streaming MKV video files to Droid X via WiFi</title>
		<link>http://o-l-m.com/blog/2011/11/windows-7-dlna-and-streaming-mkv-video-files-to-droid-x-via-wifi/</link>
		<comments>http://o-l-m.com/blog/2011/11/windows-7-dlna-and-streaming-mkv-video-files-to-droid-x-via-wifi/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 07:02:41 +0000</pubDate>
		<dc:creator>rfesler</dc:creator>
				<category><![CDATA[Device Configuration]]></category>
		<category><![CDATA[DLNA]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[MKV]]></category>
		<category><![CDATA[TVersity]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://o-l-m.com/blog/?p=22</guid>
		<description><![CDATA[After many long nights of experimenting with the right combination of applications &#8230;success! MY OBJECTIVE: Stream MKV video files from my Windows 7 x64 desktop to my Droid X via 802.11g. On the Droid &#8211; install: #1) Vplayer #2) UPNplayer (launch this instead of DLNA) On the Desktop &#8211; install: #1) ffdshow #2) Haali Media Splitter #3) TVersity Media Server I accepted all installations as default. You might want to tweek TVersity to get optimal results.]]></description>
			<content:encoded><![CDATA[<p>After many long nights of experimenting with the right combination of applications &#8230;success!</p>
<p>MY OBJECTIVE: Stream MKV video files from my Windows 7 x64 desktop to my Droid X via 802.11g. </p>
<p>On the Droid &#8211; install:<br />
#1) Vplayer<br />
#2) UPNplayer (launch this instead of DLNA)</p>
<p>On the Desktop &#8211; install:<br />
#1) ffdshow<br />
#2) Haali Media Splitter<br />
#3) TVersity Media Server</p>
<p>I accepted all installations as default. You might want to tweek TVersity to get optimal results.</p>
]]></content:encoded>
			<wfw:commentRss>http://o-l-m.com/blog/2011/11/windows-7-dlna-and-streaming-mkv-video-files-to-droid-x-via-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stamps.com 5lb Scale &#8211; Getting data via USB (w/Python)</title>
		<link>http://o-l-m.com/blog/2011/09/stamps-com-5lb-scale-getting-data-via-usb-wpython/</link>
		<comments>http://o-l-m.com/blog/2011/09/stamps-com-5lb-scale-getting-data-via-usb-wpython/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 17:54:24 +0000</pubDate>
		<dc:creator>rfesler</dc:creator>
				<category><![CDATA[Device Hack]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Stamps.com]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://o-l-m.com/blog/?p=11</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: python; title: ; notranslate">

####################################
# Stamp.com 5lb Scale USB interface
# Author: rfesler@o-l-m.com
# Language: Python v3.2
# Externals: pyUSB v1.0
# Version:
#       0.2 -
#       0.1 - Rough Code (25Sept11)
####################################

import usb.core
import usb.util
import sys

# find the sclae
dev = usb.core.find(idVendor=0x1446, idProduct=0x6A73)

# was it found?
if dev is None:
raise ValueError('Device not found')

# set the active configuration. With no arguments, the first
# configuration will be the active one
dev.set_configuration()

# Get data from USB Pipe 0x81
ret = dev.read(0x81,6)

# Byte 0 = Report ID (3 is the standard for scale data input reports)
# Byte 1 = Scale Status
# 		1 = Fault
#		2 = Stable at Zero
#		3 = In Motion
#		4 = Stable
#		5 = Under Zero
#		6 = Over Weight
#		7 = Requires Calibration
#		8 = Requires Re-zeroing
# Byte 2 = Weight Unit
#		11 = ounces
#		12 = pounds
# Byte 3 = Data Scaling (This is the exponent that you raise 10 by to get the decimal)
# Byte 4 = Weight LSB
# Byte 5 = Weight MSB

print (ret)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://o-l-m.com/blog/2011/09/stamps-com-5lb-scale-getting-data-via-usb-wpython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rooting your Droid X &#8211; Gingerbread</title>
		<link>http://o-l-m.com/blog/2011/07/rooting-your-droid-x-gingerbread/</link>
		<comments>http://o-l-m.com/blog/2011/07/rooting-your-droid-x-gingerbread/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 06:06:27 +0000</pubDate>
		<dc:creator>rfesler</dc:creator>
				<category><![CDATA[Device Hack]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[Gingerbread]]></category>

		<guid isPermaLink="false">http://o-l-m.com/blog/?p=4</guid>
		<description><![CDATA[After many hours and shuffling through lots of BS on the web &#8230;this works: #1) Find, burn, and CD boot your PC with: 1KDStaz0.9_2.3.340.iso #2) Find a copy of &#8220;Z4&#8243; &#38; install/run on your Droid X. #3) Find a copy of &#8220;Droid2Bootstrap.apk&#8221; &#38; install/run on your Droid X. #4) Put &#8220;dxgbrooted.zip&#8221; on your microSD card (via USB) &#8211; install via &#8220;Droid2Bootstrap&#8221; BANG!!!! &#8220;Rooted Gingerbread&#8221;]]></description>
			<content:encoded><![CDATA[<p>After many hours and shuffling through lots of BS on the web &#8230;this works:</p>
<p><strong>#1)</strong> Find, burn, and CD boot your PC with: 1KDStaz0.9_2.3.340.iso<br />
<strong>#2)</strong> Find a copy of &#8220;Z4&#8243; &amp; install/run on your Droid X.<br />
<strong>#3)</strong> Find a copy of &#8220;Droid2Bootstrap.apk&#8221; &amp; install/run on your Droid X.<br />
<strong>#4)</strong> Put &#8220;dxgbrooted.zip&#8221; on your microSD card (via USB) &#8211; install via &#8220;Droid2Bootstrap&#8221;</p>
<p>BANG!!!! &#8220;Rooted Gingerbread&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://o-l-m.com/blog/2011/07/rooting-your-droid-x-gingerbread/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

