
And a happy new year!
Yupp, just a short little update.
I got the RF sender & receiver from Sparkfun today!
RF Link 2400bps Receiver – 315MHz
RF Link Transmitter – 315MHz
Also a 20×4 serial LCD, gonna be useful for advanced applications. Anyhow, if you got the RF kit, and was like me wondering how to get it working. I found this nice guide at LMR.
Now it’s just to find a nice way to use the RF links, it’s only one-way communication, but it’s gonna be awesome to use it as a remote for one of my robots!
Tags: 315, arduino, mhz, radio, reciever, rf, serial, transmitter
I’ve just set up the stigern.net/forums again, mostly for discussion around some of my guides and projects. But feel free to post and discuss other stuff.
http://stigern.net/forum/index.php
Thought I write some about my two robot projects! They both use a Modified Pico, since it’s the smallest Arduino I’ve found. And it also fits on a small breadboard!
Botty 2:

This is the most advanced robot I’ve built, but it’s not nearly finished.
It’s current task is to drive straight forward until it senses a object with it’s IR-sensor, then drive away from it until it’s cleared, and continue in that direction. Really simple
It uses a Sharp-IR sensor, mounted ontop of a servo, so it scans the horizon while driving forward. The sonar in the picture isn’t in use, since I actually like the IR sensor better.
BewBit:

Simple and yet fun to make arduino bot. Just follows the strongest light source. Using two LDRs, a modified pico and 1xAA and 2xAA battery packs, to give out 4,5 volts. Just enough to power theSN754410 and motors. But it gets around. It also includes a low-voltage alarm, which beeps when the voltage goes low.
Had a little accident, it drove over a carpet, or it came about 30cm into it and some funny gear-whining noise came
A lot of hair in the gearbox, had to take it apart and clean it.
Future plans:
* Crash sensor, a small micro switch in front.
* Speaker, plays sound according to light source ![]()
* Better code
Tags: arduino, C#, lmr, robots
Hi
I just want to write a few words for those new to Arduinos, or those looking for tutorials, guides etc. If you haven’t got a Arduino board yet, you can get one from several places, I’ll list some of my favorite shops. And of course you also need the Arduino Software!
Or, Modified Electronics for the great Pico! (not recommended for beginners, you’ll be better of with a normal board).

What you are looking for is the Arduino Duemilanove, the USB board. Which will suit most your needs. It’s very easy to use, and wires can be plugged right into it. Later on you might want a Boarduino or maybe a Pico as mentioned above, they are great for using in combination with breadboards! Alternatively you can get the Starter kit, almost all shops got these. Sparkfun got a nice kit, which is worth a look.
If you should want more I/Os, or just more space for code the Arduino Mega is a great choice! Or the Sanguino!
Parts!
You will always need parts, resistors, leds, breadboards, wires etc. I’ll list up a few shops that I use the most.
Lots of cheap basic parts! recommend the resistor packs, and they also got cheap breadboards. And all of the shops mentioned above stock parts too. For jumper-wires I recommend these at seeedstudio. Futurlec also got some nice jumper-kits. For extra small breadboards these at Seeedstudio are very nice!
Great site for robotics, motors, gearboxes etc. They also got a nice tracked chassis. They got a lot great products, sensors, motor controllers, etc.
Tutorials/Guides/etc
1. The basic guide, from sparkfun. You should start with this!
2. The Complete Beginners Guide to The Arduino
3. Adafruit’s Arduino Tutorials
5. Arduino.cc Reference! Not tutorials, but handy!
Also the Libaries page at Arduino.cc is great! I’m sure you’ll find something to use in several projects!
Well, thats all I’ll write for now. I’m sure I left out alot, and will update this post when I find something new to add
PS. If you got any questions etc, please take it in my forums post here.
Tags: arduino, C#, guide, learning, links, Stuff, tutorial
Got my Serial 16×2 LCD today, I’m still quite noob when it comes to serial. But I’m gonna put out some simple and easy to follow tutorials for stuff when I get the hang of it
Anyhow, here’s just a little youtube clip showing some of my projects today!
Tags: arduino, C#, code, display, fun, lcd, serial, text, Windows

My new project, is a simple led-strip which shows CPU load. 9 led’s are used for this, could have used more but my tiny breadboard couldn’t hold more. Anyhow, it uses serial communication to receive how much the totalcpu usage is. For this you need a C# program running on your computer, it just sends a value from 0-100. And the Arduino reacts and lights up leds accordingly to how much load your CPU got.
I will not go into how you make the program in C#, therefore I’m uploading the .exe here for you to download. I’ll also include the source-code for it.
What you need?
1x Arduino
9x LEDs
Some wires
1. Wire it all up like in this Fritzing picture.
2. Load up the Arduino with the following program.
3. Download the C# program here.

When you start the .exe file, you only need to select which Com port the Arduino is using. And the click connect, and then it should start communicating with the Arduino. And show cpu load.
PS. If you got any questions etc, please take it in my forums post here.
Tags: arduino, C#, howto, led, programming, strip, tutorial

Look at it?!
I just fell in love with it
Also, 24$ isn’t bad. So if you’re considering the Arduino Nano, why not try this one instead?
Features:
ATmega328 running at 16MHz with external resonator (0.5% tolerance)
On-board FTDI232 USB to Serial Connection
Supports auto-reset (choose Duemilanove w/ ATmega328 in the Arduino™ software)
Operating voltage of 2.7 – 5.5 VDC
Schottky diode reverse polarity protection
Auto-sense power input between USB and external source
Resettable 500 mA fuse for overcurrent protection
On-board pin 13 and communication LEDs
Go check it out =)
http://www.modifiedelectronics.com/mp-01.php
Made a followup to my light tracker, except this one can go up and down. So it follows light in more directions than the other ones.
Made of some cheap plastic-foam, wont last forever but long enough for me to test it.


PS. If you got any questions etc, please take it in my forums post here.
This is how to make a simple light tracker/follower with the Arduino. The components you need apart from the Arduino is:
2x Photoresistors: “PHOTOCELL2 Miniature Photocell”.
2x 470 Ohms resistors.
1x Servo.
And of course some wires, and a breadboard or two
. Next step is to wire it all up, I’ve made a drawing in Fritzing that you can follow. Basically each photoresistor is wired likes this:
PhotoR 470Ohms
+5 o—/\/\/–.–/\/\/—o GND
|
Pin 0 & 1 o——-
Program Code:
#include <Servo.h>
Servo myservo;
int pos = 0; // Variable to store the servo position.
int inputPhotoLeft = 1; // Easier to read, instead of just 1 or 0.
int inputPhotoRight = 0;int Left = 0; // Store readings from the photoresistors.
int Right = 0; // Store readings from the photoresistors.void setup()
{
myservo.attach(9); // Attach servo to pin 9.
}void loop()
{
// Reads the values from the photoresistors to the Left and Right variables.
Left = analogRead(inputPhotoLeft);
Right = analogRead(inputPhotoRight);// Checks if right is greater than left, if so move to right.
if (Left > (Right +20))
// +20 is the deadzone, so it wont jiggle back and forth.
{
if (pos < 179)
pos++;
myservo.write(pos);
}// Checks if left is greater than right, if so move to left.
if (Right > (Left +20))
// +20 is the deadzone, so it wont jiggle back and forth.
{
if (pos > 1)
pos -= 1;
myservo.write(pos);
}// Added some delay, increase or decrease if you want less or more speed.
delay(10);
}
PS. If you got any questions etc, please take it in my forums post here.