<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title><![CDATA[Steamshift LLP Labs]]></title>
  <link href="http://labs.steamshift.com/atom.xml" rel="self"/>
  <link href="http://labs.steamshift.com/"/>
  <updated>2012-03-21T19:32:20+00:00</updated>
  <id>http://labs.steamshift.com/</id>
  <author>
    <name><![CDATA[Brothers Bennett]]></name>
    
  </author>
  <generator uri="http://octopress.org/">Octopress</generator>

  
  <entry>
    <title type="html"><![CDATA[Remote Controlled Car using iOS and Arduino]]></title>
    <link href="http://labs.steamshift.com/blog/2012/03/21/remote-controlled-car-using-ios-and-arduino/"/>
    <updated>2012-03-21T19:20:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2012/03/21/remote-controlled-car-using-ios-and-arduino</id>
    <content type="html"><![CDATA[<p>An app running on iPad wirelessly connects over <a href="http://developer.apple.com/library/ios/#samplecode/GKTank/Introduction/Intro.html">GameKit</a> through Bluetooth to the iPhone mounted on the RC car, which in turn sends serial commands via the Redpark Serial Cable to an Arduino, which then controls the motors in the car through the <a href="http://www.sparkfun.com/products/9815">Sparkfun Motor Shield</a>.</p>

<p>The next challenge is to stream video from the iPhone to the iPad to allow for driving it with a first person point of view.</p>

<iframe src="http://player.vimeo.com/video/38925361" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Movie controller on iPad with Arduino]]></title>
    <link href="http://labs.steamshift.com/blog/2012/01/08/movie-controller-on-ipad-with-arduino/"/>
    <updated>2012-01-08T16:44:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2012/01/08/movie-controller-on-ipad-with-arduino</id>
    <content type="html"><![CDATA[<p>Measuring the rotation speed of a computer fan with arduino, and using that as controller for the playback speed of movies on an iPad.</p>

<iframe src="http://player.vimeo.com/video/37601272" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>




<div><script src='https://gist.github.com/1579043.js?file='></script>
<noscript><pre><code>// constants won't change. They're used here to 
// set pin numbers:
const int buttonPin = 2;     // the number of the pushbutton pin

// variables will change:
int ledPin = 13;

int val;
long last=0;
int stat=0;
int stat2;

int counter=0;

int timer=1000; // the time it takes each reading

void setup() {
    // initialize the pushbutton pin as an input:
    pinMode(buttonPin, INPUT);

    Serial.begin(9600);
    Serial.println(&quot;Hello world&quot;);
    delay(2000);// Give reader a chance to see the output.
}

void loop(){
    // read the state of the pushbutton value:
    stat = digitalRead(buttonPin);

    digitalWrite(ledPin, stat);

    if(stat2 != stat)
    {  
        // counts when the state change, thats from (dark to light) or 
        // from (light to dark), remmember that IR light is invisible for us.
        counter++;
        stat2=stat;
    }

    if(millis()-last&gt;=timer){
        double rpm=(((double)counter)/(60000.0/timer));
                
                Serial.print(rpm, DEC);
                Serial.print(&quot;\n&quot;);

        counter=0;
        last=millis();
    }
}</code></pre></noscript></div>


<hr />
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[iPhone 4 Camera Mount Now Featured on IkeaHackers.net]]></title>
    <link href="http://labs.steamshift.com/blog/2011/12/06/iphone-4-camera-mount-now-featured-on-ikeahackers-dot-net/"/>
    <updated>2011-12-06T15:47:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/12/06/iphone-4-camera-mount-now-featured-on-ikeahackers-dot-net</id>
    <content type="html"><![CDATA[<p><a href="http://www.ikeahackers.net/2011/12/iphone-4-camera-mount-from-ikea-desk.html" title="View build instructions for Camera Mount"><img src="http://1.bp.blogspot.com/-Pt-z-sHq7e4/TskaDrXnEMI/AAAAAAAAVgY/RaeSlXezdvA/s640/IMG_0862-754036.jpg" alt="iPhone 4 Camera Mount from Ikea Desk Lamp" style="border: none" /></a></p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[iPhone 4 Camera Mount From Ikea Desk Lamp]]></title>
    <link href="http://labs.steamshift.com/blog/2011/11/19/iphone-4-camera-mount-from-ikea-desk-lamp/"/>
    <updated>2011-11-19T23:13:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/11/19/iphone-4-camera-mount-from-ikea-desk-lamp</id>
    <content type="html"><![CDATA[<p><a href="http://makeprojects.com/Project/iPhone-4-Camera-Mount-from-Ikea-Desk-Lamp/1638/1" title="View build instructions for Camera Mount">iPhone 4 Camera Mount from Ikea Desk Lamp</a></p>

<script type="text/javascript" data-dozuki-embed='3' src="http://cacher.dozuki.net/static/embed/ifixit-embed.3.js#id=1638&amp;site=makeprojects.com"></script>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Coming Soon]]></title>
    <link href="http://labs.steamshift.com/blog/2011/10/21/coming-soon/"/>
    <updated>2011-10-21T23:35:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/10/21/coming-soon</id>
    <content type="html"><![CDATA[<p>Sneak peak from the next experiment &#8230;</p>

<iframe src="http://player.vimeo.com/video/37772512" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[iPad Controlling Servo via Arduino]]></title>
    <link href="http://labs.steamshift.com/blog/2011/10/17/ipad-controlling-servo-via-arduino/"/>
    <updated>2011-10-17T16:01:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/10/17/ipad-controlling-servo-via-arduino</id>
    <content type="html"><![CDATA[<p>Another experiment in connecting things to iPad via Arduino and the Redpark serial cable.</p>

<iframe src="http://player.vimeo.com/video/37650960" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Wii Nunchuck Controlling iPad via Arduino]]></title>
    <link href="http://labs.steamshift.com/blog/2011/10/13/wii-nunchuck-controlling-ipad-via-arduino/"/>
    <updated>2011-10-13T19:40:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/10/13/wii-nunchuck-controlling-ipad-via-arduino</id>
    <content type="html"><![CDATA[<p>After the success of getting the iPad to talk to the Arduino, it was time to try the other direction; I decided to see if I could get data from a Wii Nunchuck onto the iPad:-</p>

<iframe src="http://player.vimeo.com/video/37650959" width="500" height="282" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Paduino: Controlling Arduino From iPad]]></title>
    <link href="http://labs.steamshift.com/blog/2011/09/29/paduino-controlling-arduino-from-ipad/"/>
    <updated>2011-09-29T12:57:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/09/29/paduino-controlling-arduino-from-ipad</id>
    <content type="html"><![CDATA[<p>First steps in connecting iPad and Arduino</p>

<iframe src="http://player.vimeo.com/video/37659327" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>


<p>With help from:</p>

<ul>
<li><a href="http://www.dailyack.com/2011/07/connect-your-iphone-to-real-world.html">The Daily ACK: Connect your iPhone to the real world</a></li>
<li><a href="http://makeprojects.com/Project/Connect-an-iPhone-iPad-or-iPod-touch-to-Arduino-with-the-Redpark-Serial-Cable/1130/1">Connect an iPhone, iPad, or iPod touch to Arduino with the Redpark Serial Cable - DIY How-to from Make: Projects</a></li>
</ul>

]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Steamshift Labs: A Location for Our Side Projects]]></title>
    <link href="http://labs.steamshift.com/blog/2011/09/29/steamshift-labs-a-location-for-our-side-projects/"/>
    <updated>2011-09-29T12:15:00+00:00</updated>
    <id>http://labs.steamshift.com/blog/2011/09/29/steamshift-labs-a-location-for-our-side-projects</id>
    <content type="html"><![CDATA[<p>Welcome to Steamshift labs; we&#8217;re going to be posting our experiments and side projects here.
Whether that is connecting Arduino to iPad or code demos, it&#8217;ll be here.</p>
]]></content>
  </entry>
  
</feed>

