> For the complete documentation index, see [llms.txt](https://docs.cb21829.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cb21829.org/ftc-java-beginner-guide/hardware-fundamentals-motors-and-servos.md).

# Hardware fundamentals: motors and servos

Everything on the robot is grabbed from `hardwareMap` during init, using the exact name from your robot configuration.

### DC motors

```java
DcMotor intake = hardwareMap.get(DcMotor.class, "intake");

intake.setDirection(DcMotor.Direction.REVERSE);
intake.setZeroPowerBehavior(DcMotor.ZeroPowerBehavior.BRAKE);
intake.setPower(1.0);
```

Use `setDirection()` to make positive power spin the way you want. Use `BRAKE` if you want the motor to hold when power is zero.

Prefer `DcMotorEx` when you need extra features like velocity control or current reading:

```java
DcMotorEx lift = hardwareMap.get(DcMotorEx.class, "lift");
```

### Servos

A standard servo moves to a position between `0.0` and `1.0`.

```java
Servo claw = hardwareMap.get(Servo.class, "claw");
claw.setPosition(0.0);
claw.setPosition(1.0);
claw.setPosition(0.5);
```

`getPosition()` returns the last target you commanded, not a measured angle.

### Continuous rotation servos

A `CRServo` spins continuously and uses power instead of position.

```java
CRServo spinner = hardwareMap.get(CRServo.class, "spinner");
spinner.setPower(1.0);
spinner.setPower(0.0);
spinner.setPower(-1.0);
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.cb21829.org/ftc-java-beginner-guide/hardware-fundamentals-motors-and-servos.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
