> ## Documentation Index
> Fetch the complete documentation index at: https://stem-docs.intellectualpoint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Anatomy of your drone

> Learn the name and job of every major part of your Echo Drone before you build it.

## Know your drone inside and out

Before you build and fly, get to know the parts. Every component has a job, and knowing them makes building, flying, troubleshooting, and coding far easier.

<Frame caption="The major parts of your Echo Drone">
  <img src="https://mintcdn.com/intellectualpoint/eW7U9shBQKKM3XX9/images/drones/drone-anatomy.png?fit=max&auto=format&n=eW7U9shBQKKM3XX9&q=85&s=ce1197f8dc6bc69f44ac5dd1a5b93594" alt="Labeled diagram of a quadcopter drone showing propellers, motors, prop guards, frame, battery, camera, LED, and optical-flow sensor" width="1536" height="1024" data-path="images/drones/drone-anatomy.png" />
</Frame>

## Every part, pulled apart

Sometimes it's easiest to understand a machine by taking it apart. Here's your Echo Drone "exploded" into its main pieces - stacked in the order they fit together.

<Frame caption="An exploded view - every layer of your drone, from propellers on top to sensors on the bottom">
  <img src="https://mintcdn.com/intellectualpoint/eW7U9shBQKKM3XX9/images/drones/drone-exploded-view.png?fit=max&auto=format&n=eW7U9shBQKKM3XX9&q=85&s=bee1825210541490030ece30962777ea" alt="Exploded diagram of a quadcopter showing propellers, prop guards, motors, flight controller board, battery, camera, optical-flow sensor, and LED separated in layers" width="1536" height="1024" data-path="images/drones/drone-exploded-view.png" />
</Frame>

## The major parts

<AccordionGroup>
  <Accordion title="Propellers" icon="fan">
    Four spinning blades that create lift by throwing air downward. Your drone has two **A** (forward) and two **B** (reverse) propellers arranged in an alternating pattern.
  </Accordion>

  <Accordion title="Motors" icon="cog">
    Four small electric motors, one at the end of each arm. Changing their speeds is how the drone rises, tilts, and turns.
  </Accordion>

  <Accordion title="Prop guards" icon="shield">
    Circular rings around each propeller. They protect the blades - and your fingers and walls - during indoor flight and crashes.
  </Accordion>

  <Accordion title="Frame / body" icon="box">
    The central chassis that holds everything together and houses the flight controller (the drone's brain).
  </Accordion>

  <Accordion title="Battery" icon="battery-full">
    A clip-in 3.7 V lithium battery that powers the motors and electronics. It provides 9-10 minutes of flight and recharges in about an hour.
  </Accordion>

  <Accordion title="Camera" icon="camera">
    A front-facing 720p camera that streams live video over Wi-Fi. This is the camera you'll fly with in first-person view on Day 4.
  </Accordion>

  <Accordion title="LED indicator light" icon="lightbulb">
    Shows the drone's status through different flash patterns - pairing, headless mode, low battery, and more.
  </Accordion>

  <Accordion title="Optical-flow sensor" icon="scan">
    A downward-facing sensor that watches the ground to hold the drone's position steady when hovering indoors.
  </Accordion>
</AccordionGroup>

## The brain: the flight controller

Hidden inside the body is the **flight controller** - a tiny computer that runs the show. Many times every second it repeats the same three-step loop: **sense** what's happening, **think** about what to change, and **act** by adjusting the motors.

<Frame caption="The flight controller loops through sense, think, and act hundreds of times per second">
  <img src="https://mintcdn.com/intellectualpoint/eW7U9shBQKKM3XX9/images/drones/flight-controller-loop.png?fit=max&auto=format&n=eW7U9shBQKKM3XX9&q=85&s=2b39bfb1ef32673b9307c6b09bfe4805" alt="Diagram of the flight controller's sense-think-act loop using gyroscope, accelerometer, and optical-flow sensor to adjust four motors" width="1536" height="1024" data-path="images/drones/flight-controller-loop.png" />
</Frame>

<Info>
  When you fly, you don't control motors directly - you tell the flight controller what you *want* (go forward, turn left), and it does the fast motor math for you. Later, your code will send it those same requests.
</Info>

## The sensors that keep it steady

The flight controller is only as smart as the sensors feeding it. Three tiny sensors - the same kind inside your phone - let your drone balance itself.

<CardGroup cols={3}>
  <Card title="Gyroscope" icon="rotate-3d">
    Detects how fast the drone is tipping or spinning, so it can level out.
  </Card>

  <Card title="Accelerometer" icon="move-3d">
    Measures speeding up and slowing down, and which way is down.
  </Card>

  <Card title="Optical-flow" icon="scan">
    Watches the floor's texture to hold position instead of drifting.
  </Card>
</CardGroup>

## Reading the LED light

Your drone talks to you through its **LED light**. Learning the flash patterns means you'll always know what it's doing - pairing, ready, or low on power.

<Frame caption="The LED's color and blink pattern tells you exactly what the drone is doing">
  <img src="https://mintcdn.com/intellectualpoint/eW7U9shBQKKM3XX9/images/drones/led-status-chart.png?fit=max&auto=format&n=eW7U9shBQKKM3XX9&q=85&s=a468f8536a65f15fa34bc8ff11a9aae3" alt="Chart of drone LED light states: fast blinking pairing, slow blinking ready, alternating headless mode, red blinking low battery, solid connected" width="1536" height="1024" data-path="images/drones/led-status-chart.png" />
</Frame>

<Tip>
  Point to each part on your own drone as the facilitator names it. Being able to find the battery, camera, LED, and prop guards quickly will speed up every activity this week.
</Tip>

## Quick quiz

<CardGroup cols={2}>
  <Card title="Which part does the math?" icon="cpu">
    You tell the drone "go forward." Which part figures out how fast to spin each motor?
  </Card>

  <Card title="Why does it stay put?" icon="scan">
    Indoors with no GPS, which sensor keeps your drone from slowly drifting across the room?
  </Card>
</CardGroup>

<Check>
  You can find and name the propellers, motors, prop guards, battery, camera, LED, and optical-flow sensor on your drone, explain what the flight controller does, and read the basic LED patterns.
</Check>
