Skip to content

Commit 862ef4f

Browse files
committed
Don't round lux after conversion
1 parent 0713d48 commit 862ef4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/WH65.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export class WH65 extends ThermoHygroSensor {
199199
this.updateName(this.solarRadiation, `Solar Radiation: ${wm2} W/m²`);
200200
this.solarRadiation.updateCharacteristic(
201201
this.platform.Characteristic.CurrentAmbientLightLevel,
202-
Math.round(lux));
202+
lux);
203203
this.updateStatusLowBattery(this.solarRadiation, lowBattery);
204204
}
205205

0 commit comments

Comments
 (0)