CODING INTRODUCTION
Code Mambo
In this lesson, students gain an understanding of programming and coding. Through the introduction and use of block-based coding, students will design, compile, and execute code to fly and navigate the Parrot Mambo Drone.
Algorithm?
In order to understand computer programming, it is first essential to understand the definition of an algorithm.
“A set of steps that can be followed (frequently by a computer) to solve a problem.”
Recipe = Algorithm
A recipe is a great example of an algorithm.
A recipe is a set of instructions that tells you how to cook something specific. If you follow the recipe, the food should taste the same no matter who cooks it or when they cook it.
Solve the Problem
In computer programming, the first step is to identify the “problem”(what are you trying to get the drone to do?).
Once you have determined the problem you can create a series of directions (algorithm) to solve that “problem”. These directions don’t need to be in computer language at this point, just a series of steps outlined.
This series of steps will be used to program the drone. We will translate them into a language the drone understands, and this will be called Code.
Problem:
Program the drone to take off, hover, flip forward and then land.
Algorithm:
The series of steps that will “solve” this problem (the program) is:
Drone Takeoff
Drone Hover in place
Drone flip forward
Drone land
Now we need to turn this into a series of commands that the drone can follow (the code).
Write the Code:
Code = the solution to the problem that the drone will understand.
Solution in FTW Code:
Algorithm
a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer
Closed Block
A type of coding block in which other blocks can be placed inside of them but they cannot be placed inside of any other blocks.
Code
Code is a term used to describe text that is written using the protocol of a particular language by a computer programmer
Functions
A function is a block of organized, reusable code that is used to perform a specific action
Program
detailed plan or procedure for solving a problem with a computer;
Snap Block
A type of coding block that can be placed inside a closed block.
CODING INTRODUCTION
FTWCODE - PROGRAMMING PLATFORM
CODING EXERCISES - BASIC