What is programming?
A sequence or set of instructions
History of Programming
What happened in 1947?
Assembly Language, the language of computers, was created
ex. binary
History of Programming
Who created Assembly Language?
Kathleen Booth
History of Programming
What happened in 1972?
C (Language) was created
History of Programming
Who created C (Language)?
Dennis Ritchie
History of Programming
What happened in 1979?
C++ was created
History of Programming
Who created C++?
Bjarne Stroustrup
What are the Arduino Fundamentals?
Arduino Fundamentals
What is a variable?
A named storage location that holds a value or data
Arduino Fundamentals
What is a data type?
Classification of data tells compiler how data will be used (?)
Arduino Fundamentals
What is syntax?
Grammar in programming
Arduino Fundamentals
What are the naming rules of the variable?
Arduino Fundamentals
Data types
Arduino Fundamentals
Syntax symbols meaning
; { } () / /CODE/
; (semicolon) - signifies end
{} (curly braces) - group of code statements
() (parentheses) - group of arguments for a function
/ (single line comment) - [to add]
/CODE/ - [to add]
What are the main functions (and their uses) used in Arduino?
What is a flowchart?
Graphical representation of an algorithm
Flowchart symbols?