Logo for Beginners By Chris 9S.

Slides:



Advertisements
Similar presentations
First of all – lets look at the windows you are going to use. At the top you have a toolbar, with all your various tools you can use when customising your.
Advertisements

Logo Lesson 1 TBE Fall 2004 Farah Fisher.
Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
Super Logo. Key Instructions Pendown penup Forward 50 ( this number can change) Right 90 ( this number can change as well) Now try and draw a Early finishers,
Using Logo and Logic Please use speaker notes for additional information!
"Turtle Graphics“ for kids.
Logo Lesson 2 Logo Procedures
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Classifying Polygons Objective; I can describe a polygon.
Terrapin Logo "Logo is the name for a philosophy of education and a continually evolving family of programming languages that aid in its realization."
Polygons:.
Mathematics and ICT National Numeracy Strategy National Curriculum for Mathematics.
LOGO SOFTWARE BY: SAVE 9S. INTRODUCTION Logo is a software that can be found at : Shared area> High School > ICT > take home software > LOGO32. This is.
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 2) More complex procedures using parameters,
Georgia Institute of Technology Barb Ericson Georgia Institute of Technology May 2006 Teaching Java using Turtles part 2.
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
A tiny turtle robot DEI The University of Padova.
Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem.
Agent P, I have been hearing some rumours about a Python Turtle.
MSW Logo By Awin 9s.
Logo For beginners By Dali Matthews 9S What is logo?
An introduction to Logo Mike Warriner Engineering Director, Google Note: This course is not an endorsement of Logo by Google. All views in this document.
Programmming Class Fall 2011 Sobhan Highschool Teacher: M.Taghizadeh.
Logo Programming Fall 2011 – Session 4 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
By. Circle Draw a circle in the box Tell about its attributes: sides, angles, whether or not it’s a polygon. Add any additional information you know about.
CONTROL SYSTEMS Control Systems A command is a directive that performs a specific task An argument is a variable that can be used by the function reveiving.
Programmming Class Fall 2011 – Session 2 Teacher: M.Taghizadeh
Students, Learning, and Technology: Mindtools for the 21 st Century Powering Up With Technology Conference November 15, 2003 Educational Technology Research.
The Hare Raising Experience of Logo in the Classroom
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
This is taking too long! Lesson 2 – Subroutines and parameters with LOGO.
Classifying Shapes MA.3.G.1.
The Pro-Bot* Kate Lester and Nancy Chaffer Term 2, 2010 PCS TPL
Lines of Symmetry A figure has line symmetry, or reflectional symmetry, if there is a reflection for which the figure is its own image.
By Liam Lane How To Use MSW LOGO.
Copyright 2002, Tony Gauvin, UMFK
LOGO CECS 4100 R. Christensen.
HOW THEY WORK AND WHAT THEY DO. Jay Jay 9S. A control program is a type of programming that allows you to control systems. Control programs are used in.
LOGO For the beginner Made by Rio Narazaki. W HAT I S L OGO ? Logo is a computer programming language used in Education. Logo is very easy to use. The.
Pablo Revelo. Birds: to 3birds pu home pd lt 80 pu fd 250 pd setpensize 2 setpc "white st bird pu bk random 100 bird pu lt 90 fd random 40 bird ht.
Cracking the Code WHAT WORKS WHEN TEACHING STUDENTS TO CODE?
First of all – lets look at the window’s you are going to use. At the top you have a toolbar, with all your various tools you can use when customising.
Procedures and Variables Control Logo 1. What you will do today  You will make your code more efficient by using procedures  You will create shapes.
Turtle Graphics Lesson 2 1. There are 3 homeworks to complete during the six lessons of this unit. Your teacher will let you know when a homework has.
Search for it on your computer
LOGO WHAT IS IT? HOW TO USE IT AND HOW USEFUL CAN IT BE?
What is it? How to use it and how useful can it be?
For loops. turtle drawings – common core state standards 1.1 Innovate: Demonstrate creative thinking, construct knowledge and develop innovative products.
Students, Learning, and Technology for the 21 st Century Young Scholars Program Summer 2007 Educational Technology Policy, Research and Outreach Davina.
Lesson Technology Lab: Exterior Angles of a Polygon Obj: The student will be able to use a protractor to study the exterior angles of a polygon HWK: Vocab:
Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.
Computer Programming.
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Micro worlds Microworlds By Clara Paton By Clara Paton.
Polygon Constructions
Learning to program with Logo
Algorithms and Flow Charts
Chap. 3 Functions Start Python IDLE (Shell) and open a new file.
Ellie DeGiorgio-Hudson
Polygons 1st year TG.
Shapes Polygons and Quadrilaterals
Institute for Entrepreneurship and Career Development (IECD)
SCITT Day 5 Position, direction and angle identifying key features of shape and space.
Using Logo and Logic This presentation uses a version of Logo called StarLogo available through MIT. It can be downloaded for free and installed on your.
Logo Programming.
Mod 2 Lesson 2 Repeating with loops
Presentation transcript:

Logo for Beginners By Chris 9S

What are control systems A control system uses microprocessors to control physical conditions. This is used for: Air condition Central Heating Medical Applications Car Manufacture plants Process Control

Physical Conditions (or variables) that are controlled by microprocessors are: Temperature Pressure Humidity Light Moisture

What is Logo? Logo is a simulation of a control system It uses a triangular turtle shape as its cursor It is a program developed by MIT (Massachusetts Institute of Technology)

Some Basic Commands fd= moves turtle forward e.g. fd 40 bk= moves turtle backward e.g. bk 50 rt= rotates turtle right e.g. rt 70 lt= rotates turtle left e.g. lt 90 pu= pen up pd= pen down

How to make a square? fd 80 rt 90 or repeat 4 [fd 80 rt 90]

Repeat Command The repeat command is used when you want to repeat a structure commands again and again e.g. any polygon To use ‘repeat’ in logo, you need to know by what angle you need to turn the turtle. You would need to do 360/(number of sides). E.g. Hexagon angle= 360/6= 60

This means that you would do type in: repeat 6 [fd 80 rt 60] Note: don’t use these brackets: () and {} Always use this bracket: []

How to draw a circle To draw a circle, you would type: repeat 360 [fd 1 rt 1]

Variables A Variable is a numeric data that can be keep on changing e.g. numerical data in a cell in Microsoft Excel. Variables are useful when they are more or less amount of numbers appear e.g. clients in a cliental list

Variables in MSWLOGO When using the repeat command in LOGO, you can change the length of the square without having to keep going to Edall and changing the length Ex. If you would want to do a square, copu into edall: To square :length repeat 4 [fd :length rt 90] end To make the square of length 100 you insert “square 100” in the command box

Where to get MSWLOGO This Website: http://mswlogo.en.softonic.com/ Its free and virus-free!