> For the complete documentation index, see [llms.txt](https://developers.neowit.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.neowit.io/starlark/modules/sensors-module.md).

# sensors module

## Introduction

The sensors modules provides constants for the different sensors Neowit supports. A full table of values is provided on the integration configuration page.

## Example

```python
# Air Flor per cubic hour
sensorType = sensors.AIR_FLOW_CUBIC_HOUR

# Indoor temperature in Celsius
sensorType = sensors.TEMP

# Outdoor temperature in Celsius
sensorType = sensors.OUTDOOR_TEMP
```
