Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moving camera.py to dyson_local so it can be configured #52

Merged
merged 1 commit into from
Jul 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
from homeassistant.core import HomeAssistant
from homeassistant.config_entries import ConfigEntry
from homeassistant.components.camera import Camera
from ..vendor.libdyson.const import DEVICE_TYPE_360_EYE, DEVICE_TYPE_360_HEURIST
from ..vendor.libdyson.cloud.cloud_360_eye import DysonCloud360Eye
from ..vendor.libdyson.cloud import DysonDeviceInfo
from custom_components.dyson_local.vendor.libdyson.const import DEVICE_TYPE_360_EYE, DEVICE_TYPE_360_HEURIST
from custom_components.dyson_local.vendor.libdyson.cloud.cloud_360_eye import DysonCloud360Eye
from custom_components.dyson_local.vendor.libdyson.cloud import DysonDeviceInfo
from datetime import timedelta

from .const import DATA_ACCOUNT, DATA_DEVICES, DOMAIN
from custom_components.dyson_local.cloud.const import DATA_ACCOUNT, DATA_DEVICES, DOMAIN

_LOGGER = logging.getLogger(__name__)

Expand Down