sowmith mandadi
Published © GPL3+

Visualising sensor data using Arduino and Processing

The project is a beginner guide to interface sensors to Arduino and visualise sensor data through Processing

BeginnerFull instructions provided61,753
Visualising sensor data using Arduino and Processing

Things used in this project

Story

Read more

Schematics

Arduino - LM35

Code

Arduino Code

C/C++
Code for calculating temperature value
float temp;
int tempPin = 0;
void setup()
{
  Serial.begin(9600);
}void loop()
{
  temp = analogRead(tempPin);
  temp = temp * 0.48828125;
  Serial.println(temp);
  delay(1000);
}

Credits

sowmith mandadi

sowmith mandadi

3 projects • 40 followers
Hackster Ambassador , Passionate about wearables and IoT .
Thanks to Arduino.

Comments