Code Monkey home page Code Monkey logo

mixmonitor's People

Contributors

jaredjensen avatar notjj avatar scubaben avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

mixmonitor's Issues

Move EEPROM to its own class

EEPROM commands should be their own class with a versioned data structure and migration ability so in future other parts of the program can utilize it, not just sensor class.

Add battery monitoring

the feather uses a voltage divider on pin A9, which we can use to read the voltage of the rechargable battery pack.
https://learn.adafruit.com/adafruit-feather-32u4-basic-proto/power-management

sample code:
#define VBATPIN A9

float measuredvbat = analogRead(VBATPIN);
measuredvbat *= 2; // we divided by 2, so multiply back
measuredvbat *= 3.3; // Multiply by 3.3V, our reference voltage
measuredvbat /= 1024; // convert to voltage
Serial.print("VBat: " ); Serial.println(measuredvbat);

display mv reading of cells

currently, MV readings are only shown while calibrating. it would be nice to have the option to see MV readings during analysis too.

Sensor class needs some cleanup

Currently sensor class references global variables, so it is not possible to use it independent of the project... so it should be refactored to not do this.

add a settings menu

there are a handful of new enhancements that will require new menus to configure. Clicking the button should first bring up a menu, and then allow the user to choose which settings they want to modify.

maybe something like:

  • calibrate
  • display theroretical HE
  • turn cells on or off
  • calculate blend
  • set targets manually

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.