Giter Site home page Giter Site logo

tricorder's Introduction

Tricorder

WIP: list of digital assets that could be used with arduino tricorder

  • Home Screen: showing a very simplified equivalent of windows BGInfo
  • RGB Color Scanner: OK
  • Climate Scanner: OK - updates bar graphs to reflect data without requiring internal loops
  • Left-side LED: OK, stacks on color scanner mode
  • Power LED: Functional, will either cycle colors or show color based on battery power %
  • Button Support: OK - using easybutton library pulled from elsewhere on github (see bottom of this readme)
  • Microphone Spectrum
    Visualization:
    OK - not the most accurate thing, but has a very high refresh rate. Uses AdafruitZero_FFT library for FFT calculations.
  • Thermal camera: OK
  • Sound playback
    via trigger on
    separate board:
    OK
  • Magnetometer for
    door close to sleep:
    OK
  • ID LED (8) color
    change via
    potentiometer:
    OK
  • Neopixels above buttons: OK - set #define NEOPIXEL_LED_COUNT 3 if you only have PWR / EMRG / ID wired up
  • Tom Servo Mode: OK - repeating "canned" animation

Draw operations on the display from the arduino typically aren't that fast. The FFT draw code calculates a list of bar heights, then uses fillRect() to create the bars. At the end of the bar drawing operations, these bar heights are stored in a "previous" bar height array. From that point on, each bar draw operation calculates the difference between "new" bar heights and "previous". If "new" is larger than "previous", it only draws enough to extend the "previous" height to the "new" one. If "new" is less than "previous", it draws black lines to shorten the "previous" height down to the "new" one. This relative display update method removes the use of a full screen blank operation, and minimizes flickering.


All 3d models for shell are available on printables or thingiverse. Printables has latest version with USB-C breakout plug at top of body "hat".
Refrences used:
Adafruit board pinout map
Easybutton arduino library

decibel demo gif

board pinout

PCB Headers

Reference of all parts used in build demoed on youtube:

all_parts

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.