informe

Páginas: 4 (766 palabras) Publicado: 25 de noviembre de 2014

ALCOHOLIMETRO

Osorio Ramírez, Julián; Triana López, Julián

Grupo: 03 Instrumentación y Medidas Fecha: 27/11/2014



ResumenEs un tipo especial de instrumento usado para determinar el nivel de alcohol presente en un líquido o gas. Puede por tanto ser usado para medir el porcentaje de alcohol en una bebida alcohólica opara determinar la presencia de alcohol en la sangre o en un gas.
Abstract
is to create a breathalyzer, which means the sensor data received as the degree or level of alcohol the person blowingagainst the sensor. Depending on the level or degree of alcohol detected by the sensor, they will illuminate 1-10 LEDs of different colors, starting with green, indicating a low level of alcohol,yellow a medium level and high level Red.
Palabras Claves
Alcohol, sensor, nivel, indicador.
1. Introducción

La idea es crear un alcoholímetro, que mediante el sensor, se reciba como dato elgrado o nivel de alcohol de la persona que sopla frente al sensor. Según el nivel o grado de alcohol detectado por el sensor, se encenderán de 1 a 10 leds de diferentes colores, empezando con elverde, que indica un bajo nivel de alcohol, amarillo un nivel medio y rojo un nivel alto.



2. Marco Teórico


Código en arduino 1.5.8:

const int analogSensor = 0;
const int ledCount = 10;int ledPins[] = {2,3,4,5,6,7,8,9,10,11};

void setup()
{
//Serial.begin(9600);
for (int thisLed = 0; thisLed < ledCount; thisLed++)
{
pinMode(ledPins[thisLed],OUTPUT);
}
}

void loop()
{
Int dataLevel = map(analogRead(analogSensor), 700, 900, 0, ledCount);
if (dataLevel < 0) {
dataLevel = 0;
}
if (dataLevel > 10) {
dataLevel =10;
}
//Serial.println(dataLevel);

for (int ledHigh = 0; ledHigh < ledCount; ledHigh++) {
if (ledHigh < dataLevel) {
digitalWrite(ledPins[ledHigh], HIGH);
} else {...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • el informe de un informe
  • Informe De Un Informe
  • Informe
  • Informe
  • La inform
  • Informe
  • Informaciones
  • Informe

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS