generated from ludeeus/integration_blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: New Device | ||
description: Submit a new device to the library so that others don't have to configure it themselves. | ||
title: "[Device]: " | ||
labels: ["new-device"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
The battery library is a JSON document at [custom_components/battery_notes/data/library.json](custom_components/battery_notes/data/library.json) | ||
To contribute, submit your device details via this form and the relevant code changes will be proposed on your behalf. | ||
Note: The manufacturer and model should be exactly what is displayed on the Device screen within Home Assistant. | ||
To see your devices, click here: | ||
[![Open your Home Assistant instance and show your devices.](https://my.home-assistant.io/badges/devices.svg)](https://my.home-assistant.io/redirect/devices/) | ||
- type: input | ||
id: manufacturer | ||
attributes: | ||
label: Device Manufacturer | ||
description: The manufacturer should be exactly what is displayed on the Devices screen within Home Assistant. | ||
placeholder: ex. eWeLink | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: model | ||
attributes: | ||
label: Device Model | ||
description: The model should be exactly what is displayed on the Devices screen within Home Assistant. | ||
placeholder: ex. DS01 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: battery-type | ||
attributes: | ||
label: Device Battery Type | ||
description: When specifying battery types please use the Most Common naming for general batteries and the IEC naming for battery cells according to [Wikipedia](https://en.wikipedia.org/wiki/List_of_battery_sizes). | ||
placeholder: ex. CR2032 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: battery-quantity | ||
attributes: | ||
label: Device Battery Type | ||
description: The battery_quantity attribute is numeric (no letters or special characters). | ||
placeholder: ex. 1 | ||
validations: | ||
required: true |