Archive for the ‘news’ Category

HP 5082-7433 7 Segment LED Display

Sunday, May 29th, 2011

Rafael and I found this 7 segment LED display tonight while tinkering a bit. We didn’t knew what it is at first but after searching around the web we found out that it was a very vintage 7 segment LED display with 3 digits… ;) It is a HP 5082-7433.

HP 5082-7433

Posted in: circuit, diy, electronics, fun, hacking, led, news

Flattr thisTwitter

Arduino Motion Sensor Server

Wednesday, May 25th, 2011

I tinkered a little bit this evening and I have added a motion sensor to the Arduino platform. After that I added a network shield and have coded a small HTTP server… This server provides just a 0 or an 1. 0 if I don’t have moved around; 1 if I am dancing on the desk… ;) The sensor works with a radius of about 5 to 7 meters and it is really a lot of fun. You could get such sensors very cheap at ebay, just search for “arduino motion sensor”.

Arduino Motion Sensor Server

I am getting the status every second using wget and are displaying the output in xterm. It looks nice to see how much I am moving when writing this Blog post:

Arduino Motion Sensor Server

Posted in: news

Flattr thisTwitter

Danmark

Sunday, May 8th, 2011

I was on holiday in Denmark last week. It was a great time. Since I was on a danish school, I were there many times in my youth. I felt very well @home… ;)

Posted in: denmark, fun, holiday, news

Flattr thisTwitter

Arduino LM35 temperature sensor

Monday, April 11th, 2011

I am ill today and needed to distract me some bit.

I added a LM35 temperature sensor to my Arduino. Since someone did the work already, I only needed to copy some code and setup the wiring on a breadboard. I used the same wiring like in the link. Below is an image of the wiring made with Fritzing. I am using a LM335 for this because there where no LM35 as a Fritzing part available…

Arduino LM35 Wiring

I changed some parts of the code to only print the temperature as String to serial. In the original code the data was sent as (byte) over serial to read the value with an application created using Processing. Feel free to change this again… ;) This is the code I used:

float temp;
int tempPin = 0;

void setup()
{
  Serial.begin(9600);
}

void loop()
{
  temp = analogRead(tempPin);
  temp = temp * 0.48828125;
  Serial.println(temp);
  delay(1000);
}

My output in the serial monitor of the Arduino IDE looks like this:

Arduino LM35 output

Posted in: arduino, avr, circuit, device, diy, embedded, fun, hacking, news, opensource, programming, sensor, wiring

Flattr thisTwitter

Alex’ Tiny2313 Header Board

Sunday, April 10th, 2011

I got this nice Tiny2313 header board on Friday from Alex. Thanks for that nice piece of work!

It seems that I bought the last ones because there are currently no more of them in his shop available… :( But I think you could get one in the near future again. If not take a look at his site. All code and schematics are freely available there.

Tiny2313 header board

Soldering was a lot of fun and very easy to do. After successful soldering I build the small circuit at the end of the howto and flashed the microcontroller using the Makefile provided by Alex. I needed to change some things to make it work right on my Linux box using avrdude and the Atmel AVRISP mkII.

I changed the PROGRAMMER line to:

PROGRAMMER = -P usb -c avrispmkII

If you even get errors, try to add the parameters “-F” and “-D” to $PROGRAMMER. Call “avrdude –help” to get a description of these parameters… ;)

Don’t forget to add an external power supply to the header board since the AVRISP not seems to provide enough power. I got strange errors in the output of avrdude. After adding more power everything worked as expected.

The result: A blinking LED. Yeah! :)

Posted in: avr, board, circuit, device, diy, electronics, embedded, fun, header, news, opensource, programming

Flattr thisTwitter

Pages

<< >>

Categories

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

$Date: 2011-04-10 16:22:57 +0100 (Sun, 10 Apr 2011) $