No known key found for this signature in database
GPG Key ID: 86A4D290ED03FAB4
1 changed files with
2 additions and
2 deletions
-
client/src/class/ClientService.ts
|
|
@ -13,12 +13,12 @@ export class ClientService { |
|
|
|
tempService(): void { |
|
|
|
setInterval(() => { |
|
|
|
this.clientSocket.sendTemp(this.sensor.takeMeasure, 'temperature'); |
|
|
|
}, 3000); |
|
|
|
}, 1 * 60000); |
|
|
|
} |
|
|
|
|
|
|
|
tempTestService(): void { |
|
|
|
setInterval(() => { |
|
|
|
this.clientSocket.sendTemp(this.sensor.takeTestMeasure, 'temperature'); |
|
|
|
}, 3000); |
|
|
|
}, 1 * 60000); |
|
|
|
} |
|
|
|
} |
|
|
|