index.html 5.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Skype Telepresence Rover</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="//yegor256.github.io/tacit/tacit.min.css">
  8. <!-- favicon -->
  9. <link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png?v=3">
  10. <link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png?v=3">
  11. <link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png?v=3">
  12. <link rel="manifest" href="/favicon/site.webmanifest?v=3">
  13. <link rel="mask-icon" href="/favicon/safari-pinned-tab.svg?v=3" color="#ffb300">
  14. <link rel="shortcut icon" href="/favicon/favicon.ico?v=3">
  15. <meta name="msapplication-TileColor" content="#00aba9">
  16. <meta name="msapplication-config" content="/favicon/browserconfig.xml?v=3">
  17. <meta name="theme-color" content="#ffffff">
  18. <!-- https://realfavicongenerator.net/favicon_result?file_id=p1i11gpomc1kc09h71jmnr19kp6 -->
  19. </head>
  20. <body>
  21. <header>&#xA0;</header>
  22. <section>
  23. <article>
  24. <!--
  25. title: Skype Telepresence Rover
  26. -->
  27. <h1 id="skype-telepresence-rover" class="deep-link"><a href="#skype-telepresence-rover">Skype Telepresence Rover</a></h1>
  28. <p><img src="IMG_20110109_184027.jpg" alt="The current prototype">
  29. <br><em>The current prototype.</em></p>
  30. <p>While on co-op in California, I often used Skype to video call my family. I even attended my brother&apos;s high school graduation virtually via Skype; from a laptop, I chatted with all my old friends from high school and joined in group conversations. People carried me around so I could say hi to everyone at the party. It was a great experience, but I depended on others for mobility. At one point, I was set down facing a wall for 10 minutes until someone noticed and turned me around.</p>
  31. <p>This got me thinking, what would it take to have a real telepresence? A full-blown telepresence robot like an <a href="http://anybots.com/">Anybot</a> or a <a href="http://www.willowgarage.com/pages/texai/overview">Texai</a> was out of the question; I&apos;m a college student on a shoe-string budget. But with the shrinking cost of electronics, I was convinced I could make a telepresence robot on a shoestring budget. All I had to do was integrate some existing technology: Skype, a netbook, and an RC car. I estimated I could make a telepresence robot for less than $300!</p>
  32. <p>Part List:</p>
  33. <ul>
  34. <li>A netbook with 2GB RAM, acquired from Craigslist for $150</li>
  35. <li>A $60 RC car from Meijer</li>
  36. <li>An $30 Arduino microcontroller to connect the laptop to the RC car</li>
  37. <li>Some wood and screws to mount the laptop and Arduino to the RC car</li>
  38. <li>Python code (using the Skype API) to send and receive steering and speed commands</li>
  39. </ul>
  40. <div class="youtube-video"><iframe width="560" height="315" src="https://www.youtube.com/embed/QsiM0Cjdzhk" frameborder="0" allowfullscreen></iframe></div>
  41. <p><em>This is from an earlier prototype that was built on a chassis that did not have a built-in motor controller.</em></p>
  42. <div class="youtube-video"><iframe width="560" height="315" src="https://www.youtube.com/embed/UroWCdb6SUo" frameborder="0" allowfullscreen></iframe></div>
  43. <p><em>For my second prototype, I used a complete electric car chassis, and reverse engineered the built-in motor controller. This video demonstrates applying a 3-5V input causing the wheels to spin, drawing power from the built-in battery, not the voltage source.</em></p>
  44. <p>I had hoped to make a video of the robot in action, but have been too distracted to add the joystick control needed to steer the robot properly. In the meanwhile, above are a couple of videos I took during the development of the Skype Rover.</p>
  45. <p>The idea is really simple. The rover has it&apos;s own Skype Account. When you call it, it automatically accepts the call and puts your video in full-screen mode so others can see you well. On the controlling end, a Python code lets you send steering and speed commands using the mouse or a joystick, and on the rover end is Python code that receives the commands and sends them through a USB cable to the Arduino, which controls voltages wired into the RC car&apos;s motor controller. It is a masterpiece of integration, really. The technologies for telepresence were just there, waiting to be connected with a little bit of solder and Python by some clever individual. If it works, thousands of DIY hobbiests could build one of these things in a weekend.</p>
  46. <p>The project is about 90% complete. Upon my return to UC, I decided I wanted to be able to give tours of the UC Engineering building via the Skype Rover. However, initial tests revealed the engineering building has too many Wi-Fi deadzones to be able to drive the robot down a hallway without disconnecting. I also discovered that the open-loop control combined with latency issues made the rover extremely difficult to drive. Disheartened, I have temporarily shelved the Skype Telepresence Rover in favor of pursuing other projects such as learning ROS, the Robot Operating System from Willow Garage.</p>
  47. <p>After finishing most of the code, I searched for similar projects on the Internet and found <a href="http://sparkyjr.ning.com/">Sparky Jr</a>. Sparky Jr. has a similar goal; however, my rover was less expensive because of the decision to use an RC car chassis and a netbook rather than a Roomba chassis and a Mac mini.</p>
  48. </article>
  49. </section>
  50. <footer>&#xA0;</footer>
  51. </body>
  52. </html>