First Question

Hello!

I build my arduino board yesterday and burned the bootloader for a couple of hours ago.
I have tried to find my question but without result, if this question is already answered, please give me a link to the thread :slight_smile:
anyway i just wonder if there is any posibility to read from the arduino board from the arduino software, if there are how to do it? i have tried couple of things without any result :frowning:

regards robin

I'm not sure what kind of information you want from your board, but you can use the Arduino software to monitor messages sent over your serial connection from your chip. See that handy "serial montior" button? Just add a serial.print to your code and hit that button after your program is loaded.

int val;
void setup(){
Serial.begin(9600);
}
void loop(){
val=analogRead(0);
Serial.println(val);
}