Giter Site home page Giter Site logo

detechpressuremeter's Introduction

Detech Pressuremeter

Wristband device for inducing dermal ulcers using a blood pressure pump.

The device induces dermal ulcers using a blood pressure pump and measures the applied force with a Force Sensing Resistor. Data could be send to a Firebase backend through WiFi.

The purpose of this device is to create dermal ulcers in a very initial state, allowing us to take meaningful pictures and using them as input for our machine learning algorithms.

Connection Diagram

Connection diagram

Hardware components

Software

This project uses PlatformIO as a multi-platform build system. The embedded platform for this project is espressif8266using an Arduino framework, as stated in the platformio.ini configuration file.

[env:d1_mini]
platform = espressif8266
board = d1_mini
framework = arduino

Installation

First, follow PlatformIO IDE installation guide for Atom or VSCode.
Then, follow PlatformIO quick start guide for setting up, building, cleaning, and uploading the project.

main.cpp

In the main loop we perform a calibration of the sensor reading. The calibration values were empirically estimated after many tests using the wristband device.

void loop() {
    float rawPressure = constrain(990-analogRead(0), 0, 990);
    //0.00263233
    float realPressure = (0.00273233*rawPressure + 0.08200484)*735.5591210146755;
    //Firebase.setFloat("currentPressureValue", realPressure);
    Serial.println(rawPressure);   
	...
}

License

Authors

detechpressuremeter's People

Contributors

cvenegasj avatar bregydoc avatar

Watchers

James Cloos avatar  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.