Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensors and Flowcharts.

Slides:



Advertisements
Similar presentations
Microcontrollers Engineering Science. Microcontrollers - Intro Microcontrollers are used in a lot of systems that we use in every day life. Microwaves,
Advertisements

This symbol is used to; Start a flow-chart; Stop a singe flow-chart (or all flow charts in that program); Mark the Start of a Sub-Routine (a separate.
Creating Flowcharts Principles Of Engineering
Flowol The Task.
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.
ME 142 Engineering Computation I Fundamentals of Procedural Computer Programming.
Unit 7.6 Lesson 2 Goals Identify and use flowchart symbols. Plan a sequence of events and incorporate them into a flowchart. Create a simple flowchart.
Bridge Traffic Lights Mimic Name:. Learning Objective How to use Flowol and the Bridge Light Mimic to safely control a set of traffic lights Learning.
Dr. Gary Stewardson, Raymond Boyles Hello again, Sparkey here. Slippery and I will help you explore how to create a program that simulates outputs on a.
Do it now activity Last lesson we learnt about instructions are run in a computer. Write a set of instructions that a computer could follow to make a cup.
What is a Flowchart? Why are they used? How to draw them.
Unit 5E – Controlling Devices
Flowol subroutines Subroutines are used to:  Simplify your code to make it easier to read (or for someone.
COMPUTER CONTROL Year 11. Lesson 1 Introduction to Computer Control.
Lesson Objectives 1. Practise writing sequence of instructions 2. Write flowcharts for different mechanisms Keywords: Input sensor Motion sensor Output.
Pseudocode Demo for Payroll.c
Control & Programming Controlling a Sports Car. Systems in Cars Many modern cars use sophisticated sensors and control systemsMany modern cars use sophisticated.
Computational Thinking – Lesson 3 Lesson Objective To be able to construct an algorithm and flowchart for a given problem.
Python Selection. All the programs you have been developing so far have been sequential, this means that each instruction is executed in a set order.
Flowcharting An Introduction. Definition A flowchart is a schematic representation of an algorithm or a process.
Slide 1 Controlling Sequences of Events Traffic lights Event table.
Flowcharts
Sequencing The most simple type of program uses sequencing, a set of instructions carried out one after another. Start End Display “Computer” Display “Science”
Control & Programming The Sports Coupe Mimic Controlling the Car Alarm.
目录 12 in 1 Sensor Features ● PIR motion sensor ● Ultrasonic sensor ● LUX sensor ● Temperature sensor ● 2 Dry contacts ● 2 external condition inputs ● IR(infrared)
Your Brief: You are the lead programmer responsible for designing and implementing the control program that controls all input and output devices in the.
Software using a flowchart method of creating a control programme.
Flowcharts. Learning Objectives To learn how to break down tasks How to create a flowchart.
Slide 1 Flowchart with loop Start Is light less than 50? Turn lamp on Yes No.
W e A re L earning T o  Understand the term control and program  To understand the basic symbols used in Flowol.
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.
Learning Objective To be able to… Understand flow chart symbols Complete and correct flow chart algorithms Create a program based on a flow chart.
Unit 7.6 Lesson 4 Goals: Complete the control system (flowchart) to control all elements of the greenhouse. Test and refine the flowchart to improve how.
Challenge #1: Cuckoo Clock Create a flow chart to make a cuckoo clock chime every hour. Use the symbols on the right to make it. This will include iteration.
Unit 7.6 – Control & Monitoring Overview Key Stage 3 National Strategy ICT Strand.
Control You can use this presentation to complete the tasks set in the lesson. When instructed by the teacher attempt to complete each task on the corresponding.
Control Technology START What is control technology? What is this diagram called? In which program have you used these before? Lets Go!
W A L T - What is a system flowchart?  System flowcharts are a way of displaying how data flows in a system and how decisions are made to control events.data.
Data Flow Diagrams Start Do you want to continue? Yes End No Test on
Sequencing Learning Objective: to be able to design algorithms that use sequencing.
Programming – Algorithms (Flowcharts)
Sensors Control Systems with Flowol.
Making coffee Start or stop Process Decision Input/output Start
Flowchart Symbols Terminal Process Input/ Output Decision
Using the BBC micro:bit for Home Security
Digital electronics and logic gates
Learning Objective: to be able to design programs that use sequencing.
Remove toast from toaster
AQA GCSE 6 Systems approach to designing Design and Technology 8552
Print slides for students reference
Sequencing Learning Objective: to be able to design algorithms that use sequencing.
Structured Program Design
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Chapter - Karnaugh Maps
Introduction to Flowcharts
Lesson 4 Variables.
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Start or end of algorithm: Action/process step:
Objectives Construct truth tables for the following logic gates:
I can program behaviours using inputs and outputs
Global Challenge Night Sensor Lesson 2.
Global Challenge Night Sensor Lesson 2.
Flowcharts Activity One
Presentation transcript:

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensors and Flowcharts

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Flowchart symbols Process Start / Stop Input / Output Decision Process Subroutine

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Security light Identify what instructions would need to go in the flowchart boxes to operate the security light.

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensor asks: Is movement detected? Sensor asks: Is movement detected? Start Turn on light Turn on light Turn off light Turn off light YES NO Construct a flowchart to operate the security light. Security light

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts YES NO Sensor asks: Is movement detected? Sensor asks: Is movement detected? Turn on light Turn on light Start Turn off light Turn off light Can you add a delay? Where would you put it? Security light

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts YES NO Sensor asks: Is movement detected? Sensor asks: Is movement detected? Turn on light Turn on light Start Turn off light Turn off light Delay 10 seconds Security light with delay

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensor asks: Is anyone there? Open door Delay 10 Close door Start Yes No Automatic door

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Automatic door – solution 1 No Yes Close door Sensor asks: Is anyone there? Open door Delay 10 Start What is the problem with this solution? How could you change it?

Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Automatic door – solution 2 (safe version) No Yes Sensor asks: Is anyone there? Open door Start Delay 10 Close door