You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
718 B
25 lines
718 B
8 months ago
|
"use strict";
|
||
|
|
||
|
/**
|
||
|
* @param {Egg.Application} app - egg application
|
||
|
*/
|
||
|
module.exports = (app) => {
|
||
|
const { router, controller } = app;
|
||
|
//获取权限
|
||
|
router.get("/", controller.home.index);
|
||
|
//旋转
|
||
|
router.get("/continuous", controller.haikangweishi.continuous);
|
||
|
//到达预置点
|
||
|
router.get("/goto", controller.haikangweishi.goto);
|
||
|
//设置预置点
|
||
|
router.get("/presets", controller.haikangweishi.presets);
|
||
|
//删除预置点
|
||
|
router.get("/delPresets", controller.haikangweishi.delPresets);
|
||
|
//调焦
|
||
|
router.get("/zoom", controller.haikangweishi.zoom);
|
||
|
//聚焦
|
||
|
router.get("/focus", controller.haikangweishi.focus);
|
||
|
//曝光度
|
||
|
router.get("/iris", controller.haikangweishi.iris);
|
||
|
};
|