GithubHelp home page GithubHelp logo

daisycrego / mercury-telemetry Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mercury-telemetry/mercury-telemetry

1.0 1.0 0.0 13.22 MB

Mercury is an open-source telemetry system designed by a team of graduate students at NYU for the NYU Tandon Motorsports team. Mercury was designed to allow students to have access to a live telemetry system. Mercury’s documentation is intended for users with little experience in programming and will guide you through setting up the system, from wiring sensors on a Raspberry Pi all the way to seeing live-action data on the racetrack.

License: MIT License

Dockerfile 0.13% Python 80.87% Shell 1.27% JavaScript 3.07% CSS 3.08% HTML 11.28% Makefile 0.30%

mercury-telemetry's Introduction

master

Build Status Coverage Status

Mercury

Mercury is a telemetry system that provides software and instructions that will allow you to:

  • attach telemetry sensors to a Raspberry Pi
  • record and transmit sensor data via WiFi and/or radio to a data collection endpoint
  • visualize the data live or retroactively from the Mercury web application
  • export the data and analyze it in other ways

Mercury consists of the following components:

1. Mercury Telemetry Hardware

  • Instructions, firmware, and software for setting up a Raspberry Pi to collect/transmit data from your sensors and relay it to a data collection endpoint (the Mercury web app).

2. Mercury Web App

  • If you are only interested in collecting data, because you are planning to visualize the data using other methods, the web app can act as a simple endpoint, retrieving and processing data from the sensors and storing it in a local or cloud-hosted Postgres database.
  • If you are also interested in visualizing your data, we provide an integration with the visualization tool, Grafana, which will allow you to create a custom panel for each of your sensors and view your telemetry data live from a Grafana dashboard (see Fig. 1 below).
  • The Mercury web application can be either run locally on your machine or deployed on a web-hosting service like Heroku.

3. Database Synchronization

  • If you are transmitting data in a location with intermittent radio vs. WiFi transmission capabilities, and would like to have the option to transmit via both radio and WiFi, we provide a guide for you to set up database synchronization between the database receiving the radio transmissions and the database receiving the WiFi transmissions.

fig 1 Fig 1: Grafana dashboard with 3 sensor panels: GPS, temperature, and speed.

Installation Overview

Documentation

  • Mercury
    • We recommend that you start by installing Grafana, then look at our walkthrough, which will give you an idea of the sequence of steps needed to visualize sensor data live in Grafana.
    • Configure Grafana: A guide for installing Grafana and connecting a Grafana host to your Mercury deployment. Once Grafana is hooked up to Mercury, the two will remain in sync, and all of the sensors you add/update/remove in Mercury will be updated in Grafana.
    • Configure Sensors: A guide for creating and managing your sensors in Mercury. These sensors will be used to generate Sensor Panels in Grafana.
    • Manage Events: A guide for creating, managing, and exporting data from events. Mercury organizes sensor data collection into Events, so whenever you have a new recording session, create a new Event. All incoming sensor data transmissions will be stored under the Active Event, which can be toggled through the Mercury web app. This will allow you to keep your measurement data organized. Each Event will have an Event Dashboard in Grafana, which will display only the data recorded for that Event.

Local Setup

For Unix-like OS

  1. Install python and psycopg2 dependencies
## Ubuntu/Debian
sudo apt install python3-dev libpq-dev

## RPM-based Linux
# Now we only tested on Fedora 31 successfully, 
# but there should be very little differences on other RPM-based Linux systems. 
# If you can test on centOS/RedHat/OpenSuse and other versions of Fedora, please give us some feedback.
# Thanks for your help!
#
# dnf is yum's successor. In Fedora 31/32, you can still use yum as package manager
sudo dnf install python-devel libpq-devel

## macOS
# Detailed step is coming soon
# If you receive errors when installing psycopg2, try using:
env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip install psycopg2
  1. Install the following dependencies:

  2. We recommend to set up venv. For creating/activating venv, follow this instruction.

  3. After you activated venv, iterate the following steps.

    1. Run scripts/setup.sh.
    2. Fix errors if any.
    3. Go to step 1.

For Windows

  1. Install python and pip. Python version should be 3.6 or later. Make sure that python installation is in your PATH environment variable.

  2. Create a virtual environment. You can replace myenv with whatever you want to name the environment. This is to make sure that any other python related projects on your machine are not affected by our application. This is highly recommended.

  3. Install git for windows. It's likely you'll need a bash environment to run our scripts and this is the easiest to setup for windows. Remember to add path of installation to PATH environment variable. There are better alternatives like activating WSL but it's more complicated to setup.

  4. Install the following dependencies:

  5. Since our scripts use linux commands for automation, you will need to install them on your windows machine. It's quite easy to do so. Install curl for windows, choose 32 or 64 bit according to your machine. Extract downloaded zip file to a folder named curl, wherever you wish to have it installed. Install zip.exe and unzip.exe. Place these 2 in your curl folder. Add the path of your curl folder to windows PATH environment variable. Lastly, download and install coreutils for windows.

  6. Make a local copy of our project. You can download it as zip or clone our repo.

  7. Using command prompt, cd into scripts folder of our project repository then simply type setup.sh. Git bash should automatically open (assuming it was added to PATH) and should automatically install requirements as well as ask if you need to install test requirements. Say yes. If you get some errors, fix them.

  8. Now run python manage.py runserver. Go to http://127.0.0.1:8000/ in your browser. You should be able to access our project.

Cloud Deployment On Heroku

  1. Install Heroku CLI

    1. Instructions can be found here: https://devcenter.heroku.com/articles/heroku-cli
    2. Verify your installation: Running heroku --version, output should be like heroku/x.y.z
  2. Heroku Deployment

    1. Create an account in Heroku.
    2. Login your Heroku account in terminal by using heroku login
    3. Go to http://dashboard.heroku.com/new-app to create a new Heroku instance
    4. Go to new created instance page, then choose "Resources", in the add-ons search postgres, choose Heroku-Postgres, then click "Provision" to add it.
    5. Add a remote to local project, using comand heroku git :remote -a <heroku-project-name> .
    6. Deploy to Heroku git push heroku master
  3. Visit remote site: <heroku-project-name>.herokuapp.com

Setup Synchronization (Optional)

Please make sure there is no whitespace in the path to the cloned repository. SymmetricDS doesn't work with a path with whitespaces.

To setup SymmetricDS on your machine, click here. In case you are on windows, please also refer to the wiki on the topic by going here. Windows support is not streamlined and is very error prone but this should be enough to get you started. In case you want to help us make this better please refer below as to how you can contribute to the project.

Run

python manage.py runserver

You should now be able to view the site at http://127.0.0.1:8000/

Test

python manage.py test

How to contribute to this repo

Refer to our contributing guidelines here.

Fix issues

Running into issues with modules not find? Did requirements.txt update from your last git pull command? Run pip install -r requirements.txt to install missing modules.

Are you missing staticfiles when trying to run or test locally? Run python manage.py collectstatic to regenerate them.

License

Copyright (c) Mercury Telemetry. All rights reserved.

Licensed under the MIT license.

mercury-telemetry's People

Contributors

daisycrego avatar de846 avatar jackxujh avatar ab7289 avatar prabhanshuattri avatar michaellally avatar alldne avatar dandipietrantonio avatar taratran avatar tianrunw avatar muneebafzal avatar ventusxu09 avatar iamvibhorsingh avatar ricardo-1894 avatar rajeevreddyilavala avatar ziheng-wang avatar sunnybansal avatar yashasvid avatar gcivil-nyu avatar dgopstein avatar

Stargazers

 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.