Logo For beginners By Dali Matthews 9S What is logo?

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.
Noadswood Science,  To understand the flow procedure when writing programs Thursday, January 15, 2015.
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 3 TBE 540 Fall 2004 Farah Fisher. Prerequisites for Lesson 3 Before beginning this lesson, the student must be able to… Use simple Logo commands.
Logo Lesson 2 Logo Procedures
Introduction to TouchDevelop
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Terrapin Logo "Logo is the name for a philosophy of education and a continually evolving family of programming languages that aid in its realization."
Noadswood Science,  To know the basics of Python coding and decoding Monday, September 07, 2015.
Presentation Software EDTS100 Lecture 7. Presentation Software Some Options KidPix MicroWorlds PowerPoint Frontpage Kahootz.
Mini Project II – Drawing Machine
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.
Scratch – Simple Programming
Graphics and Procedures Programming Right from the Start with Visual Basic.NET 1/e 5.
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 2) More complex procedures using parameters,
Microsoft® Small Basic
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Art 321 Lecture 7 Dr. J. Parker. Programming In order to ‘make things happen’ on a computer, you really have to program it. Programming is not hard and.
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.
TURTLE GRAPHICS IP MR. MELLESMOEN. LOGO IN THE 1970’S THERE WAS A SIMPLE BUT POWERFUL PROGRAMMING LANGUAGE CALLED LOGO THAT WAS USED BY A FEW.
Introduction to TouchDevelop
MSW Logo By Awin 9s.
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.
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
The Hare Raising Experience of Logo in the Classroom
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
By Liam Lane How To Use MSW LOGO.
Copyright 2002, Tony Gauvin, UMFK
LOGO CECS 4100 R. Christensen.
Getting started with the turtle Find the latest version of this document at
Logo for Beginners By Chris 9S.
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.
This way, this way … Lesson 3. Starter START Print “Hello, world” STOP Print “What’s your name?” Read in name Print “Hi” and the name Print “Welcome to.
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?
Using the Python Turtle
Week 3 DO NOW QUESTIONS.
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Scratch – Simple Programming
Agent P, I have been hearing some rumours about a Python Turtle.
Learning to program with Logo
Algorithms and Flow Charts
Introduction to.
Section 3 Programming with Turtle Graphics
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.
Thinking Game Information By: Garrett Conn.
Shapes.
Translate 5 squares left and 4 squares up.
Presentation transcript:

Logo For beginners By Dali Matthews 9S What is logo? The basic commands Why commands are important? What is a turtle? What is repeat? What is commander? How to change the colour of the pen? How to draw a square? How to draw a circle? What are variables? EXTRAS Logo For beginners By Dali Matthews 9S

A SIMPLE DISPLAY OF LOGO THE TURTLE IS WHAT WE COMMAND THIS IS WHERE THE LIST OF COMMANDS WRITTEN WILL BE DISPLAYED WILL EREASE ALL THE CODES AND COMMANDS WHERE WE WRITE THE COMMANDS FOR TURTLE

A What is logo? Logo is a programming language develop at the MIT (Massachusetts Institute of Technology). Logo easy to learn and really powerful. Logo simple to use. Logo uses commands to make whatever you can imagine.

The basic commands PD is pendown so it start drawing PU is penup so it will stop drawing Forward is FD with any number, example FD 100 Backward is BK with any number, example BK 90 To rotate right you put RT and how many degrees, example 0-360 To rotate left you put LT and how many degrees, example 0-360, LT 45

Why commands are important? Commands are very important because we need to command an object to do a certain thing. Robots work with commands if they wouldn't have commands they wouldn't work. CCTV cameras work with commands, if CCTV cameras have an error we could have no security. If commands are put carefully then the CCTV cameras would work.

What is turtle? The turtle is the triangular shape D What is turtle? The turtle is the triangular shape The turtle is found in the middle of the logo screen It show which direction your pointing

What is repeat? For example: repeat [ fd 50 lt 45 ] to make an octagon Repeat is a set of commands that are repeated which are in the brackets.

What is commander? Commander is the box on the bottom. F What is commander? Commander is the box on the bottom. You need commander or else you cant type commands in. Commander is where you write your commands. You always have to start with pd (pendown) To finish you write pu (penup)

How to change the colour of the pen? There is only red, green, and blue color. Go to the commander Write: SetPC [255 0 0] (for red) you have to put one of the number from 0 to 255 .

How to draw a square? First go to the commander. Type repeat 4 [fd 10 rt 90] You can increase or decrease the size by changing the number of fd. s But the rt stay’s the same, it must always be 90. Example of a square on the right-

How to draw a circle? First go to the commander Then put in the commands repeat 360 [fd 1 rt 1] Example on the right->

J What are variables? In the dictionary variables means: An element, feature, or factor that is liable to vary or change. For example, the codes that you put in a cell are variable (which can change)

EXTRAS To make a house you need to have these codes: K To square :length Repeat 4[fd :length rt 90] End To triangle :length Lt 90 Repeat 3[rt 120 fd :length] Then put this in: