Temperature Sensor TYWu. Seeed’s Temperature Sensor Picture.

Slides:



Advertisements
Similar presentations
EMS1EP Lecture 8 Pulse Width Modulation (PWM)
Advertisements

Anurag Dwivedi & Rudra Pratap Suman.  Open Source electronic prototyping platform based on flexible easy to use hardware and software.
Digital & Analog Inputs. Review Fundamental parts of an Arduino program are … Setting output types using pinMode. Declaring variables Can write a digital.
Khaled A. Al-Utaibi  Digital Vs Analog Signals  Converting an Analog Signal to a Digital One  Reading Analog Sensors with the.
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
IR Object Detection living with the lab IR light from LED IR light reflected off object IR LED IR receiver Infrared (IR) light leaving an LED reflects.
Module 3 Eng. Asma Abu Baker. Introduction One of the most important uses of instruments or measuring devices is in the field of process control. If you.
Automatic Fire Fighting System Athan Jefferson Advisor Dr. Junkan Ma Instructor Dr. Cris Koutsougeras ET 494 Senior Design II.
Colorado Space Grant Consortium Gateway To Space ASEN 1400 / ASTR 2500 Class #13 Gateway To Space ASEN 1400 / ASTR 2500 Class #13 T-53.
Computer Programming Lab(4).
Basic Circuits – Lab 2 Arduino and Sensors
03 September 2007 Digital I/O Wiring Exercise. Copyright © 2007 Alien Technology Corporation. Advanced Academy Student use only. Not for redistribution.
Sensor Technology Dr. Konstantinos Tatas. Outline Introduction Sensor requirements Sensor Technology Selecting a sensor Interfacing with sensors Integrated.
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
1 of 20 Core Arduino Workshop Chris Koehler and Brian Sanders Colorado Space Grant Consortium.
1 - Now let’s modify our sketch to add an analog input - Let’s use the potentiometer from HW #4 Arduino Overview:
Pulse Width Modulation (PWM). 100% Pulse Width Modulation (PWM) 0% On the chipKIT there are 490 periods per second. Use analogWrite(pin, value) to control.
Good LED Circuit 5V0 GND. What Voltage Does Meter See? Answer: 5 V.
Suleyman Demirel University CSS340 Microprocessor Systems – Lecture 2 ATMEGA328P ARCHITECTURE ANALOG INPUTS.
Basics of Most C++ Programs // Programmer: Clayton Price date: 9/4/ // File: fahr2celc.cpp 03. // Purpose:
Lecture 4 Function example. Example1 int max (int a, int b) { int c; if (a > b) c = a; else c = b; return (c); } void main ( ) {int x, y; cin>>x>>y; cout.
ARDUINO 1. Basics  Comments  /* * Blink * * The basic Arduino example. Turns on an LED on for one second, * then off for one second, and so on... We.
1 - Remove LED from 13 and GND - Bring out your breadboard from HW#4 Arduino Overview:
Servo Demonstration In MPIDE, select File > Examples > Servo > Sweep.
HMC5883L TYWu.
Temperature Sensing Temperature Bar Graph Project National Electronics Museum November 12, 2011 National Electronics Museum.
Interpreting Temperature Logger Data
A3144 SENSITIVE HALL-EFFECT SWITCHES & AH Linear Hall sensor
Reflectance Sensors TYWu.
BMP085 Barometric Digital Pressure Sensor Module TYWu.
Micro Processor Project ECE 300 April 17, 2004 Group 2.
Wireless TYWu. 433Mhz RF link kit Picture 433Mhz RF link kit Specification –Frequency: 433Mhz. –Receiver Data Output: High - 1/2 Vcc, Low - 0.7v –Transmitter.
INTERNET OF EVERYTHING SDU 2016 Week 4. Simple Digital and Analog Inputs  The Arduino’s ability to sense digital and analog inputs allows it to respond.
Photoresistor resistance changes dramatically with light level living with the lab Using Photoresistors with an Arduino © 2011 LWTL faculty team.
Youn-Hee Han, In-Seok Kang {yhhan, Laboratory of Intelligent Networks Advanced Technology Research Center Korea University of Technology.
LM35 TEMPERATURE SENSOR  The LM35 is an integrated circuit sensor that can be used to measure temperature with an electrical output proportional to the.
The Grove - Temperature Sensor uses a Thermistor to detect the ambient temperature. The resistance of a thermistor will increase when the ambient temperature.
Motor TYWu.
INTERNET OF EVERYTHING SDU 2016 Week 6. Getting Input from Sensors  Sensors give report on the world around it  Sensors convert physical input an electrical.
AAPT workshop W03 July 26, 2014 Saint Cloud State University, MN, USA
Microcontroller basics Embedded systems for mortals.
ME 120: User-defined functions: average analog input reading Arduino Programming – Part 5: User-defined functions ME 120 Mechanical and Materials Engineering.
IR Object Detection living with the lab IR light from LED IR light reflected off object IR LED IR receiver Infrared (IR) light leaving an LED reflects.
LAB1 TYWU. Devices Dip Switch (4 Switches) Triple Output LED (RGB) –Common Cathode.
Istituto Tecnico Industriale A.Monaco EURLAB Object Detection Object Detection by Ultrasonic How to install and program a ultra sonic sensor with Arduino.
Arduino + Bluetooth TYWu. Connection Arduino + Bluetooth Module.
Ultrasonic Sensor TYWu.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
ME 120: Photoresistors and Arduino Programming Arduino Programming Case Study: Photoresistor Measurements ME 120 Mechanical and Materials Engineering Portland.
Get Your Project Started with Arduino
A3144 SENSITIVE HALL-EFFECT SWITCHES & AH Linear Hall sensor
Assist. Prof. Rassim Suliyev - SDU 2017
BMP085 Barometric Digital Pressure Sensor Module
Sensors with Arduino A Microcontroller.
Task 4 – Report (individual work)
Control a motors angular position with a flex sensor
SArduino Training 2018 cho THPT Saigon Institute of Technology
Analog Input through POT
Maxbotix Ultrasonic Distance Sensor
Ultrasonic Distance Sensor
a few of my favorite sensors
Digital Input from Switches
Arduino : Introduction & Programming
Arduino Practice: Photoresistors, PWM, Potentiometers, Motors
Sensors and actuators Sensors Resistive sensors
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Arduino程式範例.
Arduino UMBC IEEE Sekar Kulandaivel Week 3: Motor Control w/ H-Bridges
PRESSURE TRANSDUCER 250 PSI
CTY SAR FCPS Alexander Velikanov
Presentation transcript:

Temperature Sensor TYWu

Seeed’s Temperature Sensor Picture

Seeed’s Temperature Sensor Specifications –The temperature sensor uses a thermistor which returns the ambient temperature in the form of a resistance value, which is then used to alter Vcc (5V with our Seeeduinos). –Our board then converts this voltage value measured by an analog input pin to a temperature. –The operating range is -40 to 125 degrees Celsius, with an accuracy of ±1.5ºC.

Seeed’s Temperature Sensor There are 4 pins –SIG (Yellow) –NC (White) –VCC (Red) –GND (Black)

Seeed’s Temperature Sensor Schematic

Seeed’s Temperature Sensor Characteristic Curve

Sketch int a; int del=100; // duration between temperature readings float temperature; int B=3975; float resistance; void setup() { Serial.begin(9600); } void loop() { a=analogRead(0); resistance=(float)(1023-a)*10000/a; temperature=1/(log(resistance/10000)/B+1/298.15) ; delay(del); Serial.println(temperature); }

Exercise 1. Display Celsius and Fahrenheit 2. Rolling Display the two temperature degrees (Celsius and Fahrenheit) by a 7 Segment LED