# Inputs

"Input Plugins" provide the sensory capabilities that allow robots to perceive their environment. These plugins capture, process, and format various types of input data, making them available to the robot's core runtime for decision-making.

### Basic Architecture

* `Sensor<T>` is the base abstract class that defines the core interface
* `FuserInput<T>` extends `Sensor<T>` and implements the polling mechanism
* `InputOrchestrator` manages multiple input sources
* `YourCustomCode` extends `FuserInput<T>` and implements the specific input functionality

### Examples

[Input plugin code examples](https://github.com/OpenMind/OM1/blob/main/src/inputs/plugins/README.md)

Here are a few examples for you to reuse and build on:

* [Google ASR](https://github.com/openmind/OM1/blob/main/src/inputs/plugins/google_asr.py)
* [Riva ASR](https://github.com/openmind/OM1/blob/main/src/inputs/plugins/riva_asr.py)
* [RPLidar](https://github.com/openmind/OM1/blob/main/src/inputs/plugins/rplidar.py)
* [VLM\_COCO\_Local](https://github.com/openmind/OM1/blob/main/src/inputs/plugins/vlm_coco_local.py)
* [VLM\_Vila](https://github.com/openmind/OM1/blob/main/src/inputs/plugins/vlm_vila.py)
* [Arduino GPS](https://github.com/openmind/OM1/blob/main/src/inputs/plugins/gps.py)

Learn how to build a new input plugin [here](/developer-cookbook/introduction/input.md)


---

# Agent Instructions: 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:

```
GET https://docs.openmind.com/core-concepts/concepts/4_inputs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
