Remove unused "digital" attribute from camera state.
This commit is contained in:
parent
0cff7c5794
commit
6fcb85bca2
|
@ -9,8 +9,7 @@ class Camera {
|
|||
constructor(arduino, cfg, ui, filmout, second = false) {
|
||||
this.state = {
|
||||
pos: 0,
|
||||
dir: true,
|
||||
digital: false
|
||||
dir: true
|
||||
};
|
||||
this.arduino = null;
|
||||
this.intval = null;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -9,8 +9,7 @@ class Camera {
|
|||
constructor(arduino, cfg, ui, filmout, second = false) {
|
||||
this.state = {
|
||||
pos: 0,
|
||||
dir: true,
|
||||
digital: false
|
||||
dir: true
|
||||
};
|
||||
this.arduino = null;
|
||||
this.intval = null;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -9,8 +9,7 @@ class Camera {
|
|||
constructor(arduino, cfg, ui, filmout, second = false) {
|
||||
this.state = {
|
||||
pos: 0,
|
||||
dir: true,
|
||||
digital: false
|
||||
dir: true
|
||||
};
|
||||
this.arduino = null;
|
||||
this.intval = null;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -8,8 +8,7 @@ import { delay } from 'delay';
|
|||
class Camera {
|
||||
private state : any = {
|
||||
pos : 0,
|
||||
dir : true,
|
||||
digital : false
|
||||
dir : true
|
||||
};
|
||||
private arduino : Arduino = null;
|
||||
private intval : any = null;
|
||||
|
|
Loading…
Reference in New Issue