Skip to content

Commit a7e9109

Browse files
Remove beta (#715)
1 parent 413f1f2 commit a7e9109

File tree

7 files changed

+13
-20
lines changed

7 files changed

+13
-20
lines changed

docs/assets/screenshot-attributes.png

97.2 KB
Loading

docs/assets/screenshot-device.png

28.6 KB
Loading

docs/community.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
## UI
44

5-
### Battery State Card (Beta Only)
6-
5+
### Battery State Card
76
Using the excellent [Battery State Card](https://github.com/maxwroc/battery-state-card) by maxwroc you can easily display devices with their batteries required where the devices battery threshold indicates it's low and show be replaced.
87

98
```yaml
@@ -25,8 +24,7 @@ sort:
2524
2625
## Automations
2726
28-
### Battery Low Notification (Beta Only)
29-
27+
### Battery Low Notification
3028
Raise a persistent notification when a battery is low, dismiss when it's not low
3129
3230
```yaml
@@ -74,8 +72,7 @@ action:
7472
mode: queued
7573
```
7674
77-
### Battery Replaced (Beta Only)
78-
75+
### Battery Replaced
7976
Mark a battery as replaced when there is an increase in battery level.
8077
8178
```yaml
@@ -107,16 +104,14 @@ action:
107104
108105
[Blueprints](https://www.home-assistant.io/docs/automation/using_blueprints/) are an excellent way to get you up and running with the integration quickly. They can also be used as a guide for setting up new automations which you can tailor to your needs.
109106
110-
### Battery Threshold (Beta Only)
111-
107+
### Battery Threshold
112108
[Install blueprint](https://my.home-assistant.io/redirect/blueprint_import/?blueprint_url=https%3A%2F%2Fraw.githubusercontent.com%2Fandrew-codechimp%2FHA-Battery-Notes%2Fmain%2Fdocs%2Fblueprints%2Fbattery_notes_battery_threshold.yaml) | [Source](./blueprints/battery_notes_battery_threshold.yaml)
113109
114110
This blueprint will allow notifications to be raised and/or custom actions to be performed when the battery threshold is met.
115111
It is extended from the example Battery Low Notification automation yaml above for those who'd prefer an easy way to get started.
116112
117113
118-
### Battery Replaced (Beta Only)
119-
114+
### Battery Replaced
120115
[Install blueprint](https://my.home-assistant.io/redirect/blueprint_import/?blueprint_url=https%3A%2F%2Fraw.githubusercontent.com%2Fandrew-codechimp%2FHA-Battery-Notes%2Fmain%2Fdocs%2Fblueprints%2Fbattery_notes_battery_replaced.yaml) | [Source](./blueprints/battery_notes_battery_replaced.yaml)
121116
122117
This blueprint will automatically update the battery replaced sensor and custom actions to be performed when the battery increases.

docs/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Name | Type | Requirement | Default | Description |
1919
enable_autodiscovery | Boolean | Optional | True | If set to true will automatically match devices against the library and create a setup flow within the integrations page. |
2020
show_all_devices | Boolean | Optional | False | If set to true will show all devices in the manual add dropdown, rather than just those with batteries. |
2121
enable_replaced | Boolean | Optional | True | If set to false new devices added to battery notes will have the battery replaced sensor and button disabled. Any devices you have previously added to Battery Notes you will have to disable these sensors manually, which also means you can enable specific sensors of important ones you want to track. |
22-
default_battery_low_threshold (Beta Only)| Int | Optional | 10 | The default threshold where a devices battery_low entity is set to true and the battery_notes_battery_threshold event is fired, can be overriden per device in device configuration. |
23-
battery_increase_threshold (Beta Only) | Int | Optional | 25 | The threshold where the battery_notes_battery_increased event is fired, use this event for battery replaced automations. The threshold is the difference in increase between previous and current battery level. |
24-
hide_battery (Beta Only)| Boolean | Optional | False | Hide the standard battery when adding Battery+. This will not effect existing dashboards, automations etc.|
22+
default_battery_low_threshold | Int | Optional | 10 | The default threshold where a devices battery_low entity is set to true and the battery_notes_battery_threshold event is fired, can be overriden per device in device configuration. |
23+
battery_increase_threshold | Int | Optional | 25 | The threshold where the battery_notes_battery_increased event is fired, use this event for battery replaced automations. The threshold is the difference in increase between previous and current battery level. |
24+
hide_battery | Boolean | Optional | False | Hide the standard battery when adding Battery+. This will not effect existing dashboards, automations etc.|
2525
user_library | String | Optional | | If specified then a user library file will be searched prior to the main library, the user library must be in the same format as the library and placed in the same folder. Only really used for dev purposes. |
2626

2727
# Debug Logging

docs/entities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
You'll get the following entities for each device you have added to battery notes.
44

5-
## Battery+ (Beta Only)
5+
## Battery+
66
`sensor.{{device_name}}_battery_plus`
77

88
An enhanced battery sensor that duplicates the normal battery but with additional attributes specific to battery notes.
@@ -40,7 +40,7 @@ The last time the battery of the device was replaced.
4040

4141
A button to set the battery_last_replaced entity to now.
4242

43-
## Battery Low (Beta Only)
43+
## Battery Low
4444
`sensor.{{device_name}}_battery_low`
4545

4646
A boolean sensor indicating if the battery is low, true when the battery is below the device or global threshold.

docs/events.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
The following events are raised by the integration. These events can be used within automations.
44

5-
## Battery Threshold (Beta Only)
6-
5+
## Battery Threshold
76
`battery_notes_battery_threshold`
87

98
This is fired when any device within Battery Notes has a battery level changed to either below or above the device specific or global threshold.
@@ -70,8 +69,7 @@ action:
7069
mode: queued
7170
```
7271
73-
## Battery Increased (Beta Only)
74-
72+
## Battery Increased
7573
`battery_notes_battery_increased`
7674

7775
This is fired when any device within Battery Notes has a battery level increased above the battery_increase_threshold (default 25%) if not changed within [configuration setting](./configuration.md).

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Battery Notes for Home Assistant
22

33
Integration to add battery notes to a device, with automatic discovery via a growing [battery library](https://github.com/andrew-codechimp/HA-Battery-Notes/blob/main/library.md) for devices.
4-
Track the battery type, when the battery was replaced and also when a battery is low based on device or global thresholds (battery low in beta).
4+
Track the battery type, when the battery was replaced and also when a battery is low based on device or global thresholds.
55

66
*Please :star: this repo on [GitHub](https://github.com/andrew-codechimp/HA-Battery-Notes) if you find it useful*
77
*If you want to show your support please*

0 commit comments

Comments
 (0)