Bhuvanesh123
Advanced Member level 4
- Joined
- Aug 29, 2013
- Messages
- 113
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 16
- Location
- Singrauli, India, India
- Activity points
- 814
Code:
void setup()
{
Serial.begin(9600);
}
void loop()
{
int a= analogRead(3);
Serial.println(a);
delay(1000);
}
but i have not connected anything to that analog pin but i am getting values around 500.whats the reason for that