Skip to content

Add Hikvision Video Loss binary sensor#172005

Open
ptarjan wants to merge 1 commit into
home-assistant:devfrom
ptarjan:claude/open-issues-review-NN1hl
Open

Add Hikvision Video Loss binary sensor#172005
ptarjan wants to merge 1 commit into
home-assistant:devfrom
ptarjan:claude/open-issues-review-NN1hl

Conversation

@ptarjan
Copy link
Copy Markdown
Contributor

@ptarjan ptarjan commented May 24, 2026

Breaking change

Proposed change

The pyhik library emits a Video Loss sensor type (mapped from the
videoloss key in SENSOR_MAP), but BINARY_SENSOR_DESCRIPTIONS in
hikvision/binary_sensor.py was missing an entry for it. As a result,
users with that event source saw a noisy warning on every setup —

Unknown Hikvision sensor type 'Video Loss', please report this at
https://github.com/home-assistant/core/issues

— and no entity was created.

This PR adds the missing description with device_class=PROBLEM and
EntityCategory.DIAGNOSTIC, matching the pattern of the neighboring
diagnostic entries (Bad Video, Video Mismatch, Recording Failure),
plus the corresponding translation in strings.json.

Type of change

  • Dependency upgrade
  • Bugfix (non-breaking change which fixes an issue)
  • New integration (thank you!)
  • New feature (which adds functionality to an existing integration)
  • Deprecation (breaking change to happen in the future)
  • Breaking change (fix/feature causing existing functionality to break)
  • Code quality improvements to existing code or addition of tests

Additional information

Checklist

  • I understand the code I am submitting and can explain how it works.
  • The code change is tested and works locally.
  • Local tests pass. Your PR cannot be merged unless tests pass
  • There is no commented out code in this PR.
  • I have followed the development checklist
  • I have followed the perfect PR recommendations
  • The code has been formatted using Ruff (ruff format homeassistant tests)
  • Tests have been added to verify that the new code works.
  • Any generated code has been carefully reviewed for correctness and compliance with project standards.

If user exposed functionality or configuration variables are added/changed:

If the code communicates with devices, web services, or third-party tools:

  • The manifest file has all fields filled out correctly.
    Updated and included derived files by running: python3 -m script.hassfest.
  • New or updated dependencies have been added to requirements_all.txt.
    Updated by running python3 -m script.gen_requirements_all.
  • For the updated dependencies a diff between library versions and ideally a link to the changelog/release notes is added to the PR description.

To help with the load of incoming pull requests:

The pyhik library emits a "Video Loss" sensor type (mapped from
`videoloss`), but it was missing from `BINARY_SENSOR_DESCRIPTIONS`, so
users with that event source saw a noisy "Unknown Hikvision sensor type
'Video Loss'" warning and no entity. Reported in home-assistant#165422.

https://claude.ai/code/session_01DuwvgknKWrDWqtYDnWmCHP
Copilot AI review requested due to automatic review settings May 24, 2026 00:36
@home-assistant
Copy link
Copy Markdown
Contributor

Hey there @mezz64, mind taking a look at this pull request as it has been labeled with an integration (hikvision) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of hikvision can trigger bot actions by commenting:

  • @home-assistant close Closes the pull request.
  • @home-assistant mark-draft Mark the pull request as draft.
  • @home-assistant ready-for-review Remove the draft status from the pull request.
  • @home-assistant rename Awesome new title Renames the pull request.
  • @home-assistant reopen Reopen the pull request.
  • @home-assistant unassign hikvision Removes the current integration label and assignees on the pull request, add the integration domain after the command.
  • @home-assistant update-branch Update the pull request branch with the base branch.
  • @home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component, problem in config, problem in device, feature-request) to the pull request.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component, problem in config, problem in device, feature-request) on the pull request.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Adds support for a new Hikvision diagnostic binary sensor representing “Video loss”.

Changes:

  • Introduces a new video_loss translation string for the Hikvision integration.
  • Registers a new BinarySensorEntityDescription mapping for the “Video Loss” event as a diagnostic/problem entity.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
homeassistant/components/hikvision/strings.json Adds the video_loss translation key to display a localized sensor name.
homeassistant/components/hikvision/binary_sensor.py Adds a new binary sensor description for the “Video Loss” event.

Comment on lines +106 to +111
"Video Loss": BinarySensorEntityDescription(
key="video_loss",
translation_key="video_loss",
device_class=BinarySensorDeviceClass.PROBLEM,
entity_category=EntityCategory.DIAGNOSTIC,
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

A few errors relate to Hikvision integration

3 participants