robotics club lesson 1

15
ROBOTICS CLUB MEETING 1 Michael Yuniverg Gene Leybzon

Upload: gene-leybzon

Post on 26-Jun-2015

91 views

Category:

Education


5 download

DESCRIPTION

Introduction to robotics for middle-school children

TRANSCRIPT

Page 1: Robotics Club Lesson 1

ROBOTICS CLUBMEETING 1

Michael YunivergGene Leybzon

Page 2: Robotics Club Lesson 1

Robots – what are they

Page 3: Robotics Club Lesson 1

What we need to build the robots

Money

Time

Electronics – Electricity - Physics

Mechanics – Physics, Materials,

Computer - Architecture, Programming

MATH

Page 4: Robotics Club Lesson 1

Arduino

demo

Page 5: Robotics Club Lesson 1

Electronic Components

Page 6: Robotics Club Lesson 1

Power Source

Page 7: Robotics Club Lesson 1

LED

Page 8: Robotics Club Lesson 1

Resistor

Page 9: Robotics Club Lesson 1

Push Button

Page 10: Robotics Club Lesson 1

Integrated Circuit

Page 11: Robotics Club Lesson 1

Integrated Circuit

Page 12: Robotics Club Lesson 1

Piezo Buzzer

Page 13: Robotics Club Lesson 1

Circuit Diagrams

Page 14: Robotics Club Lesson 1

Computer Basics

SW

Page 15: Robotics Club Lesson 1

Program Example

void setup() {

int i;

for (i=10; i<20000; i+=10){

delay(100);

tone(8, i);

}

}

void loop() {

}