User manual

IDUINO for makers life
www.openplatform.cc
Example:
The wire connection as below:
“+”----------5V
----------Gnd
“s”---------A0
********Code Begin**********
int sensorPin = 0;
int sensorValue = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
sensorValue = analogRead(sensorPin);
delay(1000);
Serial.print("sensor = " );
Serial.println(sensorValue);
}
********Code End**********