Home-Assistant-EntityAvailability
Monitor device availability in Home Assistant. Track offline devices, availability history, and degraded states with a custom dashboard card.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git checkout
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
groups
사용자의 그룹 멤버십을 출력.
관련 항목: `groupadd`, `groupdel`, `groupmod`.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/groups-invocation.html>.
groups
현재 사용자의 그룹 멤버십을 출력:
groups {{username1 username2 ...}}
사용자 목록의 그룹 구성원을 출력:
pip install
설명 보기 ▼
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
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
compact
설명 보기 ▼
compact
NTFS 파티션의 파일 및 디렉터리 압축 상태를 확인하거나 변경.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/compact>.
compact
현재 디렉터리의 파일 압축 상태 표시:
compact /c {{path\to\file}}
지정한 파일 압축:
compact /u {{path\to\file}}
지정한 파일 압축 해제:
