We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b2ad6c commit a226efbCopy full SHA for a226efb
src/components/Control.vue
@@ -156,6 +156,21 @@ export default {
156
157
}.bind(this))
158
},
159
+ play_note(){
160
+ let CBv1 = this.CBv1
161
+ let axios = this.$axios;
162
+ axios.get(CBv1 + '/bot', { params: { 'cmd' : 'play_note'}})
163
+ .then(function(response){
164
+ this.ttsBtnEnabled = false
165
+ this.ttsdialog = false
166
+ this.snackText = 'Nota in riproduzione'
167
+ this.snackbar = true
168
+ setTimeout(function() {
169
+ this.ttsBtnEnabled = true
170
+ }.bind(this), 800)
171
+ }.bind(this))
172
+ },
173
+
174
videoHandler() {
175
if (this.videoBtn.action == 'record')
176
this.recordVideo()
0 commit comments