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

20 lines
391 B
JavaScript

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