<?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>techimoto &#187; Sprint</title>
	<atom:link href="http://www.techimoto.com/tag/sprint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techimoto.com</link>
	<description>Technology in Motion</description>
	<lastBuildDate>Wed, 18 Aug 2010 17:35:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Rolling Your Own Mobile Hotspot</title>
		<link>http://www.techimoto.com/2008/05/12/rolling-your-own-mobile-hotspot/</link>
		<comments>http://www.techimoto.com/2008/05/12/rolling-your-own-mobile-hotspot/#comments</comments>
		<pubDate>Tue, 13 May 2008 00:16:34 +0000</pubDate>
		<dc:creator>MaxW</dc:creator>
				<category><![CDATA[Travel DIY]]></category>
		<category><![CDATA[EVDO]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[Tracking]]></category>
		<category><![CDATA[WiFi]]></category>

		<guid isPermaLink="false">http://www.techimoto.com/?p=355</guid>
		<description><![CDATA[As you can see from our main travel page, we are constantly updating scripts, Like the GPS capabilities on display on the RV trip travel blog, and being able to upload photos and posts live while on the road. We also have real-time streaming video, but are currently using it sparingly do to limited on-the-road [...]]]></description>
			<content:encoded><![CDATA[<p>As you can see from our main travel page, we are constantly updating scripts, Like the GPS capabilities on display on the RV trip travel blog, and being able to upload photos and posts live while on the road.   We also have real-time streaming video, but are currently using it sparingly do to limited on-the-road bandwidth.</p>
<p>Since those scripts only run on Windows XP and i use a MacBook Pro for my main computer, I had to come up with a creative solution using a single Sprint EVDO card with multiple computers.</p>
<p>I took a bunch of gear and my older Sony Vaio laptop and made a mobile wifi hotspot powered by EVDO.</p>
<p>So this is how I did it.</p>
<p><span id="more-355"></span></p>
<p>Gear list:<br />
PCMCIA to ExpressCard (for Merlin EX720 EVDO Card)<br />
Buffalo WiFi Router<br />
USB GPS<br />
Power Inverter<a href="http://www.techimoto.com/photos/photo/2487253773/DSC2193.html"><img class="alignright" style="border: 0pt none; margin: 2px; float: right;" src="http://farm4.static.flickr.com/3132/2487253773_cf1995a40c_m.jpg" border="0" alt="DSC_2193" width="240" height="154" /></a></p>
<p>The first thing to do was to get the EVDO Card working in my Vaio, since the card is a ExpressCard and the laptop only has a PCMCIA slot.  This required purchasing converter card.  Most of the places that were in the US wanted over $59 for a converter card.   Since it will mostly be used on this trip and not much in the future we thought it was crazy to pay that price (we actually needed a few of these for other reasons).  WIth a little research, we found some on eBay for $20 shipped from Hong Kong. After waiting a week they arrived and worked flawlessly.</p>
<p><a href="http://www.techimoto.com/photos/photo/2487254085/DSC2196.html"><img class="alignright" style="border: 0pt none; margin: 2px; float: right;" src="http://farm4.static.flickr.com/3134/2487254085_8c4371d69c_m.jpg" border="0" alt="DSC_2196" width="240" height="159" /></a></p>
<p>Now that we have the internet working on the Vaio it was time to get the internet shared with the WiFi  router.  To do this I followed the guide over at <a href="http://www.evdoinfo.com/content/view/59/63/" target="_blank">EVDOinfo</a>. After that I setup and configured the WiFi router by taking the ethernet cable and plugging it into the LAN port on the laptop and then the WAN port on the router.  This makes the internet from the laptop look like it is connected to a normal DSL, Cable modem.</p>
<p>Since the EVDO card looks like a regular dial up modem to the computer, I set it up to redial if the connection is dropped.  This makes it extremely reliable in the middle of nowhere when you go out of cell tower range.</p>
<p>Now that the router is working, the next step was to enable WEP to make sure that only the computers we wanted were allowed to log in.  This is to prevent unauthorized computers from slowing my connection down.</p>
<p><a href="http://www.techimoto.com/photos/photo/2487254155/DSC2197.html"><img class="alignright" style="border: 0pt none; margin: 2px; float: right;" src="http://farm4.static.flickr.com/3081/2487254155_32e164a17b_m.jpg" border="0" alt="DSC_2197" width="240" height="159" /></a></p>
<p>So now that we have our mobile Hot Spot I moved on to the GPS tracking.  We are doing this with both a server side and client side script.</p>
<p>Here is a quick overview of script activities:</p>
<ol>
<li>My Vaio runs a program that talks to the GPS to get our location and speed</li>
<li>The program sends that information to a database on the server.  NOTE: When you view the map on the page it is getting the information from the database.</li>
<li>Every few seconds the website refreshes the map with new data from the database making it appear almost analog to the viewer.</li>
</ol>
<p>We started with PUR tracker (mp3car.com) and had to make a few modifications as it came with a few bugs, the worst of which was placing the decimal point in the wrong place causing the GPS coordinates to go all over the place.</p>
<p>After we got that working it was time to embed it into the page.  For this I used an object embed for most well engineered browsers but as always Internet Explorer decided it would not display properly, so for IE users we use an iframe. To detect what browser it is we used a simple script.</p>
<pre>        &lt;!--[if IE]&gt;
	Put iframe here
	&lt;![endif]--&gt;
	&lt;!--[if !IE]&gt; &lt;--&gt;
        Put object embed here
	&lt;!----&gt; &lt;!--[endif]--</pre>
<p>So now that everything is setup and our Mobile Hot Spot is up and running it appears to be pretty low maintenance (knock on wood!).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techimoto.com/2008/05/12/rolling-your-own-mobile-hotspot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Samsung Instinct</title>
		<link>http://www.techimoto.com/2008/04/01/samsung-instinct/</link>
		<comments>http://www.techimoto.com/2008/04/01/samsung-instinct/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 06:13:55 +0000</pubDate>
		<dc:creator>MaxW</dc:creator>
				<category><![CDATA[Cellphones]]></category>
		<category><![CDATA[Event Coverage]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[CTIA]]></category>
		<category><![CDATA[Instinct]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Sprint]]></category>

		<guid isPermaLink="false">http://www.techimoto.com/2008/04/01/samsung-instinct/</guid>
		<description><![CDATA[Sprint demos the new Samsung Instinct at MobileFocus CTIA. var flashvars = { settingsFile: "http://www.techimoto.com/dx-1/files/xml/16.xml.xml", currVideo: "0" }; var params = { allowFullScreen: "true" }; swfobject.embedSWF("http://www.techimoto.com/dx-1/videoPlayer.swf", "36", "600", "348", "9.0.115", "http://www.techimoto.com/dx-1/swfobject/expressInstall.swf", flashvars, params); Samsung Instinctâ„¢ The Ultimate in Touch Screen Speed and Simplicity Samsung Instinct, exclusively from Sprint, offers consumers an industry-leading user experience by [...]]]></description>
			<content:encoded><![CDATA[<p>Sprint demos the new Samsung Instinct at MobileFocus CTIA.<br />
<a href="http://www.techimoto.com/2008/04/01/samsung-instinct/"><img src="http://www.techimoto.com/wp-content/uploads/2008/04/picture-1.png" alt="picture-1.png" width="490" /></a></p>
<p><span id="more-25"></span></p>
<p>				<script type="text/javascript">
					var flashvars = {
					  settingsFile: "http://www.techimoto.com/dx-1/files/xml/16.xml.xml",
					  currVideo: "0"
					};
					var params = {
					  allowFullScreen: "true"
					};
					swfobject.embedSWF("http://www.techimoto.com/dx-1/videoPlayer.swf", "48", "600", "348", "9.0.115", "http://www.techimoto.com/dx-1/swfobject/expressInstall.swf", flashvars, params);
				</script>
<div id="48">
				<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
			</div></p>
<p>Samsung Instinctâ„¢<br />
The Ultimate in Touch Screen Speed and Simplicity</p>
<p>Samsung Instinct, exclusively from Sprint, offers consumers an industry-leading user experience by combining full touch screen functionality with access to the fast speed of Sprint&#8217;s EV-DO Rev A Mobile Broadband Network. Samsung Instinct provides easy access to Sprint exclusive multimedia content, business or personal email, GPS navigation, live and on-demand TV content, full song downloads, streaming radio and an impressive HTML Web experience. Samsung Instinct offers localized haptic feedback and a new level of customization by allowing the user to access their favorite applications with a single touch. This stylish handset provides an expansive touch screen display and three navigation keys that keep all of the device&#8217;s features and applications within immediate access. Samsung Instinct offers Visual Voicemail, stereo BluetoothÂ® with audible caller ID, expandable memory up to 8 GB and a 2.0MP camera with camcorder.</p>
<p>ENTERTAINMENT/PERSONALIZATION<br />
â€¢ Sprint TVÂ® with an extensive selection of live and on-demand programming including Sprint Exclusive Entertainment (SEE), the industry&#8217;s only made-for-mobile sports and entertainment video<br />
programming network<br />
â€¢ Sprint Music StoreSM allowing users to wirelessly download full-length songs directly to their phone for just 99 cents each<br />
â€¢ More than a dozen streaming-radio applications, including Sprint Radio with more than 150 channels<br />
â€¢ Sprint Media Manager PC to phone transfer application<br />
â€¢ Background music mode allowing the user to play music while text messaging, playing games or surfing the Internet<br />
â€¢ Customizable Favorites menu</p>
<p>PRODUCTIVITY<br />
â€¢ Sprint Navigation with GPS-enabled audio and visual turn-by-turn driving directions, one-click traffic rerouting and more than 10 million local listings<br />
â€¢ Live Search for Sprint, powered by Microsoft, provides easy access to directory information, integrated GPS-enabled directions, interactive maps and one-touch click to call access<br />
â€¢ Voice to Action button providing many functions using voice activation including call, text, picture messaging, traffic, movie, sports, news and search.<br />
â€¢ HTML Web browsing<br />
â€¢ Visual Voicemail allowing users to listen to messages in their order of preference and manage them with a tap of the screen<br />
â€¢ 2.0 megapixel camera with 2x digital zoom and video camcorder<br />
â€¢ Advanced Stereo BluetoothÂ® Wireless Technology with audio caller ID<br />
â€¢ Access to corporate and consumer (POP3) email including AOL, Gmail and Yahoo!<br />
â€¢ Threaded text messaging provides a view of the full conversation<br />
â€¢ Mobile Sync to restore contact information if the device is lost, stolen or damaged<br />
â€¢ Phone as Modem connects the phone with a computer for Internet and email access</p>
<p>SPECIFICATIONS<br />
â€¢ Dimensions: 2.17 x 4.57 x 0.49 inches; 4.4 ounces<br />
â€¢ Display: 3.1&#8243; TFT (240 x 432 pixels and 262K vibrant colors)<br />
â€¢ Standard Lithium (LiIon) battery: up to 5.75 hours continuous talk time*  		 	<!-- google_ad_section_end --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techimoto.com/2008/04/01/samsung-instinct/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
