From f8ab3f599553d3a3f7517f4a69861656692de1ff Mon Sep 17 00:00:00 2001 From: chasenicholl Date: Thu, 2 Nov 2023 14:56:47 -0400 Subject: [PATCH] updated wait function --- src/platform.ts | 46 +++++++++++++++++++++++++++++----------------- src/tempest.ts | 4 ++-- 2 files changed, 31 insertions(+), 19 deletions(-) diff --git a/src/platform.ts b/src/platform.ts index ce865c0..f5dd0a1 100644 --- a/src/platform.ts +++ b/src/platform.ts @@ -61,15 +61,13 @@ export class WeatherFlowTempestPlatform implements DynamicPlatformPlugin { this.tempest_battery_level = 0; this.tempest_device_id = 0; - if (this.config.local_api === false) { - // Make sure the Station ID is the integer ID - if (isNaN(this.config.station_id)) { - log.warn( - 'Station ID is not an Integer! Please make sure you are using the ID integer found here: ' + - 'https://tempestwx.com/station//', - ); - return; - } + // Make sure the Station ID is the integer ID + if (this.config.local_api === false && isNaN(this.config.station_id)) { + log.warn( + 'Station ID is not an Integer! Please make sure you are using the ID integer found here: ' + + 'https://tempestwx.com/station//', + ); + return; } this.api.on('didFinishLaunching', () => { @@ -92,20 +90,15 @@ export class WeatherFlowTempestPlatform implements DynamicPlatformPlugin { } - private initializeBySocket() { + private async initializeBySocket() { try { this.log.info('Using Tempest Local API.'); this.tempestSocket = new TempestSocket(this.log); this.tempestSocket.start(); - // Hold thread for first message. - this.log.info('Waiting for first local broadcast. This could take up to 60 seconds...'); - while (!this.tempestSocket.hasData()) { - continue; - } - this.log.info('Local broadcast recieved.'); - // Set values + // Hold thread for first message and set values + await this.socketDataRecieved(); this.observation_data = this.tempestSocket.getStationCurrentObservation(); this.tempest_battery_level = this.tempestSocket.getBatteryLevel(); @@ -116,11 +109,30 @@ export class WeatherFlowTempestPlatform implements DynamicPlatformPlugin { // Poll every minute for local API this.pollLocalStationCurrentObservation(); + } catch(exception) { this.log.error(exception as string); } } + private socketDataRecieved(): Promise { + + this.log.info('Waiting for first local broadcast. This could take up to 60 seconds...'); + return new Promise((resolve) => { + const socket_interval = setInterval(() => { + if (this.tempestSocket === undefined) { + return; + } + if (this.tempestSocket.hasData()) { + clearInterval(socket_interval); + this.log.info('Initial local broadcast recieved.'); + resolve(); + } + }, 1000); + }); + + } + private initializeByApi() { try { diff --git a/src/tempest.ts b/src/tempest.ts index 853947f..df8c838 100644 --- a/src/tempest.ts +++ b/src/tempest.ts @@ -79,7 +79,7 @@ export class TempestSocket { } - private processReceivedData(data: any) { + private processReceivedData(data) { if (data.type === 'obs_st') { this.setTempestData(data); @@ -87,7 +87,7 @@ export class TempestSocket { } - private setTempestData(data: any): void { + private setTempestData(data): void { const obs = data.obs[0]; // const windLull = (obs[1] !== null) ? obs[1] * 2.2369 : 0;