logo for beginners by chris 9s

12
Logo for Beginners By Chris 9S

Upload: martina-underwood

Post on 08-Jan-2018

223 views

Category:

Documents


1 download

DESCRIPTION

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

TRANSCRIPT

Page 1: Logo for Beginners By Chris 9S

Logo for BeginnersBy Chris 9S

Page 2: 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

Page 3: Logo for Beginners By Chris 9S

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

Page 4: Logo for Beginners By Chris 9S

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)

Page 5: Logo for Beginners By Chris 9S

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

Page 6: Logo for Beginners By Chris 9S

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

Page 7: Logo for Beginners By Chris 9S

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

Page 8: Logo for Beginners By Chris 9S

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: []

Page 9: Logo for Beginners By Chris 9S

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

Page 10: Logo for Beginners By Chris 9S

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

Page 11: Logo for Beginners By Chris 9S

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

Page 12: Logo for Beginners By Chris 9S

Where to get MSWLOGO This Website:

http://mswlogo.en.softonic.com/ Its free and virus-free!