Home-Assistant-EntityAvailability
Monitor device availability in Home Assistant. Track offline devices, availability history, and degraded states with a custom dashboard card.
File Explorer
- release.yml
- validate.yml
- CODEOWNERS
- dependabot.yml
- FUNDING.yml
- 00_create_entity.png
- 01_create_entity_group.png
- 01b_create_combined_group.png
- 02_monitoring_settings.png
- 03_advanced_settings.png
- 04_battery_entity_mapping.png
- 04b_signal_entity_mapping.png
- 05_sensors.png
- 05b_combined_sensors.png
- 06_sensor_details_attributes.png
- 07_ui_card_configuration_screen.png
- 07b_ui_card_configuration_combined.png
- 08_actions.png
- 09_suppress_entity_action.png
- 10_unsuppress_entity_action.png
- 11_card_side_by_side.png
- 12_dashboard_example.png
- icon.png
- icon.svg
- [email protected]
- logo.png
- logo.svg
- [email protected]
- entity-availability-card.js
- bg.json
- ca.json
- cs.json
- da.json
- de.json
- el.json
- en.json
- es.json
- fi.json
- fr.json
- hr.json
- hu.json
- it.json
- ja.json
- ko.json
- lt.json
- lv.json
- nb.json
- nl.json
- pl.json
- pt.json
- ro.json
- ru.json
- sk.json
- sv.json
- tr.json
- uk.json
- zh-Hans.json
- zh-Hant.json
- __init__.py
- binary_sensor.py
- combined_binary_sensor.py
- combined_sensor.py
- config_flow.py
- const.py
- coordinator.py
- diagnostics.py
- helpers.py
- icon.png
- [email protected]
- manifest.json
- models.py
- sensor.py
- services.py
- services.yaml
- storage.py
- strings.json
- write_dedup.py
- README.md
- smoke.py
- __init__.py
- conftest.py
- test_binary_sensor.py
- test_card_sort.py
- test_collapse.py
- test_combined_binary_sensor.py
- test_combined_sensor.py
- test_config_flow.py
- test_coordinator.py
- test_diagnostics.py
- test_init.py
- test_sensor.py
- test_services.py
- test_storage.py
- test_write_dedup.py
- .gitignore
- AUTOMATION_EXAMPLES.md
- CHANGELOG.md
- conftest.py
- cspell.json
- hacs.json
- info.md
- LICENSE
- pytest.ini
- README.md
- requirements_test.txt
- ruff.toml
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
groups
View Details ▼
groups
Print group memberships for a user.
See also: `groupadd`, `groupdel`, `groupmod`.
groups
Print group memberships for the current user:
groups {{username1 username2 ...}}
Print group memberships for a list of users:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
compact
View Details ▼
compact
Display or change the compression state of files and directories on NTFS partitions.
compact
Display the compression status of files in the current directory:
compact /c {{path\to\file}}
Compress a specific file:
compact /u {{path\to\file}}
Uncompress a specific file:
