Datasheet

IDUINO for Maker’s life
www.openplatform.cc
GND
Ground
3 Example
This is a simple code for the LM35 temperature module, Connection as below:
Example code :
******Code begin******
float temp = 0;
void setup() {
Serial.begin(115200);
Serial.println(F("reading temperature begin. \n"));
}
void loop() {
static unsigned long sensortStamp = 0;
if(millis() - sensortStamp > 100){
sensortStamp = millis();
int reading = analogRead(0);