mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-29 12:34:21 +02:00
Simplify DateTimeType handling for Foobot
Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
+1
-4
@@ -15,8 +15,6 @@ package org.openhab.binding.foobot.internal.handler;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.Duration;
|
||||
import java.time.Instant;
|
||||
import java.time.ZoneId;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.Map;
|
||||
|
||||
import javax.measure.Unit;
|
||||
@@ -201,8 +199,7 @@ public class FoobotDeviceHandler extends BaseThingHandler {
|
||||
} else {
|
||||
final Unit<?> stateUnit = sensor.getUnit(unit);
|
||||
if (sensor == FoobotSensor.TIME) {
|
||||
return new DateTimeType(
|
||||
ZonedDateTime.ofInstant(Instant.ofEpochSecond(Long.parseLong(value)), ZoneId.systemDefault()));
|
||||
return new DateTimeType(Instant.ofEpochSecond(Long.parseLong(value)));
|
||||
} else if (stateUnit == null) {
|
||||
return new DecimalType(value);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user