The Internet of Things (IoT) concept of operations places everything on the internet, and controllable through the Internet with a Web Browser. And that includes the RabbitHole’s Robot Buggy.
Robot Car Test Set – IoT Server Example
The Robot Car Test Set/Controller is a useful example of IoT Programming with two key elements Express.js and Node.js.
Robot Car Test Set – Code Tree
├── app.js
├── bin
│ └── www
├── LICENSE
├── package.json
├── public
│ ├── images
│ │ ├── joystick-base.png
│ │ ├── joystick-blue.png
│ │ ├── joystick-green.png
│ │ ├── joystick-red.png
│ │ └── joystick-yellow.png
│ ├── javascripts
│ │ ├── bootstrap.min.js
│ │ ├── bootstrap-toggle.min.js
│ │ ├── client.js
│ │ ├── jquery.min.js
│ │ └── xycontroller.js
│ └── stylesheets
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── bootstrap-theme.min.css
│ ├── bootstrap-theme.min.css.map
│ ├── bootstrap-toggle.min.css
│ └── style.css
├── RCTestSetTree.txt
├── README.md
├── routes
│ ├── ajax.js
│ ├── index.js
│ └── users.js
├── scratchPad.txt
├── screenshot.png
├── views
│ ├── error.pug
│ ├── index.pug
│ └── layout.pug
└── yarn.lock