4) Design the logic to control the motor on a simple remote control car. There are two buttons on the remote control for the motor. If neither button is.

Slides:



Advertisements
Similar presentations
Basic Logic Gate Sayed Mahbub Hasan Amiri Dhaka Residential Model College.
Advertisements

Programming with Ladder Logic
Output is G1 BCG Truth Table for ‘B OR C’ Input is B, C.
Microcontrollers Engineering Science. Microcontrollers - Intro Microcontrollers are used in a lot of systems that we use in every day life. Microwaves,
FLOWCHART BASED DESIGN A flowchart is ideal for a process that has sequential process steps. The steps will be executed in a simple order that may change.
Sequential Logic Design Process A sequential circuit that controls Boolean outputs and a specific time- ordered behavior is called a controller. StepDescription.
Motor Control of an Oscillating Pendulum Nick Myers and Chirag Patel March 9, 2004 Advised by: Dr. James Irwin and Mr. Jose Sanchez Bradley University.
Controller Design Five step controller design process.
Controller, Sensors and Motors Ding Ke Tutorial 1, UGB 230N.
LOGIC GATES Logic generally has only 2 states, ON or OFF, represented by 1 or 0. Logic gates react to inputs in certain ways. Symbol for AND gate INPUT.
ABCDNumber = Off 1 = On Binary Coded Decimal (BCD)
KEYLESS ENTRY SYSTEMS CHAPTER 14 PAGES 513C - 518C PAGES 544L - 549L.
Programming PLCs using LADDER Logic
Canon SX 130 IS User Guide Digital Design Art Level 1.
Truth tables AND Gate Input 1Input output ? ? ? ? Input 1Input output ? ? ? ? OR Gate.
LOGIC GATES A logic gate is an elementary building block of a digital circuit.digital circuit Most logic gates have two inputs and one output terminals.
Control Technology and Automation
Control & Programming Controlling a Sports Car. Systems in Cars Many modern cars use sophisticated sensors and control systemsMany modern cars use sophisticated.
Combinational Circuit Design A combinational circuit consists of logic gates. It processes the input signals (coming from an external source) to produce.
ITEC 352 Lecture 3 Low level components(2). Low-level components Review Electricity Transistors Gates Really simple circuit.
It is a car launcher. The car goes into the two connect pieces. Then you pull the lever causing the gears to mesh. Then when you let go of the lever.
Basic Gates 1.1 Basic Digital Logic: AND, OR and NOT gates ©Paul Godin Created August 2007 Last Update Sept 2013.
Working “Control any electrical device with your T.V remote(any brand)” wizardelectronics.weebly.com.
1. 2 INDEX MAIN DISPLAYS3-4 SYSTEM LAYOUT 5-6 ROOM P-109 DISPLAY7 ROOM P-108 DISPLAY8 ROOM P-107 DISPLAY 9 ROOM P-106 DISPLAY 10 ROOM P-105 DISPLAY 11.
目录 8 in 1 Sensor ◆ 8 in 1 Sensor Unique Features ● Built in PIR motion sensor and light intensity sensor ● Built in 2 Dry Input Ports ● Built in 32 Logics.
My first robot programming - Simple “Go” Young Joon Kim MSRDS First Beginner Course – STEP4.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
目录 SB-CMS-8in1 Features ● 1 PIR motion sensor ● 1 Lux sensor ● 2 Dry contact inputs ● 2 external condition inputs ● IR(infrared) receiver ● IR(infrared)
Lesson 2 Inputs. Lesson objectives To understand how inputs can be used to control an output To consider how to make mimics more realistic.
ROBOTC for VEX Online Professional Development. Homework Questions Thoughts? Questions?
Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensors and Flowcharts.
Logic Gates Digital Logic Design. What is a logic gate? A switch with an output that will only turn on when inputs are in particular positions.
PHYSICS – Digital electronics. LEARNING OBJECTIVES Core Supplement Explain and use the terms analogue and digital in terms of continuous variation and.
Last updated: 6/28/2016www.alto-shaam.com Rotisserie Training Rotisserie.
Creating logic gates with Minecraft
Basics of Logic gates - Part 2
Truth Tables & Logic Expressions
Sensors Control Systems with Flowol.
SB-DN-Logic960 Logic module.
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Bee-Bot.
Logic What is logic? Logic is the name given to an electronic component which will monitor a number of inputs and give an output depending on them Input.
ROBOTC for VEX Online Professional Development
You have 5 minutes to look over your table of sensor and outputs ready for a spot check on the different symbols Start Timer 5 mins
Lab02 :Logic Gate Fundamentals:
You have 5 minutes to look over your homework and with a green pen answer the question in your book or make a correction Start Timer 5 mins
ROBOTC for VEX Online Professional Development
Digital electronics and logic gates
Computers Logic Gates.
Evaluation in Engineering Design Process Modeling and FSM
GSM door opener Model RTU5015 RTU5025 .Different appearance ,the same function.
How Boolean logic is implemented
Module F: Presentation Understanding Robot Fundamentals
Creating a completed control system
INTERMEDIATE PROGRAMMING LESSON
All very logical I think!
Lesson 3 Sub-Routines.
INTERMEDIATE PROGRAMMING LESSON
JC Technology Logic Gates.
Chapter - Karnaugh Maps
Systems and Control.
Lecture 5 Binary Operation Boolean Logic. Binary Operations Addition Subtraction Multiplication Division.
Objectives Construct truth tables for the following logic gates:
Rate of Change The rate of change is the change in y-values over the change in x-values.
Truth Tables & Logic Expressions
Logically, the output will be 1
Systems and Control.
Building pattern  Complete the following tables and write the rule 
Presentation transcript:

4) Design the logic to control the motor on a simple remote control car. There are two buttons on the remote control for the motor. If neither button is pressed, the car stops. If the top button is pressed, the car moves forward. If the bottom button is pressed, the car moves backwards. If both buttons are pressed, the car spins. There are two motors in the car and each motor has two inputs F and B. A high on F makes the car go forward. A high on B makes the car go backward. 5) Design the logic for a security system. The system contains a door sensor, a window sensor, and a key activation switch. If the switch is on, opening the window will set off the alarm immediately. Opening the door will start a 30 second timer. If the key switch is not turned off within the 30 seconds, the alarm is set off. The door sensor and window sensor output a low when they are opened. The 30 second timer requires a high to activate and outputs a high when the timer expires. The key switch outputs a high when it is activated and a low when it is de-activated.

4) Make a truth table for this design. StateB2F2B1F1 Bottom Button Top Button Stop Backward Forward Spin From the truth table, the design is as follows: 5)