Project:Puppeteer

From London Hackspace Wiki
Jump to navigation Jump to search

Pupeteer

Pupeteer is an open-source telepresence platform that allows people to log-into robots and be able to control them remotely in a seamless manner.

Requirements

  • Extendable
  • Multi-user
  • Multiple hardware

Progress

  • Still gathering requirements and doing initial technology tests

System diagram

<graphviz border='frame' format='svg' > digraph rfboard{

  rankdir=LR;
  size="8,5!";
  
  client [label="client",shape=box];
  subgraph cluster_0 {

node [style=filled];

       label = "bot";
       web_service [label="web service",shape=box];
       media_streamer [label="media streamer",shape=box];
       hardware [label="control hardware",shape=box];
       
       web_service -> hardware;
  }   
  media_streamer -> client [label="media"];
  client -> web_service [label="control"];
  client ->  media_streamer [label="media"];

}


</graphviz>

Contributors