Add a Second Button and Set Point

Slides:



Advertisements
Similar presentations
WebStat™ Programming and Configuration of Thermostats.
Advertisements

VGA Input Cable Connect to the VGA jack on the back of the laptop Connect to VGA Input 1 on the back of the projector.
Annie Ly Lawrence Cagatin EE485 Spring 2012 Tuffy Medical Devices.
With Barcode Reader :33. with Barcode Reader :33 Selection of barcode reader 1a. Select the button „Configuration“.
Graphical User Interface You will be used to using programs that have a graphical user interface (GUI). So far you have been writing programs that have.
Digital Inputs Interfacing Keypad
Practicum Project L0 block diagrams Nick Klein. L0 block diagrams (Must) Project Must have two inputs: – Buttons One to turn on device. – Level Sensor.
1 - Remove LED from 13 and GND - Bring out your breadboard from HW#4 Arduino Overview:
In this activity, we are going to type a simple Chinese sentence with Microsoft Word by Tsang-jei Input Method and Simplified Tsang-jei Input Method. 1Start.
Click the pictures to advance to next slide Use the left arrow to go back.
Lab Components and Breakouts TYWu. Basic Components Arduino UNO12 unitsR3: 7 units, Others: 5 units Breadboard12 unitsL: 9 units, S: 3units Dupont Wire2.
It’s always important that all of your nodes be numbered. So the way to do that is to go to Options at the top of the screen then select Preferences. When.
Electronic Instrumentation Project 202 Project Name: Differential Thermometer Student #1: Name ID Student #2: Name ID Student #3: Name ID.
ROBOTC for CORTEX Teacher Training © 2011 Project Lead The Way, Inc. Automation and Robotics VEX.
Scratch Programming Cards
Computer Organization
Prototyping with Microcontrollers and Sensors
Exploring Computer Science Lesson 6-5
ECET 402 Help Bcome Exceptional / snaptutorial.com
Bbc microbit Lesson 3 – Temperature hot medium.
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Thermometer   Project created by: Boris Dovčík Erik Takáč.
System Pilot Version 1.0.
Adding Mixed Numbers.
Click the mouse button or press the Space Bar to display the answers.
Click the mouse button or press the Space Bar to display the answers.
Android 11: The Calculator Assignment
Analyzing Data with Excel
Logic Gates.
Presented by Jagathees
LCD’s with Arduino A Microcontroller.
New in RSA BPMN: Data Configuration
Cortney Smith & Patrick Young
Live Streaming Sessions
Canon Customer Support First you need to turn on your Printer. Press & hold the “Reset button” on the printer. While pressing the “Reset.
Control Systems An Overview Computer Integrated Manufacturing
Visual Instructions.
What is Arduino? By James Tedder.
Learning Objective LO: We’re learning to understand when it is appropriate to use particular data types.
Control Systems An Overview Computer Integrated Manufacturing
eBilling Training Service Provider Administrator
EEE425-PROGRAMMING LANGUAGe Mehmet ali yılmaz
The Bridge Between Symbolic Logic And Electronic Digital Computing
Download OriginMobile
Circuit Design Process
Reflections and Symmetry
How a Breadboard Works Teacher Notes: This picture depicts the connections on a breadboard. A breadboard is a device used to make simple electrical connections.
Programming Micro Controllers
HAPPY NEW YEAR! Lesson 7: If-statements unplugged
Storing Values as Variables
HOW TO CREATE A CLASS Steps:
Peripheral Devices
Dave Mawdsley, DACS Member, Linux SIG January 16, 2013
Circuit Design Process
Decoding and Using a 4x4 Keyboard
VEXnet User's Guide.
Prototype Drawing and/ Or Picture
Intro to Micro Controllers
Constraint Based Modeling Geometric and Dimensional
Arduino Motor Lab Inspired by NYU ITP project
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Having fun with Arduino
BBC Microbit.
Making) Melody timer.
Intro to Arduino Part 2 The Breadboard
ECE 352 Digital System Fundamentals
Decoding and Using a 4x4 Keyboard
Logic Gates and Memory.
eBilling Training Service Provider Administrator
Python Creating a calculator.
Presentation transcript:

Add a Second Button and Set Point

Add a second button Wire an additional button on the main breadboard and connect it to input 31 on the Arduino Note that this time the wiring is reversed. Both the first method and this one are valid configurations

Second Button Picture

Introducing the Set Point Our chamber will be assigned a set point which is a temperature we wish to maintain within This is analogous to setting the thermostat in your house We want to be able to increase and decrease the value of this set point using the two buttons on our breadboard It is also necessary to display this value on the LCD screen

Button Behavior There are a variety of behaviors that can be programmed for the buttons. How would you want your buttons to behave? One method is to have each button press increment the set point value one step. This is shown in Example Code 1. What if you want to be able to hold down the button to rapidly change the set point? How would you do this? Example Code 2 shows a simple way to do this. Try coming up with your own method for controlling the button.

LCD Display Picture