The learning process with Arduino continues… Last week I had ordered bunch of goodies from Sparkfun, and today morning I received them. I tried to assemble few circuits, but I understood I need to get a decent soldering station to continue my experiments. But I was able to make Liquid Crystal Display (LCD) to work.… Continue reading Liquid Crystal Display with Ardunio
Tag: Arduino
Temperature Sensor with Arduino & LED
This is a mini project using Arduino. This uses a temperature sensor and Arduino Uno. int pin = 2; int temperaturePin=0; void setup() { Serial.begin(9600); for(pin = 2; pin < = 9; pin += 1){ pinMode(pin,OUTPUT); } } void loop() { float temperature = getVoltage(temperaturePin); temperature = (temperature - .5) * 100; int toLit =… Continue reading Temperature Sensor with Arduino & LED