/**
 * color: 颜色
 * text: 文字
 * icon: 展示的图标
 */

// 相机的状态
export const CameraStatusEnum = {
  "-1": {
    color: "",
    text: "未启用",
  },
  0: {
    color: "",
    text: "正常",
  },
  1: {
    color: "",
    text: "网络中断",
  },
  2: {
    color: "",
    text: "网络正常无图像",
  },
  3: {
    color: "",
    text: "有图像, 图像存在问题",
  },
};

// 摄像机方向
export const CameraDirectionEnum = {
  0: {
    text: "上行",
  },
  1: {
    text: "下行",
  },
  2: {
    text: "上下行 (双向)",
  },
};

// 摄像 是否可控 是否有云台控制 0 有(球机) 1 ⽆(枪机)
export const CameraControlTypeEnum = {
  0: {
    text: "球机",
  },
  1: {
    text: "枪机",
  },
};