1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
|
"""Xiaomi Chuangmi camera (chuangmi.camera.ipc009, ipc019) support."""
import enum
import logging
from typing import Any, Dict
import click
from .click_common import EnumType, command, format_output
from .device import Device, DeviceStatus
_LOGGER = logging.getLogger(__name__)
class Direction(enum.Enum):
"""Rotation direction."""
Left = 1
Right = 2
Up = 3
Down = 4
class MotionDetectionSensitivity(enum.IntEnum):
"""Motion detection sensitivity."""
High = 3
Low = 1
class HomeMonitoringMode(enum.IntEnum):
"""Home monitoring mode."""
Off = 0
AllDay = 1
Custom = 2
class NASState(enum.IntEnum):
"""NAS state."""
Off = 2
On = 3
class NASSyncInterval(enum.IntEnum):
"""NAS sync interval."""
Realtime = 300
Hour = 3600
Day = 86400
class NASVideoRetentionTime(enum.IntEnum):
"""NAS video retention time."""
Week = 604800
Month = 2592000
Quarter = 7776000
HalfYear = 15552000
Year = 31104000
CONST_HIGH_SENSITIVITY = [MotionDetectionSensitivity.High] * 32
CONST_LOW_SENSITIVITY = [MotionDetectionSensitivity.Low] * 32
SUPPORTED_MODELS = [
"chuangmi.camera.ipc009",
"chuangmi.camera.ipc019",
"chuangmi.camera.038a2",
]
class CameraStatus(DeviceStatus):
"""Container for status reports from the Xiaomi Chuangmi Camera."""
def __init__(self, data: Dict[str, Any]) -> None:
"""
Request:
["power", "motion_record", "light", "full_color", "flip", "improve_program", "wdr",
"track", "sdcard_status", "watermark", "max_client", "night_mode", "mini_level"]
Response:
["on","on","on","on","off","on","on","off","0","off","0","0","1"]
"""
self.data = data
@property
def power(self) -> bool:
"""Camera power."""
return self.data["power"] == "on"
@property
def motion_record(self) -> bool:
"""Motion record status."""
return self.data["motion_record"] == "on"
@property
def light(self) -> bool:
"""Camera light status."""
return self.data["light"] == "on"
@property
def full_color(self) -> bool:
"""Full color with bad lighting conditions."""
return self.data["full_color"] == "on"
@property
def flip(self) -> bool:
"""Image 180 degrees flip status."""
return self.data["flip"] == "on"
@property
def improve_program(self) -> bool:
"""Customer experience improvement program status."""
return self.data["improve_program"] == "on"
@property
def wdr(self) -> bool:
"""Wide dynamic range status."""
return self.data["wdr"] == "on"
@property
def track(self) -> bool:
"""Tracking status."""
return self.data["track"] == "on"
@property
def watermark(self) -> bool:
"""Apply watermark to video."""
return self.data["watermark"] == "on"
@property
def sdcard_status(self) -> int:
"""SD card status."""
return self.data["sdcard_status"]
@property
def max_client(self) -> int:
"""Unknown."""
return self.data["max_client"]
@property
def night_mode(self) -> int:
"""Night mode."""
return self.data["night_mode"]
@property
def mini_level(self) -> int:
"""Unknown."""
return self.data["mini_level"]
class ChuangmiCamera(Device):
"""Main class representing the Xiaomi Chuangmi Camera."""
_supported_models = SUPPORTED_MODELS
@command(
default_output=format_output(
"",
"Power: {result.power}\n"
"Motion record: {result.motion_record}\n"
"Light: {result.light}\n"
"Full color: {result.full_color}\n"
"Flip: {result.flip}\n"
"Improve program: {result.improve_program}\n"
"Wdr: {result.wdr}\n"
"Track: {result.track}\n"
"SD card status: {result.sdcard_status}\n"
"Watermark: {result.watermark}\n"
"Max client: {result.max_client}\n"
"Night mode: {result.night_mode}\n"
"Mini level: {result.mini_level}\n"
"\n",
)
)
def status(self) -> CameraStatus:
"""Retrieve properties."""
properties = [
"power",
"motion_record",
"light",
"full_color",
"flip",
"improve_program",
"wdr",
"track",
"sdcard_status",
"watermark",
"max_client",
"night_mode",
"mini_level",
]
values = self.get_properties(properties)
return CameraStatus(dict(zip(properties, values)))
@command(default_output=format_output("Power on"))
def on(self):
"""Power on."""
return self.send("set_power", ["on"])
@command(default_output=format_output("Power off"))
def off(self):
"""Power off."""
return self.send("set_power", ["off"])
@command(default_output=format_output("MotionRecord on"))
def motion_record_on(self):
"""Start recording when motion detected."""
return self.send("set_motion_record", ["on"])
@command(default_output=format_output("MotionRecord off"))
def motion_record_off(self):
"""Motion record off, always record video."""
return self.send("set_motion_record", ["off"])
@command(default_output=format_output("MotionRecord stop"))
def motion_record_stop(self):
"""Motion record off, video recording stopped."""
return self.send("set_motion_record", ["stop"])
@command(default_output=format_output("Light on"))
def light_on(self):
"""Light on."""
return self.send("set_light", ["on"])
@command(default_output=format_output("Light off"))
def light_off(self):
"""Light off."""
return self.send("set_light", ["off"])
@command(default_output=format_output("FullColor on"))
def full_color_on(self):
"""Full color on."""
return self.send("set_full_color", ["on"])
@command(default_output=format_output("FullColor off"))
def full_color_off(self):
"""Full color off."""
return self.send("set_full_color", ["off"])
@command(default_output=format_output("Flip on"))
def flip_on(self):
"""Flip image 180 degrees on."""
return self.send("set_flip", ["on"])
@command(default_output=format_output("Flip off"))
def flip_off(self):
"""Flip image 180 degrees off."""
return self.send("set_flip", ["off"])
@command(default_output=format_output("ImproveProgram on"))
def improve_program_on(self):
"""Improve program on."""
return self.send("set_improve_program", ["on"])
@command(default_output=format_output("ImproveProgram off"))
def improve_program_off(self):
"""Improve program off."""
return self.send("set_improve_program", ["off"])
@command(default_output=format_output("Watermark on"))
def watermark_on(self):
"""Watermark on."""
return self.send("set_watermark", ["on"])
@command(default_output=format_output("Watermark off"))
def watermark_off(self):
"""Watermark off."""
return self.send("set_watermark", ["off"])
@command(default_output=format_output("WideDynamicRange on"))
def wdr_on(self):
"""Wide dynamic range on."""
return self.send("set_wdr", ["on"])
@command(default_output=format_output("WideDynamicRange off"))
def wdr_off(self):
"""Wide dynamic range off."""
return self.send("set_wdr", ["off"])
@command(default_output=format_output("NightMode auto"))
def night_mode_auto(self):
"""Auto switch to night mode."""
return self.send("set_night_mode", [0])
@command(default_output=format_output("NightMode off"))
def night_mode_off(self):
"""Night mode off."""
return self.send("set_night_mode", [1])
@command(default_output=format_output("NightMode on"))
def night_mode_on(self):
"""Night mode always on."""
return self.send("set_night_mode", [2])
@command(
click.argument("direction", type=EnumType(Direction)),
default_output=format_output("Rotating to direction '{direction.name}'"),
)
def rotate(self, direction: Direction):
"""Rotate camera to given direction (left, right, up, down)."""
return self.send("set_motor", {"operation": direction.value})
@command()
def alarm(self):
"""Sound a loud alarm for 10 seconds."""
return self.send("alarm_sound")
@command(
click.argument("sensitivity", type=EnumType(MotionDetectionSensitivity)),
default_output=format_output("Setting motion sensitivity '{sensitivity.name}'"),
)
def set_motion_sensitivity(self, sensitivity: MotionDetectionSensitivity):
"""Set motion sensitivity (high, low)."""
return self.send(
"set_motion_region",
CONST_HIGH_SENSITIVITY
if sensitivity == MotionDetectionSensitivity.High
else CONST_LOW_SENSITIVITY,
)
@command(
click.argument("mode", type=EnumType(HomeMonitoringMode)),
click.argument("start-hour", default=10),
click.argument("start-minute", default=0),
click.argument("end-hour", default=17),
click.argument("end-minute", default=0),
click.argument("notify", default=1),
click.argument("interval", default=5),
default_output=format_output("Setting alarm config to '{mode.name}'"),
)
def set_home_monitoring_config(
self,
mode: HomeMonitoringMode = HomeMonitoringMode.AllDay,
start_hour: int = 10,
start_minute: int = 0,
end_hour: int = 17,
end_minute: int = 0,
notify: int = 1,
interval: int = 5,
):
"""Set home monitoring configuration."""
return self.send(
"setAlarmConfig",
[mode, start_hour, start_minute, end_hour, end_minute, notify, interval],
)
@command(default_output=format_output("Clearing NAS directory"))
def clear_nas_dir(self):
"""Clear NAS directory."""
return self.send("nas_clear_dir", [[]])
@command(default_output=format_output("Getting NAS config info"))
def get_nas_config(self):
"""Get NAS config info."""
return self.send("nas_get_config", {})
@command(
click.argument("state", type=EnumType(NASState)),
click.argument("share"),
click.argument("sync-interval", type=EnumType(NASSyncInterval)),
click.argument("video-retention-time", type=EnumType(NASVideoRetentionTime)),
default_output=format_output("Setting NAS config to '{state.name}'"),
)
def set_nas_config(
self,
state: NASState,
share=None,
sync_interval: NASSyncInterval = NASSyncInterval.Realtime,
video_retention_time: NASVideoRetentionTime = NASVideoRetentionTime.Week,
):
"""Set NAS configuration."""
if share is None:
share = {}
return self.send(
"nas_set_config",
{
"state": state,
"sync_interval": sync_interval,
"video_retention_time": video_retention_time,
},
)
|