Programmed the Arduino to have the alcohol sensor play with the LED display. I had the display show either "open" or "lock" depending on the alcohol sensor level. Here is the result: Notice that this has a very notable flaw with respect to its potential use as a "breathalyzer lock": it stays "open" as long as there is alcohol present, which only then "lock"s. This means that currently, if you leave it alone (no breathing into it), it will keep the device unlocked. This is something I will have to resolve. code used for this: int del = 5000; int gasPin = 0; int value = 0; int lastValue = 0; void setup(){ // Serial.begin(9600); pinMode(12, OUTPUT); pinMode(11, OUTPUT); pinMode(10, OUTPUT); pinMode(9, OUTPUT); pinMode(8, OUTPUT); pinMode(7, OUTPUT); pinMode(6, OUTPUT); pinMode(5, OUTPUT); pinMode(4, OUTPUT); pinMode(3, OUTPUT); pinMode(2, OUTPUT); pinMode(1, OUTPUT); } void lo