waiting for status change
This commit is contained in:
parent
e162f1758c
commit
a42730128b
@ -53,12 +53,18 @@ export class StatusListComponent implements OnInit {
|
||||
} else {
|
||||
newStatus = status.splice(0, i);
|
||||
}
|
||||
const first = new Date(newStatus[0].time).getTime();
|
||||
const last = new Date(newStatus[newStatus.length - 1].time).getTime();
|
||||
const first = Date.now(); //new Date(newStatus[0].time).getTime();
|
||||
const last = new Date(newStatus[0].time).getTime(); //new Date(newStatus[newStatus.length - 1].time).getTime();
|
||||
const time = first - last;
|
||||
//console.log(this);
|
||||
this.time = time / 1000;
|
||||
//console.log(this.time);
|
||||
if (
|
||||
this.activeDevice.lastStatus == "0" &&
|
||||
this.time < 10 &&
|
||||
newStatus[1].value == "1"
|
||||
) {
|
||||
this.activeDevice.lastStatus = "1";
|
||||
}
|
||||
console.log(this.time);
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user