Quick Start

This Quick Start guide in intended to help you get a test environment up and running using the av-control-api to communicate with devices in your classroom. The project, and this guide, uses Docker to distribute pre-compiled microservices. Docker makes it easy to containerize, distribute, and update our systems. You are of course able to pull down the repositories, compile the binaries, and launch the microservices in any way that works for your environment. But feel free to use the already packaged Docker containers ditributed as part of the project. For additional information about Docker please refer to Docker’s Docs.

AV-API Demo

For the purpose of this demo we will be setting up a single display room that is controlled by a Raspberry Pi computer running the AV-API code. The Raspberry Pi will act as the room’s control system and be able to control the input being shown on the display as well as the volume of the display. You can call the API directly on the pi, or you can use a built UI provided by the demo. For this demo you will need the following materials:

Please Note: The UI was created for the purposes of this demo only, it is not code we intend for use in a production environment

This quick start guide is broken down into the following sections:

  1. Getting the hardware set up

  2. Getting the Raspberry Pi OS ready

  3. Downloading/starting the code (in the form of docker containers)

  4. Setting up the database and configuring your devices and room

  5. Testing the API

  6. Using the UI

  7. Exploring BYU’s Implementation

Getting the hardware set up

There are only three hardware components for this setup: the Raspbery Pi, a touchscreen and the television. The TV will need a little configuration to enable it’s network API. Please follow the Hardware Setup Guide for more instructions.

Getting the OS ready

To get the Operating System ready for this demo, the Raspberry Pi will need the following installed on it:

  • Raspbian Lite

  • Docker

  • docker-compose

  • Chromium Web Browser

  • i3 Window Manager (minimal windowing envrionment for launching chromium)

For a detailed step-by-step guide to get these installed on your raspberry pi, please refer to the Complete OS Setup Guide

Downloading and Starting Necesary Docker Containers

In order to get the Raspberry Pi up and running with the control code, the following Docker containers are needed:

  1. couch-db (for configuration storage)

  2. av-api (base api engine)

  3. sony-control-microservice (sony adcp protocol translation service)

  4. Demo UI

We will be using docker-compose to download and run required containers on your Pi. Please refer to the documentation in Deploying Docker Containers for more detailed steps on how to use docker-compose to get these containers on your device.

Setting up the database and configuring your devices

We use CouchDB as the database for our solution. Within CouchDB there are five important tables that are used throughout our solution:

  1. devices

  2. device_types

  3. rooms

  4. buildings

  5. room_configurations

The exact documents required for this demo are available by running the python script found in Demo DB Script.

For a more detailed documentation on the content of each of these tables, their purpose, and how they relate to each other, please refer to the Complete Database Guide

Testing the API

Once you have followed the previous steps, you should be ready to begin testing the API. We suggest using a program program like Postman to test the endpoints. For more detailed documentation on how to test the API enpoints please refer to the Complete API Testing Guide

Using the UI

Now that you have the AV-API to control your room, you need an interface to use to interact with it. We have created a simple user interface that can act as an example to how you might implement an interface of your own. Please Note: This interface was created only for the purposes of this demo, it is not code we use in a production environment

For information on how the UI works click here.

Exploring BYU’s Implementation

Now that you have a high level understanding of how everything is connected, there are countless ways to implement this solution for your organization. If you would like to learn more about how Brigham young University has implemented this solution on their campus go here.