Archive for the ‘lcd’ Category

Evaluating DS1626

Tuesday, December 13th, 2011

I got some samples from MAXIM some few days ago. Since I was busy studying other stuff I had no time to give them a try. Today I tried the DS1626 Temperature Sensor.

It was very easy to setup in the Arduino environment using the SoftwareSerial library. One problem I had was, that I was not able to write the temperture to my LCD display. I could not figure out why this happens. The LCD code didn’t worked anymore when including the SoftwareSerial header without using any functions of it…

Another problem for me was, that the DS1626 is being delivered in a SOP8 package and I for the first time needed to solder SMD. I used an adapter for SOP28 to DIP28 conversion because I wanted to place the IC on my breadboard. I soldered it successful and it worked right out of the box… ;)

Posted in: arduino, avr, circuit, device, diy, electronics, lcd, sensor

Arduino LM35 temperature sensor with LCD Display

Sunday, December 11th, 2011

I added my LM35 Temperature Sensor to my Arduino again and added a display to show how hot it is… ;)

I have used the LM35 already some month ago; It is a very easy to setup device.

Here is my Code:

#include <LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

float temp;
int tempPin = 0;

void setup() {
  lcd.begin(16, 2);
  lcd.print("Temperature:");
}

void loop() {
  temp = analogRead(tempPin);
  temp = temp * 0.48828125;
  lcd.setCursor(0, 1);
  lcd.print(temp);
  delay(1000);
}

Some other sources:

Have fun with it… ;)

Posted in: arduino, avr, board, circuit, code, device, diy, electronics, lcd, programming, sensor

Arduino & Netduino synced communication and LCD animation

Saturday, March 12th, 2011

The Arduino and the Netduino are communicating over two digital IO lines. The animation is being synced over these lines. Rafel an I wanted to make the displays run. With success… but what next? Syncing both devices!

Since Rafael is developing on the Netduino platform and I am using the Arduino as platform, we had much fun putting these two devices together and let them talk to each other. This communication is used to keep the animation on both LCD displays in sync. There is a video below but it has a really bad quality. Focus your eyes on the LCD devices when watching it.

More information will follow in the next hours… ;)

Posted in: arduino, arm, device, dotnet, embedded, fun, lcd, netduino, opensource, programming

Pages

Categories

account acta amsterdam android app arduino arm attiny automation avr beach board book circuit code community cross cyanogen denhaag denmark desaster deutsch device distribution diy dotnet electronics embedded extension firefox foo fosdem freedom freifunk friends fun games gcc gentoo german gnoduino hamburg header holiday host howto httpd internet irc jabber keitum kernel language lcd led lego leiden leo leo-search life linux madurodam mariadb matrix mindstorms minimal mobile monitoring moon music mysql nagios nas netduino netherland network news nxt ooc openmediavault opensource openwrt pcsc photos php politics programming question recovery robotics rsync sabayon scm sensor server service shell simulation smartcard snow soap space sun sweden sylt techno telemichel toolchain translation vpn website wine wiring wsdl xmpp zsh zynk

$Date: 2011-03-12 05:24:41 +0100 (Sat, 12 Mar 2011) $