Close
0%
0%

Bioelectronic Measurements on android

Capture biologic parameters on the cheap, using arduino a and open source electronics

Public Chat
Similar projects worth following
Measure, temperature, gsmr, pulse, blood preasure etc, using arduino an web technology on the cheap usin arduino

HI

I will beging adding temperature measumerent using lm35, arduino and android programing on appinventor,  like first item, more in a close future, feel free for comment and suggesting ideas and corrections, "English is not my native language, so you can expect some mistakes.

  • First

    divertidoxxx10/07/2018 at 22:41 0 comments

    This is the first step on creating and arduino project for bioelectronic,  every  weekend i will update all

View project log

  • 1
    Circuit for Temperature using Lm35
  • 2
    Arduino code for lm35

    // Script para leer temperatura utilizando un LM35

    // Declaracion de variables

    float tempC;

    int tempPin = 0;             // Definimos la entrada en pin A0

    void setup()

    {

    // Abre puerto serial y lo configura a 9600 bps Serial.begin(9600);

    }

    void loop()

     {

    // Lee el valor desde el sensor

    tempC = analogRead(tempPin);

    // Convierte el valor a temperatura

    tempC = (5.0 * tempC * 100.0)/1024.0;

    // Envia el dato al puerto serial

    Serial.print(tempC);

    //Serial.print("
    grados Celsius\n");

    // Espera cinco segundo para repetir el loop

    delay(5000);

    }

  • 3
    Circuit for pulse

View all 4 instructions

Enjoy this project?

Share

Discussions

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates