1 of 2

v07.10.2024

Intermediate

Animals

Innovative Creations

DANCING ANIMALS

Can you make an Arduino Alvik dancing animal?

Think Like an Engineer:

What different ways can you enhance your robot to include your animal’s features?

Think like a zoologist:

What does your animal look like? How does your animal move?

EXAMPLE IDEAS

So many options for animals: octopus,

snake, bird. Build your favorite and make it dance.

Flip over for more details!

2 of 2

CODE IT!

1 from arduino_alvik import ArduinoAlvik

2 alvik = ArduinoAlvik()

3 alvik.begin()

CHALLENGE YOURSELF

Can you make the animal respond to user behavior.

First you will need to import the library and start up the drivers

Then there are a number of other commands that might be useful:

8 alvik.set_servo_positions(90,0)

9 alvik.move(15)

10 alvik.rotate(180)

BUILD IT!