Skip to content

Commit 52140fb

Browse files
committed
機能追加:
- IR-LEDのon/off/autoの切り替えボタンをWebUIに追加
1 parent 202c139 commit 52140fb

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

web/source/vue/Setting.vue

+31-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@
2929
<div v-if="isSwing" class="image-frame-inner2">
3030
<ElSlider class="pan-slider" v-model="pan" :min="0" :max="355" :show-input-controls="false" @change="Move" @input="Move" />
3131
</div>
32+
<div v-if="!rebooting && posValid" class="image-frame-inner3">
33+
<i class="el-icon-moon ir-led" />
34+
<ElButtonGroup>
35+
<ElButton size="mini" type="primary" @click="IrLED('on')">
36+
on
37+
</ElButton>
38+
<ElButton size="mini" type="primary" @click="IrLED('auto')">
39+
auto
40+
</ElButton>
41+
<ElButton size="mini" type="primary" @click="IrLED('off')">
42+
off
43+
</ElButton>
44+
</ElButtonGroup>
45+
</div>
3246
</div>
3347

3448
<h3>基本設定</h3>
@@ -128,7 +142,7 @@
128142
<script>
129143
import axios from 'axios';
130144
import md5 from 'js-md5';
131-
import { Tooltip, Drawer, Slider } from 'element-ui';
145+
import { Tooltip, Drawer, Slider, ButtonGroup } from 'element-ui';
132146
import SettingSwitch from './SettingSwitch.vue';
133147
import SettingInput from './SettingInput.vue';
134148
import SettingButton from './SettingButton.vue';
@@ -139,13 +153,15 @@
139153
import 'element-ui/lib/theme-chalk/tooltip.css';
140154
import 'element-ui/lib/theme-chalk/drawer.css';
141155
import 'element-ui/lib/theme-chalk/slider.css';
156+
import 'element-ui/lib/theme-chalk/button-group.css';
142157
143158
export default {
144159
name: 'ATOMCamSetting',
145160
components: {
146161
ElTooltip: Tooltip,
147162
ElDrawer: Drawer,
148163
ElSlider: Slider,
164+
ElButtonGroup: ButtonGroup,
149165
SettingSwitch,
150166
SettingInput,
151167
SettingButton,
@@ -421,6 +437,9 @@
421437
this.Exec('posrec');
422438
}, 3000);
423439
},
440+
IrLED(mode) {
441+
this.Exec(`irled ${mode}`, 'socket');
442+
},
424443
async GetPosInterval() {
425444
if(!this.moving) {
426445
const status = (await axios.get('./cgi-bin/cmd.cgi?name=move').catch(err => {
@@ -715,6 +734,17 @@
715734
display: flex;
716735
}
717736
737+
.image-frame-inner3 {
738+
justify-content: flex-end;
739+
display: flex;
740+
margin: 5px 0 5px 0;
741+
}
742+
743+
.ir-led {
744+
font-size: 24px;
745+
color: gray;
746+
}
747+
718748
.still-image {
719749
width: calc(100% - 36px);
720750
}

0 commit comments

Comments
 (0)