Setup

What you’ll need

  • A monitor
  • A mouse and keyboard
  • Wireless internet
  • An Amazon Web Services account
  • An account with Fitbit
  • A tablet for the user interface
  • A Google account to get an app for the tablet

QT has two ports: one USB-C and one USB-A. You’ll need to use the USB-C port for display and figure out how to control a mouse and keyboard. I suggest a USB-C hub that has a display port that you can use (USB-C or HDMI, for example) and has USB-A ports for your mouse and keyboard. Alternatively, you can use a USB-A hub to connect your mouse and keyboard to QT.

Note

If you have trouble using your mouse or keyboard through a USB-C port, try flipping the USB-C input going into QT. In theory, USB-C should go both ways, but in practice, sometimes not.

Basics

Turning QT on and off

To turn on QT, just plug in power to QT and it will boot.

To turn off QT, there are two options:

  1. Press the button on the backside of QT, near its feet.
  2. Login to the head computer (see below) and do sudo shutdown.

If you do sudo shutdown on the body computer, you only turn off the body computer—the head computer is still on.

Note

If you unplug QT to restart QT, it may mess up the boot timing of the two computers. Probably one of them takes longer because it boots in recovery mode. This screws up how the head and body computer network. You will not be able to connect to the head computer from the body computer. If this occurs, simple restart QT by pushing the button on its backside.

Accessing QT’s body computer

When you connect a monitor to QT and turn QT on, you will start on QT’s body computer.

Accessing QT’s head computer

To setup the head, you must Secure-SHell into it (SSH) from QT’s body computer. To do this

  1. Turn on QT.

  2. Open a terminal.

  3. Type the following and hit return:

    ssh qtrobot@192.168.100.1
    

Body

Getting your Amazon Web Service credentials

For QT to speak, we use Amazon Polly, which requires an Amazon Web Services account. At our current usage, using Amazon Polly is free up to a certain level), but you will need a credit card to create an account.

  1. Create an Amazon Web Services account.
  2. Once you sign in, in the top right of the page, click your account name (mine says “Audrow”), then in the drop-down menu click “My Security Credentials,” then click “Create New Access Key.”
  3. Record your access key and keep it somewhere safe. You can do this by downloading this or just viewing it and copy-pasting it to somewhere for later reference.

Note

It is best practice to create separate accounts with less access than your root account and use those access keys, see Amazon’s security best practices.

Getting your Fitbit credentials

You will need to make a Fitbit “app” for each Fitbit device. We are interested in the Client ID, Client Secret, and a generated code that saves us from having to login on a web browser.

  1. Create a Fitbit account for each Fitbit device.

  2. Login to your Fitbit account.

  3. Go to register an app

  4. Fill in the application. You can put whatever you think makes sense for most of them (URL, policy, etc.). (Make sure you include the http part int he urls.) The following are the parts that matter to get access to the Intraday data.

    • “OAuth 2.0 Application Type” should be “Personal”
    • “Callback URL” should be http://localhost
    • “Default Access Type” should be “Read-Only”
    _images/fitbit_application.png

    An example of what should be in the Fitbit app application

  5. On the registered app’s page, record your Client ID and Client Secret, and then click “OAuth 2.0 tutorial page,” near the bottom.

    _images/registered_app.png

    The registered app page.

  6. On the Oauth2.0 tutorial page, set “Flow type” to “Authorization Code Flow.”

    _images/oauth2_tutorial.png

    Oauth2.0 tutorial page with “Flow type” set to “Authorization Code Flow.”

    Note

    The “Expires In(ms)” text field is only used for “Implicit Grant Flow.” “Authorization Code Flow,” what we are using, expires in a fixed time (8 hours), but we are able to renew our authorization.

  7. Click the URL above “1A Get Code.” You’ll be brought to an error page, but that’s okay. We need the code from the URL. Record that code.

    _images/fitbit_code.png

    The page that you arrive at when clicking the URL above “1A Get Code.” The code we are interested in in the URL is highlighted.

    Warning

    If the URL is longer than in the picture, go back to the OAuth2.0 tutorial page and make sure that you have the “Flow type” set to “Authorization Code Flow,” not “Implicit Grant Flow.”

    Note

    The code obtained in this step only works once. After you use it to initialize a Fitbit client, it cannot be used again. We use it to obtain an access and refresh token for talking to Fitbit’s web API. If you need to reset Fitbit credentials for any reason, you will have to go to the OAuth2.0 tutorial page and get a new code.

Note

From this section, you should have the following information:

  • Client ID
  • Client Secret
  • A generated code

Setting up our interaction

  1. Change your system timezone to be in your current timezone. To do this, you can click the time in the upper-right of the desktop on QT and then click ‘Time & Date settings…’

  2. Open a terminal and clone this repository onto QT’s body computer:

    git clone -b v1.0 https://github.com/robotpt/abm-setup ~/abm-setup
    
  3. Run a script to allow for updates:

    sudo bash ~/abm-setup/scripts/nuc_setup.bash
    

Note

This step takes five minutes or so.

  1. Setup Docker:

    1. Install Docker:

      curl -fsSL https://get.docker.com -o get-docker.sh
      sh get-docker.sh
      
    2. Set Docker to run without sudo:

      sudo groupadd docker
      sudo gpasswd -a $USER docker
      newgrp docker
      
    3. Test that Docker is installed correctly and works without sudo:

      docker run hello-world
      
    _images/hello_from_docker.png

    What is printed from running the hello-world docker container.

  2. Setup Docker-compose:

    1. Install Docker-compose:

      sudo curl -L "https://github.com/docker/compose/releases/download/1.25.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
      sudo chmod +x /usr/local/bin/docker-compose
      
    2. Check that docker compose is installed correctly:

      docker-compose version
      
  3. Setup the docker container:

    Note

    The first time that you run the Docker script, it will take around 15 minutes to setup the container. After that, it will be fast. Feel free to take a break or go get coffee :-)

    1. Go to the docker directory in the abm-setup folder:

      cd ~/abm-setup/docker
      
    2. Run the docker.sh script with the setup option:

      bash docker.sh setup
      

    Note

    I did have an error occur during this command one of the times I was setting it up. It might have been a network issue. I ran it again and it succeeded. If you have trouble here let me know.

    1. Enter your Fitbit and Amazon Web Services credentials as prompted.

    2. You will then be shown the URLs where the tablet GUI will be hosted. There will be a few of them. We want one that starts with “192”, rather than “127” or “10”, because it will accept connections from other devices on the local network. Write down the relevant address.

      _images/start_gui_server.png

      An example of the URLs that that the interaction will use. In this case, we want to write down http://192.168.6.8:8082.

      Note

      If you don’t see an address with “192” at the beginning, try changing QT to a different wireless network.

    1. Hit Ctrl+C to close the container.
  4. Run the interaction:

    1. Make sure that you’re in the docker directory in the abm-setup folder:

      cd ~/abm-setup/docker
      
    2. Run the docker.sh script with the run option:

      bash docker.sh run
      
    _images/docker_run.png

    An example of the final message after the interaction run script.

    1. Make the interaction run on startup:

      1. List your Docker containers:

        docker container ls
        
      _images/docker_container_list.png

      An example of running containers.

      1. Copy the “CONTAINER ID”.

      2. Update the container’s restart policy:

        docker container update --restart=unless-stopped <YOUR COPIED CONTAINER ID>
        

Note

At this point, you should reboot QT. You can do this by either pushing the button on the back of QT or typing sudo reboot into the head computer’s terminal.

To test that things are setup correctly, you can take the URL for the GUI that you wrote down and type it into the web-browser on any device that’s on the same network. QT should begin asking you about your name, if it is your first interaction.

Tablet

For either tablet supplied by LuxAI with QT, or any Android tablet for that matter, we’re going to set up the tablet to run as a Kiosk using the app Fully Kiosk Browser.

  1. Sign on to the Google Play Store.

  2. Search for and download Fully Kiosk Browser.

  3. Start Fully Kiosk browser and set the start URL to the GUI URL that you wrote down earlier.

  4. Adjust settings in Fully Kiosk browser:

    1. In ‘Settings > Web Zoom and Scaling’, disable ‘Enable Zoom’
    2. In ‘Settings > Web Auto Reload’, set ‘Auto Reload after Page Error’ to ‘2’.

With this app, you can make it so that it’s challenging to get out of the app or do other things on the tablet. You can go into ‘Settings > Kiosk Mode (PLUS)’ to play with these settings. A plus license is 6.90 EUR per device (about 7.50 USD).