Flowchart Symbols What do these mean:.

Slides:



Advertisements
Similar presentations
Sequential Logic Circuits. Set-Reset Latch The Set-Reset latch or bistable is a simple sequential logic circuit that remembers what has happened to the.
Advertisements

LOGO 1. Objectives 2 Define the stages involved in project planning and construction 1 Conduct project analysis 2 Draw a rough sketch of your project.
PROGRAMMABLE INTERFACE CONTROLLERS Understanding what PIC’s are. How to use PIC logicator Knowing what you can do with PIC circuits.
PICS / Microcontrollers
FIELD EFFECT TRANSISTORS (FETs) Past Paper Questions and Answers.
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.
Ladder Diagram Symbols. Study the various symbols identified in this presentation. Once you have memorized the different symbols and can name them, take.
Truth tables AND Gate Input 1Input output ? ? ? ? Input 1Input output ? ? ? ? OR Gate.
LAB #2 Xilinix ISE Foundation Tools Schematic Capture “A Tutorial”
Implementing software in IEC Languages in IEC IEC uses the following languages Instruction List – Assembly level programming using.
Printer Port * 0= * 1= * 6= 60 1 * 4 = 4 = 164 Decimal Binary We use Ten Symbols
ELECTRONICS An electronics system has 3 parts – input, process, output.
© The McGraw-Hill Companies, 2006 Chapter 3 Iteration.
SHIFT REGISTERS A number of internal relays are grouped together to form a register. Provides storage area for a series sequence of individual bits. A.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
We apply 120 VAC to the HM Unit (Remember to check polarity!) Our primary step down T/X provides power to terminal “X” and “COM” on the ignition control.
PLC programming Part 3: Problems with solutions. Topics  Every problem is devided into three parts:  Technology description contains the general properties.
Year 9 Steady Hand Game Design & Technology anode cathode gate LED – connected by flying leads to the PCB. Remember long leg positive, short leg negative.
Programming revision Revision tip: Focus on the things you find difficult first.
Best Furniture Liquidators
Creating Flowcharts Principles of Engineering
Creating a Flowchart Computer Integrated Manufacturing
Sensors Control Systems with Flowol.
Creating Flowcharts Name of PowerPoint CIM Name of Lesson
The Electronic Die Using the PICAXE 08
Flowchart Symbols Terminal Process Input/ Output Decision
Starter: (don’t write a title or date yet!)
CPU Sequencing 6/30/2018.
Engineering Science Systems and Control.
Programming Mehdi Bukhari.
Furniture Liquidators -
Introduction to Flowcharting
Combination Circuits Lesson 10.
Using the Stopwatch object
Creating Flowcharts Principles of Engineering
Creating Flowcharts AIM:
Gaming with conditionals
The 3-Way Light Switch and The If-And-Only-If Statement
Creating Flowcharts Principles of Engineering
Raspberry Pi: External Inputs & Outputs
8.0 Programmable Logic Controllers 1
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Creating Flowcharts Name of PowerPoint CIM Name of Lesson
Welcome to Collaborate Jeopardy!
Applied Control Systems Underlying Principles
While Loops and If-Else Structures
LAB #2 Xilinix ISE Foundation Tools Schematic Capture “A Tutorial”
The Off-Line Machine Input File read-only (once) Input string
While Loops and If-Else Structures
Input-Output-Process Demo
While Loops and If-Else Structures
Gaming with conditionals
Unit 1 Day 8 Inverse Functions
Creating Flowcharts Name of PowerPoint CIM Name of Lesson
While Loops and If-Else Structures
GMRT Online for Students
The game is played by moving the cursor along the red arteries and clicking on the various pieces of your patient’s anatomy that are ailing him to remove.
Creating Flowcharts Principles of Engineering
2. ATP INITIALIZATION PLACE ATP SWITCH TO “1” OR “NORMAL” POSITION A
While Loops and If-Else Structures
50% of your final examination grade.
Further binary, Logic diagrams and truth tables
While Loops And If-Else Structures
CPU Sequencing 7/20/2019.
Creating Flowcharts Principles Of Engineering
The game is played by moving the cursor along the red arteries and clicking on the various pieces of your patient’s anatomy that are ailing him to remove.
Creating Flowcharts Name of PowerPoint CIM Name of Lesson
Objective - To write and evaluate simple functions.
Presentation transcript:

Flowchart Symbols What do these mean:

2007: Q6 A student has decided to use a µC for a steady hand game. His system diagram is below µC LED 1 (life 1) Output 0 LED 2 (life 2) Output 1 Wand & Contacts Input1 LED 3 (life 3) Output 2 Transducer driver Buzzer Output 3

Requirements A:Each time the wand & track touch, the µC switches on & an LED in sequence 1, 2 & 3. Once an LED is lit it will stays lit until reset (9 marks) B: once the wand & track touch, the µC will ignore any further contact between the wand & track for 2 seconds (4 marks) C: On the loss of the third life, the buzzer will switch on for 0.25s, then switch off for 0.25s. This is repeated 3 times (6 marks) The µC will then reset back to “no lives lost” (3 marks) Total: 22 marks

START 2007 ELECTRONIC PRODUCTS Requirement ‘A’ Sample answer 9 marks Has Wand made contact NO YES Output 0 = 1 Has Wand made contact NO YES Output 1 = 1 Has Wand made contact NO YES Output 1 = 1 END

START 2007 ELECTRONIC PRODUCTS Requirement ‘B’ Sample answer Additonal 4 marks WAND ? NO YES WAIT 2S OUTPUT0=1 WAND ? NO YES WAIT 2S OUTPUT0=1 WAND ? NO YES WAIT 2S OUTPUT0=1 END

2007 ELECTRONIC PRODUCTS START Requirement ‘C’ Sample answer Additional 6 marks START WAND ? NO SUB0 YES WAIT 2S COUNT=1 OUTPUT0=1 OUTPUT3=1 WAND ? NO WAIT 0.25 YES WAIT 2S OUTPUT3=0 OUTPUT0=1 WAIT 0.25 WAND ? NO COUNT=3 YES RETURN YES NO WAIT 2S COUNT= COUNT + 1 OUTPUT0=1 SUB 0 END

2007 ELECTRONIC PRODUCTS START Requirement ‘D’ Sample answer Additional 3 marks START WAND ? NO SUB0 YES WAIT 2S COUNT=1 OUTPUT0=1 OUTPUT3=1 WAND ? NO WAIT 0.25 YES WAIT 2S OUTPUT3=0 OUTPUT0=1 WAIT 0.25 WAND ? NO COUNT=3 YES RETURN YES NO WAIT 2S COUNT= COUNT + 1 OUTPUT0=1 SUB 0 ALL OUTPUTS=0