Robotics Club Lesson 1

Preview:

DESCRIPTION

Introduction to robotics for middle-school children

Citation preview

ROBOTICS CLUBMEETING 1

Michael YunivergGene Leybzon

Robots – what are they

What we need to build the robots

Money

Time

Electronics – Electricity - Physics

Mechanics – Physics, Materials,

Computer - Architecture, Programming

MATH

Arduino

demo

Electronic Components

Power Source

LED

Resistor

Push Button

Integrated Circuit

Integrated Circuit

Piezo Buzzer

Circuit Diagrams

Computer Basics

SW

Program Example

void setup() {

int i;

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

delay(100);

tone(8, i);

}

}

void loop() {

}

Recommended