Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Audio Output Sensors, rename Microphone to Audio Input #627

Merged
merged 2 commits into from
Dec 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/core/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,12 @@ If multiple servers are connected to an iOS or mac app, currently the sensor set
| --------- | --------- | ----------- |
| `binary_sensor.active` | [See Below](#active-sensor) | Whether the device is actively being used. |
| `sensor.active_camera` | `All`, `Active` | The name of the active camera, or `Inactive` if not in use. |
| `sensor.active_microphone` | `All`, `Active` | The name of the active microphone, or `Inactive` if not in use. |
| `sensor.active_audio_input` | `All`, `Active` | The name of the active audio input (microphone), or `Inactive` if not in use. |
| `sensor.active_audio_output` | `All`, `Active` | Requires app version 2021.12 or later. The name of the active audio output (speaker), or `Inactive` if not in use. |
| `sensor.frontmost_app` | [See Below](#frontmost-app-sensor) | Requires app version 2021.2 or later. The name of the current frontmost app. |
| `binary_sensor.camera_in_use` | None | Whether a camera on the system is currently in use. |
| `binary_sensor.microphone_in_use` | None | Whether a microphone on the system is currently in use. |
| `binary_sensor.audio_input_in_use` | None | Whether an audio output (microphone) on the system is currently in use. |
| `binary_sensor.audio_output_in_use` | None | Requires app version 2021.12 or later. Whether an audio output (speaker) on the system is currently in use. |
| `sensor.displays` | `Display IDs`, `Display Names` | Requires app version 2021.2 or later. Number of displays connected to the device. |
| `sensor.primary_display_id` | None | Requires app version 2021.2 or later. ID of the current primary display, which is the display with the menu bar. In the form of a UUID, for example `BE82E2E6-EA40-4963-93AD-A0BDC9D2F18F`. |
| `sensor.primary_display_name` | None | Requires app version 2021.2 or later. Name of the current primary display, which is the display with the menu bar. |
Expand Down