Projects ideas without external components

Hi all,

Iv'e been thinking - are there any cool projects that can be done on arduino without external components ?
I think doing something with the USB connection might be viable but I think that demands programming for windows and not for the arduino.

Any ideas ? :slight_smile:

Thanks!

Well all you have is is the on board LED which is not very exciting.

You can play my dice game with the serial monitor and an Arduino.
Search for
myzen dice game.

Well all you have is is the on board LED which is not very exciting.

You could make it fade up and down.

In order to be cool, you need sensors to provide feedback. With feedback, it can interact with you or the surroundings and this increases the coolness of the project. :slight_smile:

If not, it will just sit there and does something with its LED.

goddar:
In order to be cool, you need sensors to provide feedback. With feedback, it can interact with you or the surroundings and this increases the coolness of the project. :slight_smile:

If not, it will just sit there and does something with its LED.

Doesn't the processor have a (fairly inaccurate) internal temperature sensor?

AWOL:
Doesn't the processor have a (fairly inaccurate) internal temperature sensor?

I'm not an expert on Arduino, but so far, I've never encountered any built-in temperature sensor on it.

AWOL:
Doesn't the processor have a (fairly inaccurate) internal temperature sensor?

Yes it does it is in the multiplexer on the A/D converter but you can't get at it with the analogRead function you have to address the hardware directly.

The internal thermoelement can be read as follows:

https://code.google.com/p/tinkerit/wiki/SecretThermometer

I can blink 2 different led's. the one on pin 13, and the one for serial output.

It's a lot more fun to get some components, like light sensors, buzzers, switches. But It's good to be able to see that led on pin 13 blink to let you know that the program is running.

Make a card game with the serial monitor. Start simple with like "Guess My Number" then move to Rock, Paper, Scissors.

Try to even make a text based game with different options and commands.

Here's my Rock, Paper, Scissor game you can play with.
http://playground.arduino.cc/Main/RockPaperScissors