Setting up the interface
We can now move to the last part: setting up the interface that will allow a secret agent to command the robot and also to see the live stream from the camera. This interface will be composed of an HTML page and a JavaScript file. It will be based on the aREST.js
module that makes it easy to control aREST devices from a web page.
This is the complete HTML page:
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>Surveillance Robot</title> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="interface.css"> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <script type="text/javascript" src="https://cdn.rawgit.com/Foliotek/AjaxQ/master/ajaxq.js"></script> <script type="text/javascript" src="https://cdn.rawgit.com/marcoschwartz...