platypush/platypush/backend/http/static/js/plugins/camera.ir.mlx90640/index.js

20 lines
391 B
JavaScript
Raw Normal View History

Vue.component('camera-ir-mlx90640', {
template: '#tmpl-camera-ir-mlx90640',
2020-09-19 00:50:22 +02:00
mixins: [cameraMixin],
methods: {
2020-09-19 00:50:22 +02:00
startStreaming: function() {
this._startStreaming('ir.mlx90640');
},
2020-09-19 00:50:22 +02:00
capture: function() {
this._capture('ir.mlx90640');
},
},
mounted: function() {
2020-09-19 00:50:22 +02:00
this.attrs.resolution = [32, 24];
}
});