2024-02-25 18:16:08 +01:00
|
|
|
<template>
|
|
|
|
<v-card tile outlined class="card">
|
2024-03-17 16:49:50 +01:00
|
|
|
<v-card-title class="card__title primary" color="primary">
|
2024-02-25 18:16:08 +01:00
|
|
|
<v-icon left class="white--text pr-5 pl-2" size="50">mdi-camera-control</v-icon>
|
|
|
|
Contrôles
|
|
|
|
</v-card-title>
|
|
|
|
<v-container class="text-center">
|
|
|
|
<v-row justify="center">
|
|
|
|
<v-col cols="12" sm="6" md="5" class="mt-4">
|
2024-02-26 21:55:23 +01:00
|
|
|
<mqtt-button width="240" height="130" class="btn xs12 sm6 md3" topic="/display/control" message="previous">
|
2024-02-25 18:16:08 +01:00
|
|
|
<v-icon left size="100">mdi-skip-previous</v-icon>
|
2024-02-26 15:25:49 +01:00
|
|
|
</mqtt-button>
|
2024-02-25 18:16:08 +01:00
|
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" md="5" class="mt-4">
|
2024-02-26 15:30:57 +01:00
|
|
|
<mqtt-button width="240" height="130" class="btn card xs12 sm6 md3" topic="/display/control" message="next">
|
2024-02-25 18:16:08 +01:00
|
|
|
<v-icon left size="100">mdi-skip-next</v-icon>
|
2024-02-26 15:25:49 +01:00
|
|
|
</mqtt-button>
|
2024-02-25 18:16:08 +01:00
|
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" md="5" class="mb-4">
|
2024-02-26 15:30:57 +01:00
|
|
|
<mqtt-button width="240" height="130" class="btn card xs12 sm6 md3" topic="/display/control" message="pause">
|
2024-02-25 18:16:08 +01:00
|
|
|
<v-icon left size="100">mdi-pause</v-icon>
|
2024-02-26 15:25:49 +01:00
|
|
|
</mqtt-button>
|
2024-02-25 18:16:08 +01:00
|
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" md="5" class="mb-4">
|
2024-02-26 15:30:57 +01:00
|
|
|
<mqtt-button width="240" height="130" class="btn card xs12 sm6 md3 " topic="/display/control" message="play">
|
2024-02-25 18:16:08 +01:00
|
|
|
<v-icon left size="100">mdi-play</v-icon>
|
2024-02-26 15:25:49 +01:00
|
|
|
</mqtt-button>
|
2024-02-25 18:16:08 +01:00
|
|
|
</v-col>
|
|
|
|
</v-row>
|
|
|
|
</v-container>
|
|
|
|
</v-card>
|
|
|
|
</template>
|
2024-02-26 15:25:49 +01:00
|
|
|
|
|
|
|
<script setup>
|
2024-02-26 15:30:57 +01:00
|
|
|
import MqttButton from './MqttButton.vue';
|
2024-02-26 15:25:49 +01:00
|
|
|
</script>
|