diff --git a/src/main/java/com/litoralregas/backend/acquisition/block/BlockPollingService.java b/src/main/java/com/litoralregas/backend/acquisition/block/BlockPollingService.java index e93275f..2bb5440 100644 --- a/src/main/java/com/litoralregas/backend/acquisition/block/BlockPollingService.java +++ b/src/main/java/com/litoralregas/backend/acquisition/block/BlockPollingService.java @@ -76,7 +76,9 @@ public class BlockPollingService { telemetryCache.put(new TelemetrySnapshot( sensor.getId(), + sensor.getKey(), sensor.getName(), + sensor.getCategory(), sensor.getModbusAddress(), sensor.getBitOffset(), rawValue, diff --git a/src/main/java/com/litoralregas/backend/acquisition/scheduler/AcquisitionSchedulerService.java b/src/main/java/com/litoralregas/backend/acquisition/scheduler/AcquisitionSchedulerService.java index 36b8160..d1e256f 100644 --- a/src/main/java/com/litoralregas/backend/acquisition/scheduler/AcquisitionSchedulerService.java +++ b/src/main/java/com/litoralregas/backend/acquisition/scheduler/AcquisitionSchedulerService.java @@ -5,6 +5,9 @@ import com.litoralregas.backend.acquisition.block.BlockPollingService; import com.litoralregas.backend.dashboard.DashboardOverviewResponse; import com.litoralregas.backend.dashboard.DashboardOverviewService; import com.litoralregas.backend.historian.HistorianService; +import com.litoralregas.backend.modules.climate.ClimateModuleResponse; +import com.litoralregas.backend.modules.climate.ClimateModuleService; +import com.litoralregas.backend.modules.climate.websocket.ClimateModuleWebSocketPublisher; import com.litoralregas.backend.modules.meteo.MeteoModuleResponse; import com.litoralregas.backend.modules.meteo.websocket.MeteoModuleWebSocketPublisher; import com.litoralregas.backend.websocket.dashboard.DashboardOverviewWebSocketPublisher; @@ -35,6 +38,9 @@ public class AcquisitionSchedulerService { private final AtomicBoolean polling = new AtomicBoolean(false); + private final ClimateModuleWebSocketPublisher climateModuleWebSocketPublisher; + private final ClimateModuleService climateModuleService; + public AcquisitionSchedulerService( BlockPollingService blockPollingService, AcquisitionSchedulerProperties properties, @@ -44,7 +50,9 @@ public class AcquisitionSchedulerService { MeteoModuleWebSocketPublisher meteoModuleWebSocketPublisher, HistorianService historianService, DashboardOverviewService dashboardOverviewService, - MeteoModuleService meteoModuleService + MeteoModuleService meteoModuleService, + ClimateModuleWebSocketPublisher climateModuleWebSocketPublisher, + ClimateModuleService climateModuleService ) { this.blockPollingService = blockPollingService; this.properties = properties; @@ -55,6 +63,8 @@ public class AcquisitionSchedulerService { this.historianService = historianService; this.dashboardOverviewService = dashboardOverviewService; this.meteoModuleService = meteoModuleService; + this.climateModuleWebSocketPublisher = climateModuleWebSocketPublisher; + this.climateModuleService = climateModuleService; } @PostConstruct @@ -94,14 +104,31 @@ public class AcquisitionSchedulerService { telemetryWebSocketPublisher.publishLatestTelemetry(); - DashboardOverviewResponse overview = dashboardOverviewService.getOverview(); - historianService.recordDashboardOverview(overview); + DashboardOverviewResponse overview = + dashboardOverviewService.getOverview(); + dashboardOverviewWebSocketPublisher.publishOverview(overview); - MeteoModuleResponse meteo = meteoModuleService.getLatest(); - historianService.recordModuleSensors("meteo", meteo.sensors(), meteo.timestamp()); + MeteoModuleResponse meteo = + meteoModuleService.getLatest(); + + historianService.recordModuleSensors( + meteo.sensors(), + meteo.timestamp() + ); + meteoModuleWebSocketPublisher.publishLatest(meteo); + ClimateModuleResponse climate = + climateModuleService.getLatest(); + + historianService.recordModuleSensors( + climate.sensors(), + climate.timestamp() + ); + + climateModuleWebSocketPublisher.publishLatest(climate); + } catch (Exception exception) { runtimeStatus.setLastError(exception.getMessage()); diff --git a/src/main/java/com/litoralregas/backend/acquisition/telemetry/SensorTelemetryReader.java b/src/main/java/com/litoralregas/backend/acquisition/telemetry/SensorTelemetryReader.java index 5f9d971..3b8b82e 100644 --- a/src/main/java/com/litoralregas/backend/acquisition/telemetry/SensorTelemetryReader.java +++ b/src/main/java/com/litoralregas/backend/acquisition/telemetry/SensorTelemetryReader.java @@ -1,7 +1,5 @@ package com.litoralregas.backend.acquisition.telemetry; -import com.litoralregas.backend.acquisition.telemetry.TelemetryCache; -import com.litoralregas.backend.acquisition.telemetry.TelemetrySnapshot; import com.litoralregas.backend.modbus.LrModbusClient; import com.litoralregas.backend.modbus.ModbusReadResult; import com.litoralregas.backend.modbus.ModbusUnit; @@ -32,11 +30,19 @@ public class SensorTelemetryReader { } public TelemetrySnapshot readSensor(Integer sensorId) { - SensorDefinition sensorDefinition = sensorDefinitionRepository.findById(sensorId) - .orElseThrow(() -> new EntityNotFoundException("Sensor definition not found: " + sensorId)); + + SensorDefinition sensorDefinition = + sensorDefinitionRepository.findById(sensorId) + .orElseThrow(() -> + new EntityNotFoundException( + "Sensor definition not found: " + sensorId + ) + ); if (sensorDefinition.getSourceType() != SensorSourceType.MODBUS) { - throw new IllegalArgumentException("Only MODBUS sensors can be read directly."); + throw new IllegalArgumentException( + "Only MODBUS sensors can be read directly." + ); } ModbusReadResult result = modbusClient.readInputRegisters( @@ -46,11 +52,17 @@ public class SensorTelemetryReader { ); Integer rawValue = result.values().getFirst(); - Object value = convertValue(sensorDefinition, rawValue); + + Object value = convertValue( + sensorDefinition, + rawValue + ); TelemetrySnapshot snapshot = new TelemetrySnapshot( sensorDefinition.getId(), + sensorDefinition.getKey(), sensorDefinition.getName(), + sensorDefinition.getCategory(), sensorDefinition.getModbusAddress(), sensorDefinition.getBitOffset(), rawValue, @@ -64,19 +76,30 @@ public class SensorTelemetryReader { return snapshot; } - private Object convertValue(SensorDefinition sensorDefinition, Integer rawValue) { + private Object convertValue( + SensorDefinition sensorDefinition, + Integer rawValue + ) { + if (sensorDefinition.getValueType() == SensorValueType.BOOLEAN) { + Integer bitOffset = sensorDefinition.getBitOffset(); if (bitOffset == null) { - throw new IllegalStateException("BOOLEAN sensor requires bitOffset."); + throw new IllegalStateException( + "BOOLEAN sensor requires bitOffset." + ); } return ((rawValue >> bitOffset) & 1) == 1; } if (sensorDefinition.getValueType() == SensorValueType.DECIMAL) { - return rawValue / Math.pow(10, sensorDefinition.getDecimalPlaces()); + + return rawValue / Math.pow( + 10, + sensorDefinition.getDecimalPlaces() + ); } return rawValue; diff --git a/src/main/java/com/litoralregas/backend/acquisition/telemetry/TelemetrySnapshot.java b/src/main/java/com/litoralregas/backend/acquisition/telemetry/TelemetrySnapshot.java index 7b1118d..60a5c26 100644 --- a/src/main/java/com/litoralregas/backend/acquisition/telemetry/TelemetrySnapshot.java +++ b/src/main/java/com/litoralregas/backend/acquisition/telemetry/TelemetrySnapshot.java @@ -4,7 +4,9 @@ import java.time.Instant; public record TelemetrySnapshot( Integer sensorId, + String key, String name, + String category, Integer modbusAddress, Integer bitOffset, Integer rawValue, diff --git a/src/main/java/com/litoralregas/backend/historian/HistorianService.java b/src/main/java/com/litoralregas/backend/historian/HistorianService.java index 90f7b1a..b7815fe 100644 --- a/src/main/java/com/litoralregas/backend/historian/HistorianService.java +++ b/src/main/java/com/litoralregas/backend/historian/HistorianService.java @@ -1,6 +1,5 @@ package com.litoralregas.backend.historian; -import com.litoralregas.backend.dashboard.DashboardOverviewResponse; import com.litoralregas.backend.modules.shared.ModuleSensorResponse; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -13,78 +12,12 @@ import java.util.Map; @Service public class HistorianService { - private static final String SOURCE_DASHBOARD_OVERVIEW = "DASHBOARD_OVERVIEW"; - private final HistorianSampleRepository historianSampleRepository; - + private static final String SOURCE_MODULE = "MODULE"; public HistorianService(HistorianSampleRepository historianSampleRepository) { this.historianSampleRepository = historianSampleRepository; } - @Transactional - public void recordDashboardOverview(DashboardOverviewResponse overview) { - System.out.println("Historian recording overview at " + overview.timestamp()); - Instant sampledAt = overview.timestamp(); - - System.out.println("Meteo object = " + overview.meteo()); - - if (overview.climate() != null && !overview.climate().zones().isEmpty()) { - System.out.println( - "Zone 1 temp = " + - overview.climate().zones().get(0).temperature() - ); - } - recordNumber(sampledAt, "meteo.exterior_temperature", overview.meteo().exteriorTemperature(), "°C"); - recordNumber(sampledAt, "meteo.exterior_humidity", overview.meteo().exteriorHumidity(), "%"); - recordNumber(sampledAt, "meteo.radiation", overview.meteo().radiation(), "W/m²"); - recordNumber(sampledAt, "meteo.wind_speed", overview.meteo().windSpeed(), "Km/h"); - recordNumber(sampledAt, "meteo.wind_direction", overview.meteo().windDirection(), "°"); - recordBoolean(sampledAt, "meteo.raining", overview.meteo().raining()); - - if (overview.climate() != null && overview.climate().zones() != null) { - for (DashboardOverviewResponse.ClimateZoneOverview zone : overview.climate().zones()) { - String prefix = "climate.zone_" + zone.zoneNumber(); - - recordNumber(sampledAt, prefix + ".temperature", zone.temperature(), "°C"); - recordNumber(sampledAt, prefix + ".humidity", zone.humidity(), "%"); - recordNumber(sampledAt, prefix + ".co2", zone.co2(), "ppm"); - - recordBoolean(sampledAt, prefix + ".fans_on", zone.fansOn()); - recordBoolean(sampledAt, prefix + ".extractors_on", zone.extractorsOn()); - - recordNumber(sampledAt, prefix + ".zenital_left_percent", zone.zenitalLeftPercent(), "%"); - recordNumber(sampledAt, prefix + ".zenital_right_percent", zone.zenitalRightPercent(), "%"); - recordNumber(sampledAt, prefix + ".lateral_left_percent", zone.lateralLeftPercent(), "%"); - recordNumber(sampledAt, prefix + ".lateral_right_percent", zone.lateralRightPercent(), "%"); - } - } - - if (overview.irrigation() != null) { - recordNumber( - sampledAt, - "irrigation.active_valve_count", - overview.irrigation().activeValveCount(), - "valves" - ); - - recordNumber( - sampledAt, - "irrigation.active_pump_count", - overview.irrigation().activePumpCount(), - "pumps" - ); - } - - if (overview.lighting() != null) { - recordNumber( - sampledAt, - "lighting.active_sector_count", - overview.lighting().activeSectorCount(), - "sectors" - ); - } - } - @Transactional(readOnly = true) public List getSeries(String keyName, Instant from, Instant to) { return historianSampleRepository @@ -126,7 +59,7 @@ public class HistorianService { sample.setKeyName(keyName); sample.setNumericValue(value.doubleValue()); sample.setUnit(unit); - sample.setSource(SOURCE_DASHBOARD_OVERVIEW); + sample.setSource(SOURCE_MODULE); System.out.println("Saving historian sample: " + keyName + " = " + value); historianSampleRepository.save(sample); } @@ -138,7 +71,7 @@ public class HistorianService { sample.setSampledAt(sampledAt); sample.setKeyName(keyName); sample.setBooleanValue(value); - sample.setSource(SOURCE_DASHBOARD_OVERVIEW); + sample.setSource(SOURCE_MODULE); historianSampleRepository.save(sample); } @@ -154,13 +87,12 @@ public class HistorianService { @Transactional public void recordModuleSensors( - String moduleName, List sensors, Instant sampledAt ) { for (ModuleSensorResponse sensor : sensors) { - String keyName = moduleName + "." + sensor.key(); + String key = sensor.key(); Object value = sensor.value(); @@ -168,7 +100,7 @@ public class HistorianService { recordNumber( sampledAt, - keyName, + key, numberValue, sensor.unit() ); @@ -177,7 +109,7 @@ public class HistorianService { recordBoolean( sampledAt, - keyName, + key, booleanValue ); } diff --git a/src/main/java/com/litoralregas/backend/modules/climate/ClimateModuleService.java b/src/main/java/com/litoralregas/backend/modules/climate/ClimateModuleService.java index c83bcfa..7072c75 100644 --- a/src/main/java/com/litoralregas/backend/modules/climate/ClimateModuleService.java +++ b/src/main/java/com/litoralregas/backend/modules/climate/ClimateModuleService.java @@ -81,6 +81,7 @@ public class ClimateModuleService { private ModuleSensorResponse toResponse(TelemetrySnapshot snapshot) { return new ModuleSensorResponse( snapshot.sensorId(), + snapshot.key(), snapshot.name(), buildKey(snapshot.name()), snapshot.value(), diff --git a/src/main/java/com/litoralregas/backend/modules/climate/websocket/ClimateModuleWebSocketPublisher.java b/src/main/java/com/litoralregas/backend/modules/climate/websocket/ClimateModuleWebSocketPublisher.java index 54c9d00..f11adda 100644 --- a/src/main/java/com/litoralregas/backend/modules/climate/websocket/ClimateModuleWebSocketPublisher.java +++ b/src/main/java/com/litoralregas/backend/modules/climate/websocket/ClimateModuleWebSocketPublisher.java @@ -1,4 +1,24 @@ package com.litoralregas.backend.modules.climate.websocket; +import com.litoralregas.backend.modules.climate.ClimateModuleResponse; +import org.springframework.messaging.simp.SimpMessagingTemplate; +import org.springframework.stereotype.Service; + +@Service public class ClimateModuleWebSocketPublisher { -} + + private static final String DESTINATION = + "/topic/modules/climate/latest"; + + private final SimpMessagingTemplate messagingTemplate; + + public ClimateModuleWebSocketPublisher( + SimpMessagingTemplate messagingTemplate + ) { + this.messagingTemplate = messagingTemplate; + } + + public void publishLatest(ClimateModuleResponse response) { + messagingTemplate.convertAndSend(DESTINATION, response); + } +} \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/modules/meteo/MeteoModuleService.java b/src/main/java/com/litoralregas/backend/modules/meteo/MeteoModuleService.java index d2b7ae5..684875e 100644 --- a/src/main/java/com/litoralregas/backend/modules/meteo/MeteoModuleService.java +++ b/src/main/java/com/litoralregas/backend/modules/meteo/MeteoModuleService.java @@ -45,6 +45,7 @@ public class MeteoModuleService { private ModuleSensorResponse toResponse(TelemetrySnapshot snapshot) { return new ModuleSensorResponse( snapshot.sensorId(), + snapshot.key(), snapshot.name(), buildKey(snapshot.name()), snapshot.value(), diff --git a/src/main/java/com/litoralregas/backend/modules/shared/ModuleSensorResponse.java b/src/main/java/com/litoralregas/backend/modules/shared/ModuleSensorResponse.java index 2af1b28..56f45e5 100644 --- a/src/main/java/com/litoralregas/backend/modules/shared/ModuleSensorResponse.java +++ b/src/main/java/com/litoralregas/backend/modules/shared/ModuleSensorResponse.java @@ -4,8 +4,9 @@ import java.time.Instant; public record ModuleSensorResponse( Integer sensorId, - String name, String key, + String name, + String category, Object value, String unit, Integer modbusAddress, diff --git a/src/main/java/com/litoralregas/backend/sensor/SensorDefinition.java b/src/main/java/com/litoralregas/backend/sensor/SensorDefinition.java index 8032b62..fa4480d 100644 --- a/src/main/java/com/litoralregas/backend/sensor/SensorDefinition.java +++ b/src/main/java/com/litoralregas/backend/sensor/SensorDefinition.java @@ -1,6 +1,7 @@ package com.litoralregas.backend.sensor; import jakarta.persistence.*; + import java.time.Instant; @Entity @@ -11,10 +12,16 @@ public class SensorDefinition { @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id; + @Column(unique = true, nullable = false) + private String key; + @Column(nullable = false) private String name; - @Column(name = "modbus_address", nullable = false) + @Column(nullable = false) + private String category; + + @Column(name = "modbus_address") private Integer modbusAddress; @Column(name = "bit_offset") @@ -29,9 +36,6 @@ public class SensorDefinition { @Column(name = "decimal_places", nullable = false) private Integer decimalPlaces; - @Column(nullable = false) - private String category; - @Enumerated(EnumType.STRING) @Column(name = "source_type", nullable = false) private SensorSourceType sourceType; @@ -49,24 +53,26 @@ public class SensorDefinition { } public SensorDefinition( + String key, String name, + String category, Integer modbusAddress, Integer bitOffset, SensorValueType valueType, String unit, Integer decimalPlaces, - String category, SensorSourceType sourceType, Integer pollingIntervalSeconds, Boolean enabled ) { + this.key = key; this.name = name; + this.category = category; this.modbusAddress = modbusAddress; this.bitOffset = bitOffset; this.valueType = valueType; this.unit = unit; this.decimalPlaces = decimalPlaces; - this.category = category; this.sourceType = sourceType; this.pollingIntervalSeconds = pollingIntervalSeconds; this.enabled = enabled; @@ -77,6 +83,14 @@ public class SensorDefinition { return id; } + public String getKey() { + return key; + } + + public void setKey(String key) { + this.key = key; + } + public String getName() { return name; } @@ -85,6 +99,14 @@ public class SensorDefinition { this.name = name; } + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + public Integer getModbusAddress() { return modbusAddress; } @@ -125,14 +147,6 @@ public class SensorDefinition { this.decimalPlaces = decimalPlaces; } - public String getCategory() { - return category; - } - - public void setCategory(String category) { - this.category = category; - } - public SensorSourceType getSourceType() { return sourceType; } diff --git a/src/main/java/com/litoralregas/backend/sensor/dto/SensorDefinitionImportRow.java b/src/main/java/com/litoralregas/backend/sensor/dto/SensorDefinitionImportRow.java deleted file mode 100644 index 432fbfb..0000000 --- a/src/main/java/com/litoralregas/backend/sensor/dto/SensorDefinitionImportRow.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.litoralregas.backend.sensor.dto; - -import com.litoralregas.backend.sensor.SensorSourceType; -import com.litoralregas.backend.sensor.SensorValueType; - -public record SensorDefinitionImportRow( - String name, - Integer modbusAddress, - Integer bitOffset, - SensorValueType valueType, - String unit, - Integer decimalPlaces, - String category, - SensorSourceType sourceType -) { -} \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/ModbusConfig.java b/src/main/java/com/litoralregas/backend/sensor/importer/ModbusConfig.java new file mode 100644 index 0000000..d6af6dc --- /dev/null +++ b/src/main/java/com/litoralregas/backend/sensor/importer/ModbusConfig.java @@ -0,0 +1,7 @@ +package com.litoralregas.backend.sensor.importer; + +public record ModbusConfig( + Integer address, + Integer bitOffset +) { +} \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionConfig.java b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionConfig.java new file mode 100644 index 0000000..4695c57 --- /dev/null +++ b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionConfig.java @@ -0,0 +1,14 @@ +package com.litoralregas.backend.sensor.importer; + +public record SensorDefinitionConfig( + String key, + String name, + String category, + ModbusConfig modbus, + String valueType, + String unit, + Integer decimalPlaces, + Integer pollingIntervalSeconds, + Boolean enabled +) { +} \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportController.java b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportController.java index f29e8c6..42a9fc0 100644 --- a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportController.java +++ b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportController.java @@ -15,6 +15,6 @@ public class SensorDefinitionImportController { @PostMapping("/api/sensor-definition-import/run") public SensorDefinitionImportResult runImport() { - return importService.importSensorMap(); + return importService.importSensorDefinitions(); } } \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportService.java b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportService.java index cbda2e8..492304c 100644 --- a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportService.java +++ b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionImportService.java @@ -1,113 +1,104 @@ package com.litoralregas.backend.sensor.importer; +import com.fasterxml.jackson.databind.ObjectMapper; import com.litoralregas.backend.sensor.SensorDefinition; import com.litoralregas.backend.sensor.SensorDefinitionRepository; +import com.litoralregas.backend.sensor.SensorSourceType; +import com.litoralregas.backend.sensor.SensorValueType; import com.litoralregas.backend.sensor.dto.SensorDefinitionImportResult; -import com.litoralregas.backend.sensor.dto.SensorDefinitionImportRow; import org.springframework.core.io.ClassPathResource; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; -import java.nio.charset.StandardCharsets; -import java.util.List; +import java.io.InputStream; @Service public class SensorDefinitionImportService { - private static final String SENSOR_MAP_PATH = "config/sensor-map.txt"; - private static final int DEFAULT_POLLING_INTERVAL_SECONDS = 2; + private static final String SENSOR_DEFINITIONS_PATH = + "config/sensor-definitions.json"; - private final SensorDefinitionMapParser parser; private final SensorDefinitionRepository repository; + private final ObjectMapper objectMapper; public SensorDefinitionImportService( - SensorDefinitionMapParser parser, - SensorDefinitionRepository repository + SensorDefinitionRepository repository, + ObjectMapper objectMapper ) { - this.parser = parser; this.repository = repository; + this.objectMapper = objectMapper; } @Transactional - public SensorDefinitionImportResult importSensorMap() { - List lines = readSensorMapLines(); + public SensorDefinitionImportResult importSensorDefinitions() { + + SensorDefinitionsFile file = readDefinitionsFile(); int imported = 0; int skippedExisting = 0; - int skippedBlank = 0; - for (String line : lines) { - if (line == null || line.isBlank()) { - skippedBlank++; - continue; - } + for (SensorDefinitionConfig config : file.sensors()) { - SensorDefinitionImportRow row = parser.parseLine(line) - .orElseThrow(() -> new IllegalArgumentException( - "Invalid sensor row: " + line - )); - - List existingSensors = repository.findAllByHardwareAddress( - row.modbusAddress(), - row.bitOffset() - ); - - if (!existingSensors.isEmpty()) { - for (SensorDefinition sensorDefinition : existingSensors) { - sensorDefinition.setValueType(row.valueType()); - sensorDefinition.setUnit(row.unit()); - sensorDefinition.setDecimalPlaces(row.decimalPlaces()); - sensorDefinition.setCategory(row.category()); - sensorDefinition.setSourceType(row.sourceType()); - } - - skippedExisting += existingSensors.size(); - continue; - } - - if (repository.findByName(row.name()).isPresent()) { + if (repository.findByName(config.name()).isPresent()) { skippedExisting++; continue; } SensorDefinition sensorDefinition = new SensorDefinition( - row.name(), - row.modbusAddress(), - row.bitOffset(), - row.valueType(), - row.unit(), - row.decimalPlaces(), - row.category(), - row.sourceType(), - DEFAULT_POLLING_INTERVAL_SECONDS, - true + config.key(), + config.name(), + config.category(), + config.modbus().address(), + config.modbus().bitOffset(), + SensorValueType.valueOf(config.valueType()), + config.unit(), + config.decimalPlaces(), + SensorSourceType.MODBUS, + config.pollingIntervalSeconds(), + config.enabled() ); repository.save(sensorDefinition); + imported++; } return new SensorDefinitionImportResult( - lines.size(), + file.sensorCount(), imported, skippedExisting, - skippedBlank + 0 ); } - private List readSensorMapLines() { + private SensorDefinitionsFile readDefinitionsFile() { + try { - ClassPathResource resource = new ClassPathResource(SENSOR_MAP_PATH); + + ClassPathResource resource = + new ClassPathResource(SENSOR_DEFINITIONS_PATH); if (!resource.exists()) { - throw new IllegalStateException("Sensor map file not found: " + SENSOR_MAP_PATH); + throw new IllegalStateException( + "Sensor definitions file not found: " + + SENSOR_DEFINITIONS_PATH + ); + } + + try (InputStream inputStream = resource.getInputStream()) { + + return objectMapper.readValue( + inputStream, + SensorDefinitionsFile.class + ); } - return resource.getContentAsString(StandardCharsets.UTF_8) - .lines() - .toList(); } catch (Exception exception) { - throw new IllegalStateException("Failed to read sensor map file.", exception); + + throw new IllegalStateException( + "Failed to load sensor definitions.", + exception + ); } } } \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionMapParser.java b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionMapParser.java deleted file mode 100644 index 6726608..0000000 --- a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionMapParser.java +++ /dev/null @@ -1,96 +0,0 @@ -package com.litoralregas.backend.sensor.importer; - -import com.litoralregas.backend.sensor.SensorSourceType; -import com.litoralregas.backend.sensor.SensorValueType; -import com.litoralregas.backend.sensor.dto.SensorDefinitionImportRow; -import org.springframework.stereotype.Component; - -import java.util.Optional; - -@Component -public class SensorDefinitionMapParser { - - public Optional parseLine(String line) { - if (line == null || line.isBlank()) { - return Optional.empty(); - } - - String[] parts = line.split("\\*"); - - if (parts.length != 5) { - throw new IllegalArgumentException("Invalid sensor map line: " + line); - } - - String name = parts[0].trim(); - String addressPart = parts[1].trim(); - Integer decimalPlaces = Integer.parseInt(parts[2].trim()); - String unit = normalizeUnit(parts[3].trim()); - String category = mapCategory(parts[4].trim()); - - ParsedAddress parsedAddress = parseAddress(addressPart); - - SensorSourceType sourceType = parsedAddress.modbusAddress() < 0 - ? SensorSourceType.CALCULATED - : SensorSourceType.MODBUS; - - SensorValueType valueType = parsedAddress.bitOffset() != null - ? SensorValueType.BOOLEAN - : decimalPlaces > 0 ? SensorValueType.DECIMAL : SensorValueType.INTEGER; - - return Optional.of(new SensorDefinitionImportRow( - name, - parsedAddress.modbusAddress(), - parsedAddress.bitOffset(), - valueType, - unit, - decimalPlaces, - category, - sourceType - )); - } - - private ParsedAddress parseAddress(String addressPart) { - if (addressPart.contains(",")) { - String[] addressParts = addressPart.split(","); - - if (addressParts.length != 2) { - throw new IllegalArgumentException("Invalid bit address: " + addressPart); - } - - return new ParsedAddress( - Integer.parseInt(addressParts[0].trim()), - Integer.parseInt(addressParts[1].trim()) - ); - } - - return new ParsedAddress( - Integer.parseInt(addressPart), - null - ); - } - - private String normalizeUnit(String unit) { - if (unit == null || unit.isBlank() || unit.equalsIgnoreCase("SU")) { - return null; - } - - return unit; - } - - private String mapCategory(String categoryCode) { - return switch (categoryCode.toLowerCase()) { - case "c" -> "CLIMATE"; - case "r" -> "IRRIGATION"; - case "i" -> "LIGHTING"; - case "h" -> "HYDRO"; - case "a" -> "AEROPONICS"; - default -> "UNKNOWN"; - }; - } - - private record ParsedAddress( - Integer modbusAddress, - Integer bitOffset - ) { - } -} \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionStartupImporter.java b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionStartupImporter.java new file mode 100644 index 0000000..6de7d67 --- /dev/null +++ b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionStartupImporter.java @@ -0,0 +1,35 @@ +package com.litoralregas.backend.sensor.importer; + +import com.litoralregas.backend.sensor.SensorDefinitionRepository; +import org.springframework.boot.context.event.ApplicationReadyEvent; +import org.springframework.context.event.EventListener; +import org.springframework.stereotype.Component; + +@Component +public class SensorDefinitionStartupImporter { + + private final SensorDefinitionRepository repository; + private final SensorDefinitionImportService importService; + + public SensorDefinitionStartupImporter( + SensorDefinitionRepository repository, + SensorDefinitionImportService importService + ) { + this.repository = repository; + this.importService = importService; + } + + @EventListener(ApplicationReadyEvent.class) + public void importSensorsIfMissing() { + if (repository.count() > 0) { + System.out.println("Sensor definitions already imported. Skipping startup import."); + return; + } + + System.out.println("No sensor definitions found. Importing sensor-definitions.json..."); + + importService.importSensorDefinitions(); + + System.out.println("Sensor definitions imported successfully."); + } +} \ No newline at end of file diff --git a/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionsFile.java b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionsFile.java new file mode 100644 index 0000000..b2afae1 --- /dev/null +++ b/src/main/java/com/litoralregas/backend/sensor/importer/SensorDefinitionsFile.java @@ -0,0 +1,10 @@ +package com.litoralregas.backend.sensor.importer; + +import java.util.List; + +public record SensorDefinitionsFile( + Integer version, + Integer sensorCount, + List sensors +) { +} \ No newline at end of file diff --git a/src/main/resources/config/sensor-definitions.json b/src/main/resources/config/sensor-definitions.json new file mode 100644 index 0000000..861596a --- /dev/null +++ b/src/main/resources/config/sensor-definitions.json @@ -0,0 +1,25537 @@ +{ + "version": 1, + "generatedFrom": "sensor-map.txt", + "sensorCount": 1702, + "sensors": [ + { + "key": "climate.sensor_10", + "name": "Temperatura exterior", + "category": "CLIMATE", + "modbus": { + "address": 10, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_11", + "name": "Humidade exterior", + "category": "CLIMATE", + "modbus": { + "address": 11, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_12", + "name": "Velocidade Vento 1", + "category": "CLIMATE", + "modbus": { + "address": 12, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "Km/h", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_13", + "name": "Velocidade Vento 2", + "category": "CLIMATE", + "modbus": { + "address": 13, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "Km/h", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_14", + "name": "Velocidade Vento 3", + "category": "CLIMATE", + "modbus": { + "address": 14, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "Km/h", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_15", + "name": "Direcao vento", + "category": "CLIMATE", + "modbus": { + "address": 15, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "º", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_16", + "name": "Radiacao 1", + "category": "CLIMATE", + "modbus": { + "address": 16, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_18", + "name": "Chuva 1", + "category": "CLIMATE", + "modbus": { + "address": 18, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_19", + "name": "Chuva 2", + "category": "CLIMATE", + "modbus": { + "address": 19, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_20", + "name": "Chuva 3", + "category": "CLIMATE", + "modbus": { + "address": 20, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_21", + "name": "Chuva 4", + "category": "CLIMATE", + "modbus": { + "address": 21, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_22", + "name": "Chuva 5", + "category": "CLIMATE", + "modbus": { + "address": 22, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_100", + "name": "Temperatura estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 100, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_101", + "name": "Humidade estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 101, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_102", + "name": "Temperatura 1 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 102, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_103", + "name": "Humidade 1 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 103, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_104", + "name": "Temperatura 2 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 104, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_105", + "name": "Humidade 2 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 105, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_106", + "name": "Temperatura 3 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 106, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_107", + "name": "Humidade 3 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 107, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_108", + "name": "Temperatura 4 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 108, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_109", + "name": "Humidade 4 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 109, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_110", + "name": "Temperatura 5 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 110, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_111", + "name": "Humidade 5 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 111, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_112", + "name": "CO2 estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 112, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_113", + "name": "Temperatura do solo Estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 113, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_114", + "name": "Humidade do solo Estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 114, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_115_bit_0", + "name": "Ventiladores Estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 115, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_115_bit_1", + "name": "Extratores Estufa 1", + "category": "CLIMATE", + "modbus": { + "address": 115, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_140", + "name": "Temperatura estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 140, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_141", + "name": "Humidade estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 141, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_142", + "name": "Temperatura 1 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 142, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_143", + "name": "Humidade 1 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 143, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_144", + "name": "Temperatura 2 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 144, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_145", + "name": "Humidade 2 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 145, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_146", + "name": "Temperatura 3 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 146, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_147", + "name": "Humidade 3 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 147, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_148", + "name": "Temperatura 4 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 148, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_149", + "name": "Humidade 4 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 149, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_150", + "name": "Temperatura 5 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 150, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_151", + "name": "Humidade 5 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 151, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_152", + "name": "CO2 estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 152, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_153", + "name": "Temperatura do solo Estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 153, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_154", + "name": "Humidade do solo Estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 154, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_155_bit_0", + "name": "Ventiladores Estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 155, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_155_bit_1", + "name": "Extratores Estufa 2", + "category": "CLIMATE", + "modbus": { + "address": 155, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_180", + "name": "Temperatura estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 180, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_181", + "name": "Humidade estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 181, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_182", + "name": "Temperatura 1 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 182, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_183", + "name": "Humidade 1 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 183, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_184", + "name": "Temperatura 2 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 184, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_185", + "name": "Humidade 2 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 185, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_186", + "name": "Temperatura 3 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 186, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_187", + "name": "Humidade 3 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 187, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_188", + "name": "Temperatura 4 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 188, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_189", + "name": "Humidade 4 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 189, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_190", + "name": "Temperatura 5 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 190, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_191", + "name": "Humidade 5 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 191, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_192", + "name": "CO2 estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 192, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_193", + "name": "Temperatura do solo Estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 193, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_194", + "name": "Humidade do solo Estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 194, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_195_bit_0", + "name": "Ventiladores Estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 195, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_195_bit_1", + "name": "Extratores Estufa 3", + "category": "CLIMATE", + "modbus": { + "address": 195, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_220", + "name": "Temperatura estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 220, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_221", + "name": "Humidade estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 221, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_222", + "name": "Temperatura 1 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 222, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_223", + "name": "Humidade 1 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 223, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_224", + "name": "Temperatura 2 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 224, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_225", + "name": "Humidade 2 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 225, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_226", + "name": "Temperatura 3 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 226, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_227", + "name": "Humidade 3 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 227, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_228", + "name": "Temperatura 4 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 228, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_229", + "name": "Humidade 4 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 229, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_230", + "name": "Temperatura 5 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 230, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_231", + "name": "Humidade 5 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 231, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_232", + "name": "CO2 estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 232, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_233", + "name": "Temperatura do solo Estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 233, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_234", + "name": "Humidade do solo Estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 234, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_235_bit_0", + "name": "Ventiladores Estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 235, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_235_bit_1", + "name": "Extratores Estufa 4", + "category": "CLIMATE", + "modbus": { + "address": 235, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_260", + "name": "Temperatura estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 260, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_261", + "name": "Humidade estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 261, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_262", + "name": "Temperatura 1 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 262, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_263", + "name": "Humidade 1 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 263, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_264", + "name": "Temperatura 2 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 264, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_265", + "name": "Humidade 2 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 265, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_266", + "name": "Temperatura 3 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 266, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_267", + "name": "Humidade 3 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 267, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_268", + "name": "Temperatura 4 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 268, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_269", + "name": "Humidade 4 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 269, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_270", + "name": "Temperatura 5 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 270, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_271", + "name": "Humidade 5 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 271, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_272", + "name": "CO2 estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 272, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_273", + "name": "Temperatura do solo Estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 273, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_274", + "name": "Humidade do solo Estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 274, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_275_bit_0", + "name": "Ventiladores Estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 275, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_275_bit_1", + "name": "Extratores Estufa 5", + "category": "CLIMATE", + "modbus": { + "address": 275, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_300", + "name": "Temperatura estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 300, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_301", + "name": "Humidade estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 301, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_302", + "name": "Temperatura 1 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 302, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_303", + "name": "Humidade 1 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 303, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_304", + "name": "Temperatura 2 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 304, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_305", + "name": "Humidade 2 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 305, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_306", + "name": "Temperatura 3 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 306, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_307", + "name": "Humidade 3 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 307, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_308", + "name": "Temperatura 4 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 308, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_309", + "name": "Humidade 4 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 309, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_310", + "name": "Temperatura 5 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 310, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_311", + "name": "Humidade 5 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 311, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_312", + "name": "CO2 estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 312, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_313", + "name": "Temperatura do solo Estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 313, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_314", + "name": "Humidade do solo Estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 314, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_315_bit_0", + "name": "Ventiladores Estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 315, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_315_bit_1", + "name": "Extratores Estufa 6", + "category": "CLIMATE", + "modbus": { + "address": 315, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_340", + "name": "Temperatura estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 340, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_341", + "name": "Humidade estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 341, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_342", + "name": "Temperatura 1 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 342, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_343", + "name": "Humidade 1 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 343, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_344", + "name": "Temperatura 2 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 344, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_345", + "name": "Humidade 2 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 345, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_346", + "name": "Temperatura 3 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 346, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_347", + "name": "Humidade 3 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 347, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_348", + "name": "Temperatura 4 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 348, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_349", + "name": "Humidade 4 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 349, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_350", + "name": "Temperatura 5 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 350, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_351", + "name": "Humidade 5 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 351, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_352", + "name": "CO2 estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 352, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_353", + "name": "Temperatura do solo Estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 353, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_354", + "name": "Humidade do solo Estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 354, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_355_bit_0", + "name": "Ventiladores Estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 355, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_355_bit_1", + "name": "Extratores Estufa 7", + "category": "CLIMATE", + "modbus": { + "address": 355, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_380", + "name": "Temperatura estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 380, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_381", + "name": "Humidade estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 381, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_382", + "name": "Temperatura 1 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 382, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_383", + "name": "Humidade 1 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 383, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_384", + "name": "Temperatura 2 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 384, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_385", + "name": "Humidade 2 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 385, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_386", + "name": "Temperatura 3 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 386, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_387", + "name": "Humidade 3 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 387, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_388", + "name": "Temperatura 4 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 388, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_389", + "name": "Humidade 4 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 389, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_390", + "name": "Temperatura 5 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 390, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_391", + "name": "Humidade 5 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 391, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_392", + "name": "CO2 estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 392, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_393", + "name": "Temperatura do solo Estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 393, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_394", + "name": "Humidade do solo Estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 394, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_395_bit_0", + "name": "Ventiladores Estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 395, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_395_bit_1", + "name": "Extratores Estufa 8", + "category": "CLIMATE", + "modbus": { + "address": 395, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_420", + "name": "Temperatura estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 420, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_421", + "name": "Humidade estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 421, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_422", + "name": "Temperatura 1 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 422, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_423", + "name": "Humidade 1 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 423, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_424", + "name": "Temperatura 2 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 424, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_425", + "name": "Humidade 2 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 425, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_426", + "name": "Temperatura 3 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 426, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_427", + "name": "Humidade 3 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 427, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_428", + "name": "Temperatura 4 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 428, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_429", + "name": "Humidade 4 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 429, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_430", + "name": "Temperatura 5 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 430, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_431", + "name": "Humidade 5 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 431, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_432", + "name": "CO2 estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 432, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_433", + "name": "Temperatura do solo Estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 433, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_434", + "name": "Humidade do solo Estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 434, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_435_bit_0", + "name": "Ventiladores Estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 435, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_435_bit_1", + "name": "Extratores Estufa 9", + "category": "CLIMATE", + "modbus": { + "address": 435, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_460", + "name": "Temperatura estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 460, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_461", + "name": "Humidade estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 461, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_462", + "name": "Temperatura 1 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 462, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_463", + "name": "Humidade 1 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 463, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_464", + "name": "Temperatura 2 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 464, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_465", + "name": "Humidade 2 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 465, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_466", + "name": "Temperatura 3 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 466, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_467", + "name": "Humidade 3 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 467, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_468", + "name": "Temperatura 4 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 468, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_469", + "name": "Humidade 4 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 469, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_470", + "name": "Temperatura 5 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 470, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_471", + "name": "Humidade 5 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 471, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_472", + "name": "CO2 estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 472, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_473", + "name": "Temperatura do solo Estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 473, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_474", + "name": "Humidade do solo Estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 474, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_475_bit_0", + "name": "Ventiladores Estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 475, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_475_bit_1", + "name": "Extratores Estufa 10", + "category": "CLIMATE", + "modbus": { + "address": 475, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_500", + "name": "Temperatura estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 500, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_501", + "name": "Humidade estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 501, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_502", + "name": "Temperatura 1 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 502, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_503", + "name": "Humidade 1 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 503, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_504", + "name": "Temperatura 2 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 504, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_505", + "name": "Humidade 2 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 505, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_506", + "name": "Temperatura 3 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 506, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_507", + "name": "Humidade 3 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 507, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_508", + "name": "Temperatura 4 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 508, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_509", + "name": "Humidade 4 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 509, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_510", + "name": "Temperatura 5 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 510, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_511", + "name": "Humidade 5 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 511, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_512", + "name": "CO2 estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 512, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_513", + "name": "Temperatura do solo Estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 513, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_514", + "name": "Humidade do solo Estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 514, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_515_bit_0", + "name": "Ventiladores Estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 515, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_515_bit_1", + "name": "Extratores Estufa 11", + "category": "CLIMATE", + "modbus": { + "address": 515, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_540", + "name": "Temperatura estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 540, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_541", + "name": "Humidade estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 541, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_542", + "name": "Temperatura 1 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 542, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_543", + "name": "Humidade 1 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 543, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_544", + "name": "Temperatura 2 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 544, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_545", + "name": "Humidade 2 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 545, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_546", + "name": "Temperatura 3 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 546, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_547", + "name": "Humidade 3 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 547, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_548", + "name": "Temperatura 4 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 548, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_549", + "name": "Humidade 4 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 549, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_550", + "name": "Temperatura 5 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 550, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_551", + "name": "Humidade 5 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 551, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_552", + "name": "CO2 estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 552, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_553", + "name": "Temperatura do solo Estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 553, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_554", + "name": "Humidade do solo Estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 554, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_555_bit_0", + "name": "Ventiladores Estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 555, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_555_bit_1", + "name": "Extratores Estufa 12", + "category": "CLIMATE", + "modbus": { + "address": 555, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_580", + "name": "Temperatura estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 580, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_581", + "name": "Humidade estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 581, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_582", + "name": "Temperatura 1 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 582, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_583", + "name": "Humidade 1 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 583, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_584", + "name": "Temperatura 2 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 584, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_585", + "name": "Humidade 2 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 585, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_586", + "name": "Temperatura 3 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 586, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_587", + "name": "Humidade 3 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 587, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_588", + "name": "Temperatura 4 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 588, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_589", + "name": "Humidade 4 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 589, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_590", + "name": "Temperatura 5 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 590, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_591", + "name": "Humidade 5 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 591, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_592", + "name": "CO2 estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 592, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_593", + "name": "Temperatura do solo Estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 593, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_594", + "name": "Humidade do solo Estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 594, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_595_bit_0", + "name": "Ventiladores Estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 595, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_595_bit_1", + "name": "Extratores Estufa 13", + "category": "CLIMATE", + "modbus": { + "address": 595, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_620", + "name": "Temperatura estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 620, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_621", + "name": "Humidade estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 621, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_622", + "name": "Temperatura 1 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 622, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_623", + "name": "Humidade 1 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 623, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_624", + "name": "Temperatura 2 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 624, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_625", + "name": "Humidade 2 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 625, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_626", + "name": "Temperatura 3 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 626, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_627", + "name": "Humidade 3 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 627, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_628", + "name": "Temperatura 4 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 628, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_629", + "name": "Humidade 4 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 629, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_630", + "name": "Temperatura 5 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 630, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_631", + "name": "Humidade 5 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 631, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_632", + "name": "CO2 estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 632, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_633", + "name": "Temperatura do solo Estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 633, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_634", + "name": "Humidade do solo Estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 634, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_635_bit_0", + "name": "Ventiladores Estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 635, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_635_bit_1", + "name": "Extratores Estufa 14", + "category": "CLIMATE", + "modbus": { + "address": 635, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_660", + "name": "Temperatura estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 660, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_661", + "name": "Humidade estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 661, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_662", + "name": "Temperatura 1 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 662, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_663", + "name": "Humidade 1 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 663, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_664", + "name": "Temperatura 2 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 664, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_665", + "name": "Humidade 2 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 665, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_666", + "name": "Temperatura 3 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 666, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_667", + "name": "Humidade 3 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 667, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_668", + "name": "Temperatura 4 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 668, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_669", + "name": "Humidade 4 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 669, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_670", + "name": "Temperatura 5 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 670, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_671", + "name": "Humidade 5 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 671, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_672", + "name": "CO2 estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 672, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_673", + "name": "Temperatura do solo Estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 673, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_674", + "name": "Humidade do solo Estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 674, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_675_bit_0", + "name": "Ventiladores Estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 675, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_675_bit_1", + "name": "Extratores Estufa 15", + "category": "CLIMATE", + "modbus": { + "address": 675, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_700", + "name": "Temperatura estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 700, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_701", + "name": "Humidade estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 701, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_702", + "name": "Temperatura 1 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 702, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_703", + "name": "Humidade 1 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 703, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_704", + "name": "Temperatura 2 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 704, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_705", + "name": "Humidade 2 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 705, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_706", + "name": "Temperatura 3 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 706, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_707", + "name": "Humidade 3 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 707, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_708", + "name": "Temperatura 4 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 708, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_709", + "name": "Humidade 4 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 709, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_710", + "name": "Temperatura 5 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 710, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_711", + "name": "Humidade 5 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 711, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_712", + "name": "CO2 estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 712, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_713", + "name": "Temperatura do solo Estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 713, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_714", + "name": "Humidade do solo Estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 714, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_715_bit_0", + "name": "Ventiladores Estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 715, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_715_bit_1", + "name": "Extratores Estufa 16", + "category": "CLIMATE", + "modbus": { + "address": 715, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_740", + "name": "Temperatura estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 740, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_741", + "name": "Humidade estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 741, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_742", + "name": "Temperatura 1 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 742, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_743", + "name": "Humidade 1 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 743, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_744", + "name": "Temperatura 2 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 744, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_745", + "name": "Humidade 2 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 745, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_746", + "name": "Temperatura 3 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 746, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_747", + "name": "Humidade 3 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 747, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_748", + "name": "Temperatura 4 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 748, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_749", + "name": "Humidade 4 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 749, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_750", + "name": "Temperatura 5 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 750, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_751", + "name": "Humidade 5 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 751, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_752", + "name": "CO2 estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 752, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_753", + "name": "Temperatura do solo Estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 753, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_754", + "name": "Humidade do solo Estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 754, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_755_bit_0", + "name": "Ventiladores Estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 755, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_755_bit_1", + "name": "Extratores Estufa 17", + "category": "CLIMATE", + "modbus": { + "address": 755, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_780", + "name": "Temperatura estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 780, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_781", + "name": "Humidade estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 781, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_782", + "name": "Temperatura 1 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 782, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_783", + "name": "Humidade 1 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 783, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_784", + "name": "Temperatura 2 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 784, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_785", + "name": "Humidade 2 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 785, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_786", + "name": "Temperatura 3 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 786, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_787", + "name": "Humidade 3 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 787, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_788", + "name": "Temperatura 4 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 788, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_789", + "name": "Humidade 4 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 789, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_790", + "name": "Temperatura 5 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 790, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_791", + "name": "Humidade 5 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 791, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_792", + "name": "CO2 estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 792, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_793", + "name": "Temperatura do solo Estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 793, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_794", + "name": "Humidade do solo Estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 794, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_795_bit_0", + "name": "Ventiladores Estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 795, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_795_bit_1", + "name": "Extratores Estufa 18", + "category": "CLIMATE", + "modbus": { + "address": 795, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_820", + "name": "Temperatura estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 820, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_821", + "name": "Humidade estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 821, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_822", + "name": "Temperatura 1 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 822, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_823", + "name": "Humidade 1 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 823, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_824", + "name": "Temperatura 2 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 824, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_825", + "name": "Humidade 2 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 825, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_826", + "name": "Temperatura 3 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 826, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_827", + "name": "Humidade 3 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 827, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_828", + "name": "Temperatura 4 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 828, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_829", + "name": "Humidade 4 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 829, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_830", + "name": "Temperatura 5 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 830, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_831", + "name": "Humidade 5 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 831, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_832", + "name": "CO2 estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 832, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_833", + "name": "Temperatura do solo Estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 833, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_834", + "name": "Humidade do solo Estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 834, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_835_bit_0", + "name": "Ventiladores Estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 835, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_835_bit_1", + "name": "Extratores Estufa 19", + "category": "CLIMATE", + "modbus": { + "address": 835, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_860", + "name": "Temperatura estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 860, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_861", + "name": "Humidade estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 861, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_862", + "name": "Temperatura 1 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 862, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_863", + "name": "Humidade 1 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 863, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_864", + "name": "Temperatura 2 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 864, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_865", + "name": "Humidade 2 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 865, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_866", + "name": "Temperatura 3 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 866, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_867", + "name": "Humidade 3 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 867, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_868", + "name": "Temperatura 4 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 868, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_869", + "name": "Humidade 4 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 869, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_870", + "name": "Temperatura 5 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 870, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_871", + "name": "Humidade 5 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 871, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_872", + "name": "CO2 estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 872, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "ppm", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_873", + "name": "Temperatura do solo Estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 873, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_874", + "name": "Humidade do solo Estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 874, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_875_bit_0", + "name": "Ventiladores Estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 875, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_875_bit_1", + "name": "Extratores Estufa 20", + "category": "CLIMATE", + "modbus": { + "address": 875, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1000", + "name": "PH1 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1000, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1001", + "name": "PH2 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1001, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1002", + "name": "CE1 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1002, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1003", + "name": "CE2 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1003, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1004", + "name": "CE3 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1004, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1005", + "name": "Temperatura CE1 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1005, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1006", + "name": "Temperatura CE2 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1006, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1007", + "name": "Temperatura CE3 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1007, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1008", + "name": "Pressao Bomba 1 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1008, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1009", + "name": "Pressao Bomba 2 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1009, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1010", + "name": "Pressao Bomba 3 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1010, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1014", + "name": "Referencia PH C1", + "category": "IRRIGATION", + "modbus": { + "address": 1014, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1015", + "name": "Modulacao PH C1", + "category": "IRRIGATION", + "modbus": { + "address": 1015, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1016", + "name": "Referencia CE C1", + "category": "IRRIGATION", + "modbus": { + "address": 1016, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1017", + "name": "Modulacao CE C1", + "category": "IRRIGATION", + "modbus": { + "address": 1017, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_0", + "name": "V1 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_1", + "name": "V2 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_2", + "name": "V3 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_3", + "name": "V4 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_4", + "name": "V5 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_5", + "name": "V6 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_6", + "name": "V7 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_7", + "name": "V8 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_8", + "name": "V9 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1073_bit_9", + "name": "V10 C1", + "category": "IRRIGATION", + "modbus": { + "address": 1073, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_0", + "name": "V1 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_1", + "name": "V2 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_2", + "name": "V3 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_3", + "name": "V4 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_4", + "name": "V5 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_5", + "name": "V6 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_6", + "name": "V7 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_7", + "name": "V8 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_8", + "name": "V9 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1173_bit_9", + "name": "V10 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1173, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_0", + "name": "V1 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_1", + "name": "V2 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_2", + "name": "V3 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_3", + "name": "V4 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_4", + "name": "V5 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_5", + "name": "V6 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_6", + "name": "V7 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_7", + "name": "V8 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_8", + "name": "V9 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1273_bit_9", + "name": "V10 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1273, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_0", + "name": "IL Setor 1", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_1", + "name": "IL Setor 2", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_2", + "name": "IL Setor 3", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_3", + "name": "IL Setor 4", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_4", + "name": "IL Setor 5", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_5", + "name": "IL Setor 6", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_6", + "name": "IL Setor 7", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_7", + "name": "IL Setor 8", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_8", + "name": "IL Setor 9", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_9", + "name": "IL Setor 10", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_10", + "name": "IL Setor 11", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_11", + "name": "IL Setor 12", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_12", + "name": "IL Setor 13", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_13", + "name": "IL Setor 14", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_14", + "name": "IL Setor 15", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2600_bit_15", + "name": "IL Setor 16", + "category": "LIGHTING", + "modbus": { + "address": 2600, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_0", + "name": "IL Setor 17", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_1", + "name": "IL Setor 18", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_2", + "name": "IL Setor 19", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_3", + "name": "IL Setor 20", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_4", + "name": "IL Setor 21", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_5", + "name": "IL Setor 22", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_6", + "name": "IL Setor 23", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_7", + "name": "IL Setor 24", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_8", + "name": "IL Setor 25", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_9", + "name": "IL Setor 26", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_10", + "name": "IL Setor 27", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_11", + "name": "IL Setor 28", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_12", + "name": "IL Setor 29", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_13", + "name": "IL Setor 30", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_14", + "name": "IL Setor 31", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "lighting.sensor_2601_bit_15", + "name": "IL Setor 32", + "category": "LIGHTING", + "modbus": { + "address": 2601, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_116", + "name": "Zenital E E1", + "category": "CLIMATE", + "modbus": { + "address": 116, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_117", + "name": "Zenital D E1", + "category": "CLIMATE", + "modbus": { + "address": 117, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_118", + "name": "Lateral E E1", + "category": "CLIMATE", + "modbus": { + "address": 118, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_119", + "name": "Lateral D E1", + "category": "CLIMATE", + "modbus": { + "address": 119, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_120", + "name": "Topo F E1", + "category": "CLIMATE", + "modbus": { + "address": 120, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_121", + "name": "Topo T E1", + "category": "CLIMATE", + "modbus": { + "address": 121, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_122", + "name": "Ecra 1 E1", + "category": "CLIMATE", + "modbus": { + "address": 122, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_123", + "name": "Ecra 2 E1", + "category": "CLIMATE", + "modbus": { + "address": 123, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_124", + "name": "Ecra 3 E1", + "category": "CLIMATE", + "modbus": { + "address": 124, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_125", + "name": "Ecra 4 E1", + "category": "CLIMATE", + "modbus": { + "address": 125, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_126", + "name": "Ecra 5 E1", + "category": "CLIMATE", + "modbus": { + "address": 126, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_156", + "name": "Zenital E E2", + "category": "CLIMATE", + "modbus": { + "address": 156, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_157", + "name": "Zenital D E2", + "category": "CLIMATE", + "modbus": { + "address": 157, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_158", + "name": "Lateral E E2", + "category": "CLIMATE", + "modbus": { + "address": 158, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_159", + "name": "Lateral D E2", + "category": "CLIMATE", + "modbus": { + "address": 159, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_160", + "name": "Topo F E2", + "category": "CLIMATE", + "modbus": { + "address": 160, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_161", + "name": "Topo T E2", + "category": "CLIMATE", + "modbus": { + "address": 161, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_162", + "name": "Ecra 1 E2", + "category": "CLIMATE", + "modbus": { + "address": 162, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_163", + "name": "Ecra 2 E2", + "category": "CLIMATE", + "modbus": { + "address": 163, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_164", + "name": "Ecra 3 E2", + "category": "CLIMATE", + "modbus": { + "address": 164, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_165", + "name": "Ecra 4 E2", + "category": "CLIMATE", + "modbus": { + "address": 165, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_166", + "name": "Ecra 5 E2", + "category": "CLIMATE", + "modbus": { + "address": 166, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_196", + "name": "Zenital E E3", + "category": "CLIMATE", + "modbus": { + "address": 196, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_197", + "name": "Zenital D E3", + "category": "CLIMATE", + "modbus": { + "address": 197, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_198", + "name": "Lateral E E3", + "category": "CLIMATE", + "modbus": { + "address": 198, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_199", + "name": "Lateral D E3", + "category": "CLIMATE", + "modbus": { + "address": 199, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_200", + "name": "Topo F E3", + "category": "CLIMATE", + "modbus": { + "address": 200, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_201", + "name": "Topo T E3", + "category": "CLIMATE", + "modbus": { + "address": 201, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_202", + "name": "Ecra 1 E3", + "category": "CLIMATE", + "modbus": { + "address": 202, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_203", + "name": "Ecra 2 E3", + "category": "CLIMATE", + "modbus": { + "address": 203, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_204", + "name": "Ecra 3 E3", + "category": "CLIMATE", + "modbus": { + "address": 204, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_205", + "name": "Ecra 4 E3", + "category": "CLIMATE", + "modbus": { + "address": 205, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_206", + "name": "Ecra 5 E3", + "category": "CLIMATE", + "modbus": { + "address": 206, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_236", + "name": "Zenital E E4", + "category": "CLIMATE", + "modbus": { + "address": 236, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_237", + "name": "Zenital D E4", + "category": "CLIMATE", + "modbus": { + "address": 237, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_238", + "name": "Lateral E E4", + "category": "CLIMATE", + "modbus": { + "address": 238, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_239", + "name": "Lateral D E4", + "category": "CLIMATE", + "modbus": { + "address": 239, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_240", + "name": "Topo F E4", + "category": "CLIMATE", + "modbus": { + "address": 240, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_241", + "name": "Topo T E4", + "category": "CLIMATE", + "modbus": { + "address": 241, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_242", + "name": "Ecra 1 E4", + "category": "CLIMATE", + "modbus": { + "address": 242, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_243", + "name": "Ecra 2 E4", + "category": "CLIMATE", + "modbus": { + "address": 243, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_244", + "name": "Ecra 3 E4", + "category": "CLIMATE", + "modbus": { + "address": 244, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_245", + "name": "Ecra 4 E4", + "category": "CLIMATE", + "modbus": { + "address": 245, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_246", + "name": "Ecra 5 E4", + "category": "CLIMATE", + "modbus": { + "address": 246, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_276", + "name": "Zenital E E5", + "category": "CLIMATE", + "modbus": { + "address": 276, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_277", + "name": "Zenital D E5", + "category": "CLIMATE", + "modbus": { + "address": 277, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_278", + "name": "Lateral E E5", + "category": "CLIMATE", + "modbus": { + "address": 278, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_279", + "name": "Lateral D E5", + "category": "CLIMATE", + "modbus": { + "address": 279, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_280", + "name": "Topo F E5", + "category": "CLIMATE", + "modbus": { + "address": 280, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_281", + "name": "Topo T E5", + "category": "CLIMATE", + "modbus": { + "address": 281, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_282", + "name": "Ecra 1 E5", + "category": "CLIMATE", + "modbus": { + "address": 282, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_283", + "name": "Ecra 2 E5", + "category": "CLIMATE", + "modbus": { + "address": 283, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_284", + "name": "Ecra 3 E5", + "category": "CLIMATE", + "modbus": { + "address": 284, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_285", + "name": "Ecra 4 E5", + "category": "CLIMATE", + "modbus": { + "address": 285, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_286", + "name": "Ecra 5 E5", + "category": "CLIMATE", + "modbus": { + "address": 286, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_316", + "name": "Zenital E E6", + "category": "CLIMATE", + "modbus": { + "address": 316, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_317", + "name": "Zenital D E6", + "category": "CLIMATE", + "modbus": { + "address": 317, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_318", + "name": "Lateral E E6", + "category": "CLIMATE", + "modbus": { + "address": 318, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_319", + "name": "Lateral D E6", + "category": "CLIMATE", + "modbus": { + "address": 319, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_320", + "name": "Topo F E6", + "category": "CLIMATE", + "modbus": { + "address": 320, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_321", + "name": "Topo T E6", + "category": "CLIMATE", + "modbus": { + "address": 321, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_322", + "name": "Ecra 1 E6", + "category": "CLIMATE", + "modbus": { + "address": 322, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_323", + "name": "Ecra 2 E6", + "category": "CLIMATE", + "modbus": { + "address": 323, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_324", + "name": "Ecra 3 E6", + "category": "CLIMATE", + "modbus": { + "address": 324, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_325", + "name": "Ecra 4 E6", + "category": "CLIMATE", + "modbus": { + "address": 325, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_326", + "name": "Ecra 5 E6", + "category": "CLIMATE", + "modbus": { + "address": 326, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_356", + "name": "Zenital E E7", + "category": "CLIMATE", + "modbus": { + "address": 356, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_357", + "name": "Zenital D E7", + "category": "CLIMATE", + "modbus": { + "address": 357, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_358", + "name": "Lateral E E7", + "category": "CLIMATE", + "modbus": { + "address": 358, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_359", + "name": "Lateral D E7", + "category": "CLIMATE", + "modbus": { + "address": 359, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_360", + "name": "Topo F E7", + "category": "CLIMATE", + "modbus": { + "address": 360, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_361", + "name": "Topo T E7", + "category": "CLIMATE", + "modbus": { + "address": 361, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_362", + "name": "Ecra 1 E7", + "category": "CLIMATE", + "modbus": { + "address": 362, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_363", + "name": "Ecra 2 E7", + "category": "CLIMATE", + "modbus": { + "address": 363, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_364", + "name": "Ecra 3 E7", + "category": "CLIMATE", + "modbus": { + "address": 364, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_365", + "name": "Ecra 4 E7", + "category": "CLIMATE", + "modbus": { + "address": 365, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_366", + "name": "Ecra 5 E7", + "category": "CLIMATE", + "modbus": { + "address": 366, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_396", + "name": "Zenital E E8", + "category": "CLIMATE", + "modbus": { + "address": 396, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_397", + "name": "Zenital D E8", + "category": "CLIMATE", + "modbus": { + "address": 397, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_398", + "name": "Lateral E E8", + "category": "CLIMATE", + "modbus": { + "address": 398, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_399", + "name": "Lateral D E8", + "category": "CLIMATE", + "modbus": { + "address": 399, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_400", + "name": "Topo F E8", + "category": "CLIMATE", + "modbus": { + "address": 400, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_401", + "name": "Topo T E8", + "category": "CLIMATE", + "modbus": { + "address": 401, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_402", + "name": "Ecra 1 E8", + "category": "CLIMATE", + "modbus": { + "address": 402, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_403", + "name": "Ecra 2 E8", + "category": "CLIMATE", + "modbus": { + "address": 403, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_404", + "name": "Ecra 3 E8", + "category": "CLIMATE", + "modbus": { + "address": 404, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_405", + "name": "Ecra 4 E8", + "category": "CLIMATE", + "modbus": { + "address": 405, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_406", + "name": "Ecra 5 E8", + "category": "CLIMATE", + "modbus": { + "address": 406, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_436", + "name": "Zenital E E9", + "category": "CLIMATE", + "modbus": { + "address": 436, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_437", + "name": "Zenital D E9", + "category": "CLIMATE", + "modbus": { + "address": 437, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_438", + "name": "Lateral E E9", + "category": "CLIMATE", + "modbus": { + "address": 438, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_439", + "name": "Lateral D E9", + "category": "CLIMATE", + "modbus": { + "address": 439, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_440", + "name": "Topo F E9", + "category": "CLIMATE", + "modbus": { + "address": 440, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_441", + "name": "Topo T E9", + "category": "CLIMATE", + "modbus": { + "address": 441, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_442", + "name": "Ecra 1 E9", + "category": "CLIMATE", + "modbus": { + "address": 442, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_443", + "name": "Ecra 2 E9", + "category": "CLIMATE", + "modbus": { + "address": 443, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_444", + "name": "Ecra 3 E9", + "category": "CLIMATE", + "modbus": { + "address": 444, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_445", + "name": "Ecra 4 E9", + "category": "CLIMATE", + "modbus": { + "address": 445, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_446", + "name": "Ecra 5 E9", + "category": "CLIMATE", + "modbus": { + "address": 446, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_476", + "name": "Zenital E E10", + "category": "CLIMATE", + "modbus": { + "address": 476, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_477", + "name": "Zenital D E10", + "category": "CLIMATE", + "modbus": { + "address": 477, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_478", + "name": "Lateral E E10", + "category": "CLIMATE", + "modbus": { + "address": 478, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_479", + "name": "Lateral D E10", + "category": "CLIMATE", + "modbus": { + "address": 479, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_480", + "name": "Topo F E10", + "category": "CLIMATE", + "modbus": { + "address": 480, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_481", + "name": "Topo T E10", + "category": "CLIMATE", + "modbus": { + "address": 481, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_482", + "name": "Ecra 1 E10", + "category": "CLIMATE", + "modbus": { + "address": 482, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_483", + "name": "Ecra 2 E10", + "category": "CLIMATE", + "modbus": { + "address": 483, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_484", + "name": "Ecra 3 E10", + "category": "CLIMATE", + "modbus": { + "address": 484, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_485", + "name": "Ecra 4 E10", + "category": "CLIMATE", + "modbus": { + "address": 485, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_486", + "name": "Ecra 5 E10", + "category": "CLIMATE", + "modbus": { + "address": 486, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_516", + "name": "Zenital E E11", + "category": "CLIMATE", + "modbus": { + "address": 516, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_517", + "name": "Zenital D E11", + "category": "CLIMATE", + "modbus": { + "address": 517, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_518", + "name": "Lateral E E11", + "category": "CLIMATE", + "modbus": { + "address": 518, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_519", + "name": "Lateral D E11", + "category": "CLIMATE", + "modbus": { + "address": 519, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_520", + "name": "Topo F E11", + "category": "CLIMATE", + "modbus": { + "address": 520, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_521", + "name": "Topo T E11", + "category": "CLIMATE", + "modbus": { + "address": 521, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_522", + "name": "Ecra 1 E11", + "category": "CLIMATE", + "modbus": { + "address": 522, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_523", + "name": "Ecra 2 E11", + "category": "CLIMATE", + "modbus": { + "address": 523, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_524", + "name": "Ecra 3 E11", + "category": "CLIMATE", + "modbus": { + "address": 524, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_525", + "name": "Ecra 4 E11", + "category": "CLIMATE", + "modbus": { + "address": 525, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_526", + "name": "Ecra 5 E11", + "category": "CLIMATE", + "modbus": { + "address": 526, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_556", + "name": "Zenital E E12", + "category": "CLIMATE", + "modbus": { + "address": 556, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_557", + "name": "Zenital D E12", + "category": "CLIMATE", + "modbus": { + "address": 557, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_558", + "name": "Lateral E E12", + "category": "CLIMATE", + "modbus": { + "address": 558, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_559", + "name": "Lateral D E12", + "category": "CLIMATE", + "modbus": { + "address": 559, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_560", + "name": "Topo F E12", + "category": "CLIMATE", + "modbus": { + "address": 560, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_561", + "name": "Topo T E12", + "category": "CLIMATE", + "modbus": { + "address": 561, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_562", + "name": "Ecra 1 E12", + "category": "CLIMATE", + "modbus": { + "address": 562, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_563", + "name": "Ecra 2 E12", + "category": "CLIMATE", + "modbus": { + "address": 563, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_564", + "name": "Ecra 3 E12", + "category": "CLIMATE", + "modbus": { + "address": 564, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_565", + "name": "Ecra 4 E12", + "category": "CLIMATE", + "modbus": { + "address": 565, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_566", + "name": "Ecra 5 E12", + "category": "CLIMATE", + "modbus": { + "address": 566, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_596", + "name": "Zenital E E13", + "category": "CLIMATE", + "modbus": { + "address": 596, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_597", + "name": "Zenital D E13", + "category": "CLIMATE", + "modbus": { + "address": 597, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_598", + "name": "Lateral E E13", + "category": "CLIMATE", + "modbus": { + "address": 598, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_599", + "name": "Lateral D E13", + "category": "CLIMATE", + "modbus": { + "address": 599, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_600", + "name": "Topo F E13", + "category": "CLIMATE", + "modbus": { + "address": 600, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_601", + "name": "Topo T E13", + "category": "CLIMATE", + "modbus": { + "address": 601, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_602", + "name": "Ecra 1 E13", + "category": "CLIMATE", + "modbus": { + "address": 602, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_603", + "name": "Ecra 2 E13", + "category": "CLIMATE", + "modbus": { + "address": 603, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_604", + "name": "Ecra 3 E13", + "category": "CLIMATE", + "modbus": { + "address": 604, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_605", + "name": "Ecra 4 E13", + "category": "CLIMATE", + "modbus": { + "address": 605, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_606", + "name": "Ecra 5 E13", + "category": "CLIMATE", + "modbus": { + "address": 606, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_636", + "name": "Zenital E E14", + "category": "CLIMATE", + "modbus": { + "address": 636, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_637", + "name": "Zenital D E14", + "category": "CLIMATE", + "modbus": { + "address": 637, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_638", + "name": "Lateral E E14", + "category": "CLIMATE", + "modbus": { + "address": 638, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_639", + "name": "Lateral D E14", + "category": "CLIMATE", + "modbus": { + "address": 639, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_640", + "name": "Topo F E14", + "category": "CLIMATE", + "modbus": { + "address": 640, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_641", + "name": "Topo T E14", + "category": "CLIMATE", + "modbus": { + "address": 641, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_642", + "name": "Ecra 1 E14", + "category": "CLIMATE", + "modbus": { + "address": 642, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_643", + "name": "Ecra 2 E14", + "category": "CLIMATE", + "modbus": { + "address": 643, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_644", + "name": "Ecra 3 E14", + "category": "CLIMATE", + "modbus": { + "address": 644, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_645", + "name": "Ecra 4 E14", + "category": "CLIMATE", + "modbus": { + "address": 645, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_646", + "name": "Ecra 5 E14", + "category": "CLIMATE", + "modbus": { + "address": 646, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_676", + "name": "Zenital E E15", + "category": "CLIMATE", + "modbus": { + "address": 676, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_677", + "name": "Zenital D E15", + "category": "CLIMATE", + "modbus": { + "address": 677, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_678", + "name": "Lateral E E15", + "category": "CLIMATE", + "modbus": { + "address": 678, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_679", + "name": "Lateral D E15", + "category": "CLIMATE", + "modbus": { + "address": 679, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_680", + "name": "Topo F E15", + "category": "CLIMATE", + "modbus": { + "address": 680, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_681", + "name": "Topo T E15", + "category": "CLIMATE", + "modbus": { + "address": 681, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_682", + "name": "Ecra 1 E15", + "category": "CLIMATE", + "modbus": { + "address": 682, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_683", + "name": "Ecra 2 E15", + "category": "CLIMATE", + "modbus": { + "address": 683, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_684", + "name": "Ecra 3 E15", + "category": "CLIMATE", + "modbus": { + "address": 684, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_685", + "name": "Ecra 4 E15", + "category": "CLIMATE", + "modbus": { + "address": 685, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_686", + "name": "Ecra 5 E15", + "category": "CLIMATE", + "modbus": { + "address": 686, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_716", + "name": "Zenital E E16", + "category": "CLIMATE", + "modbus": { + "address": 716, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_717", + "name": "Zenital D E16", + "category": "CLIMATE", + "modbus": { + "address": 717, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_718", + "name": "Lateral E E16", + "category": "CLIMATE", + "modbus": { + "address": 718, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_719", + "name": "Lateral D E16", + "category": "CLIMATE", + "modbus": { + "address": 719, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_720", + "name": "Topo F E16", + "category": "CLIMATE", + "modbus": { + "address": 720, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_721", + "name": "Topo T E16", + "category": "CLIMATE", + "modbus": { + "address": 721, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_722", + "name": "Ecra 1 E16", + "category": "CLIMATE", + "modbus": { + "address": 722, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_723", + "name": "Ecra 2 E16", + "category": "CLIMATE", + "modbus": { + "address": 723, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_724", + "name": "Ecra 3 E16", + "category": "CLIMATE", + "modbus": { + "address": 724, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_725", + "name": "Ecra 4 E16", + "category": "CLIMATE", + "modbus": { + "address": 725, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_726", + "name": "Ecra 5 E16", + "category": "CLIMATE", + "modbus": { + "address": 726, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_756", + "name": "Zenital E E17", + "category": "CLIMATE", + "modbus": { + "address": 756, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_757", + "name": "Zenital D E17", + "category": "CLIMATE", + "modbus": { + "address": 757, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_758", + "name": "Lateral E E17", + "category": "CLIMATE", + "modbus": { + "address": 758, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_759", + "name": "Lateral D E17", + "category": "CLIMATE", + "modbus": { + "address": 759, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_760", + "name": "Topo F E17", + "category": "CLIMATE", + "modbus": { + "address": 760, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_761", + "name": "Topo T E17", + "category": "CLIMATE", + "modbus": { + "address": 761, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_762", + "name": "Ecra 1 E17", + "category": "CLIMATE", + "modbus": { + "address": 762, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_763", + "name": "Ecra 2 E17", + "category": "CLIMATE", + "modbus": { + "address": 763, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_764", + "name": "Ecra 3 E17", + "category": "CLIMATE", + "modbus": { + "address": 764, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_765", + "name": "Ecra 4 E17", + "category": "CLIMATE", + "modbus": { + "address": 765, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_766", + "name": "Ecra 5 E17", + "category": "CLIMATE", + "modbus": { + "address": 766, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_796", + "name": "Zenital E E18", + "category": "CLIMATE", + "modbus": { + "address": 796, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_797", + "name": "Zenital D E18", + "category": "CLIMATE", + "modbus": { + "address": 797, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_798", + "name": "Lateral E E18", + "category": "CLIMATE", + "modbus": { + "address": 798, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_799", + "name": "Lateral D E18", + "category": "CLIMATE", + "modbus": { + "address": 799, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_800", + "name": "Topo F E18", + "category": "CLIMATE", + "modbus": { + "address": 800, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_801", + "name": "Topo T E18", + "category": "CLIMATE", + "modbus": { + "address": 801, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_802", + "name": "Ecra 1 E18", + "category": "CLIMATE", + "modbus": { + "address": 802, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_803", + "name": "Ecra 2 E18", + "category": "CLIMATE", + "modbus": { + "address": 803, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_804", + "name": "Ecra 3 E18", + "category": "CLIMATE", + "modbus": { + "address": 804, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_805", + "name": "Ecra 4 E18", + "category": "CLIMATE", + "modbus": { + "address": 805, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_806", + "name": "Ecra 5 E18", + "category": "CLIMATE", + "modbus": { + "address": 806, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_836", + "name": "Zenital E E19", + "category": "CLIMATE", + "modbus": { + "address": 836, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_837", + "name": "Zenital D E19", + "category": "CLIMATE", + "modbus": { + "address": 837, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_838", + "name": "Lateral E E19", + "category": "CLIMATE", + "modbus": { + "address": 838, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_839", + "name": "Lateral D E19", + "category": "CLIMATE", + "modbus": { + "address": 839, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_840", + "name": "Topo F E19", + "category": "CLIMATE", + "modbus": { + "address": 840, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_841", + "name": "Topo T E19", + "category": "CLIMATE", + "modbus": { + "address": 841, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_842", + "name": "Ecra 1 E19", + "category": "CLIMATE", + "modbus": { + "address": 842, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_843", + "name": "Ecra 2 E19", + "category": "CLIMATE", + "modbus": { + "address": 843, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_844", + "name": "Ecra 3 E19", + "category": "CLIMATE", + "modbus": { + "address": 844, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_845", + "name": "Ecra 4 E19", + "category": "CLIMATE", + "modbus": { + "address": 845, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_846", + "name": "Ecra 5 E19", + "category": "CLIMATE", + "modbus": { + "address": 846, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_876", + "name": "Zenital E E20", + "category": "CLIMATE", + "modbus": { + "address": 876, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_877", + "name": "Zenital D E20", + "category": "CLIMATE", + "modbus": { + "address": 877, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_878", + "name": "Lateral E E20", + "category": "CLIMATE", + "modbus": { + "address": 878, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_879", + "name": "Lateral D E20", + "category": "CLIMATE", + "modbus": { + "address": 879, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_880", + "name": "Topo F E20", + "category": "CLIMATE", + "modbus": { + "address": 880, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_881", + "name": "Topo T E20", + "category": "CLIMATE", + "modbus": { + "address": 881, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_882", + "name": "Ecra 1 E20", + "category": "CLIMATE", + "modbus": { + "address": 882, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_883", + "name": "Ecra 2 E20", + "category": "CLIMATE", + "modbus": { + "address": 883, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_884", + "name": "Ecra 3 E20", + "category": "CLIMATE", + "modbus": { + "address": 884, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_885", + "name": "Ecra 4 E20", + "category": "CLIMATE", + "modbus": { + "address": 885, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_886", + "name": "Ecra 5 E20", + "category": "CLIMATE", + "modbus": { + "address": 886, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3000", + "name": "Aeroponia - Solução 1 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3000, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3001", + "name": "Aeroponia - Solução 2 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3001, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3002", + "name": "Aeroponia - Solução 3 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3002, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3003", + "name": "Aeroponia - Solução 4 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3003, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3004", + "name": "Aeroponia - Solução 5 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3004, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3005", + "name": "Aeroponia - Solução 6 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3005, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3006", + "name": "Aeroponia - Solução 7 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3006, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3007", + "name": "Aeroponia - Solução 8 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3007, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3008", + "name": "Aeroponia - Solução 9 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3008, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3009", + "name": "Aeroponia - Solução 10 - PH", + "category": "AEROPONICS", + "modbus": { + "address": 3009, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3010", + "name": "Aeroponia - Solução 1 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3010, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3011", + "name": "Aeroponia - Solução 2 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3011, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3012", + "name": "Aeroponia - Solução 3 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3012, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3013", + "name": "Aeroponia - Solução 4 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3013, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3014", + "name": "Aeroponia - Solução 5 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3014, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3015", + "name": "Aeroponia - Solução 6 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3015, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3016", + "name": "Aeroponia - Solução 7 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3016, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3017", + "name": "Aeroponia - Solução 8 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3017, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3018", + "name": "Aeroponia - Solução 9 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3018, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3019", + "name": "Aeroponia - Solução 10 - CE", + "category": "AEROPONICS", + "modbus": { + "address": 3019, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3020", + "name": "Aeroponia - Solução 1 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3020, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3021", + "name": "Aeroponia - Solução 2 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3021, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3022", + "name": "Aeroponia - Solução 3 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3022, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3023", + "name": "Aeroponia - Solução 4 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3023, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3024", + "name": "Aeroponia - Solução 5 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3024, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3025", + "name": "Aeroponia - Solução 6 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3025, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3026", + "name": "Aeroponia - Solução 7 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3026, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3027", + "name": "Aeroponia - Solução 8 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3027, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3028", + "name": "Aeroponia - Solução 9 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3028, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3029", + "name": "Aeroponia - Solução 10 - Temperatura", + "category": "AEROPONICS", + "modbus": { + "address": 3029, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3030", + "name": "Aeroponia - Solução 1 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3030, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3031", + "name": "Aeroponia - Solução 2 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3031, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3032", + "name": "Aeroponia - Solução 3 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3032, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3033", + "name": "Aeroponia - Solução 4 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3033, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3034", + "name": "Aeroponia - Solução 5 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3034, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3035", + "name": "Aeroponia - Solução 6 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3035, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3036", + "name": "Aeroponia - Solução 7 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3036, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3037", + "name": "Aeroponia - Solução 8 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3037, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3038", + "name": "Aeroponia - Solução 9 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3038, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3039", + "name": "Aeroponia - Solução 10 - Pressão", + "category": "AEROPONICS", + "modbus": { + "address": 3039, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3040", + "name": "Aeroponia - Nevoeiro 1", + "category": "AEROPONICS", + "modbus": { + "address": 3040, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3041", + "name": "Aeroponia - Nevoeiro 2", + "category": "AEROPONICS", + "modbus": { + "address": 3041, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3042", + "name": "Aeroponia - Nevoeiro 3", + "category": "AEROPONICS", + "modbus": { + "address": 3042, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3043", + "name": "Aeroponia - Nevoeiro 4", + "category": "AEROPONICS", + "modbus": { + "address": 3043, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3044", + "name": "Aeroponia - Nevoeiro 5", + "category": "AEROPONICS", + "modbus": { + "address": 3044, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3045", + "name": "Aeroponia - Nevoeiro 6", + "category": "AEROPONICS", + "modbus": { + "address": 3045, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3046", + "name": "Aeroponia - Nevoeiro 7", + "category": "AEROPONICS", + "modbus": { + "address": 3046, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3047", + "name": "Aeroponia - Nevoeiro 8", + "category": "AEROPONICS", + "modbus": { + "address": 3047, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3048", + "name": "Aeroponia - Nevoeiro 9", + "category": "AEROPONICS", + "modbus": { + "address": 3048, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3049", + "name": "Aeroponia - Nevoeiro 10", + "category": "AEROPONICS", + "modbus": { + "address": 3049, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3050", + "name": "Aeroponia - Nevoeiro 11", + "category": "AEROPONICS", + "modbus": { + "address": 3050, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3051", + "name": "Aeroponia - Nevoeiro 12", + "category": "AEROPONICS", + "modbus": { + "address": 3051, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3052", + "name": "Aeroponia - Nevoeiro 13", + "category": "AEROPONICS", + "modbus": { + "address": 3052, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3053", + "name": "Aeroponia - Nevoeiro 14", + "category": "AEROPONICS", + "modbus": { + "address": 3053, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3054", + "name": "Aeroponia - Nevoeiro 15", + "category": "AEROPONICS", + "modbus": { + "address": 3054, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3055", + "name": "Aeroponia - Nevoeiro 16", + "category": "AEROPONICS", + "modbus": { + "address": 3055, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3056", + "name": "Aeroponia - Nevoeiro 17", + "category": "AEROPONICS", + "modbus": { + "address": 3056, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3057", + "name": "Aeroponia - Nevoeiro 18", + "category": "AEROPONICS", + "modbus": { + "address": 3057, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3058", + "name": "Aeroponia - Nevoeiro 19", + "category": "AEROPONICS", + "modbus": { + "address": 3058, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3059", + "name": "Aeroponia - Nevoeiro 20", + "category": "AEROPONICS", + "modbus": { + "address": 3059, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3060", + "name": "Aeroponia - Nevoeiro 21", + "category": "AEROPONICS", + "modbus": { + "address": 3060, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3061", + "name": "Aeroponia - Nevoeiro 22", + "category": "AEROPONICS", + "modbus": { + "address": 3061, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3062", + "name": "Aeroponia - Nevoeiro 23", + "category": "AEROPONICS", + "modbus": { + "address": 3062, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3063", + "name": "Aeroponia - Nevoeiro 24", + "category": "AEROPONICS", + "modbus": { + "address": 3063, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3064", + "name": "Aeroponia - Nevoeiro 25", + "category": "AEROPONICS", + "modbus": { + "address": 3064, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3065", + "name": "Aeroponia - Nevoeiro 26", + "category": "AEROPONICS", + "modbus": { + "address": 3065, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3066", + "name": "Aeroponia - Nevoeiro 27", + "category": "AEROPONICS", + "modbus": { + "address": 3066, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3067", + "name": "Aeroponia - Nevoeiro 28", + "category": "AEROPONICS", + "modbus": { + "address": 3067, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3068", + "name": "Aeroponia - Nevoeiro 29", + "category": "AEROPONICS", + "modbus": { + "address": 3068, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3069", + "name": "Aeroponia - Nevoeiro 30", + "category": "AEROPONICS", + "modbus": { + "address": 3069, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3070", + "name": "Aeroponia - Temperatura 1", + "category": "AEROPONICS", + "modbus": { + "address": 3070, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3071", + "name": "Aeroponia - Temperatura 2", + "category": "AEROPONICS", + "modbus": { + "address": 3071, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3072", + "name": "Aeroponia - Temperatura 3", + "category": "AEROPONICS", + "modbus": { + "address": 3072, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3073", + "name": "Aeroponia - Temperatura 4", + "category": "AEROPONICS", + "modbus": { + "address": 3073, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3074", + "name": "Aeroponia - Temperatura 5", + "category": "AEROPONICS", + "modbus": { + "address": 3074, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3075", + "name": "Aeroponia - Temperatura 6", + "category": "AEROPONICS", + "modbus": { + "address": 3075, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3076", + "name": "Aeroponia - Temperatura 7", + "category": "AEROPONICS", + "modbus": { + "address": 3076, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3077", + "name": "Aeroponia - Temperatura 8", + "category": "AEROPONICS", + "modbus": { + "address": 3077, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3078", + "name": "Aeroponia - Temperatura 9", + "category": "AEROPONICS", + "modbus": { + "address": 3078, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3079", + "name": "Aeroponia - Temperatura 10", + "category": "AEROPONICS", + "modbus": { + "address": 3079, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3080", + "name": "Aeroponia - Temperatura 11", + "category": "AEROPONICS", + "modbus": { + "address": 3080, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3081", + "name": "Aeroponia - Temperatura 12", + "category": "AEROPONICS", + "modbus": { + "address": 3081, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3082", + "name": "Aeroponia - Temperatura 13", + "category": "AEROPONICS", + "modbus": { + "address": 3082, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3083", + "name": "Aeroponia - Temperatura 14", + "category": "AEROPONICS", + "modbus": { + "address": 3083, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3084", + "name": "Aeroponia - Temperatura 15", + "category": "AEROPONICS", + "modbus": { + "address": 3084, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3085", + "name": "Aeroponia - Temperatura 16", + "category": "AEROPONICS", + "modbus": { + "address": 3085, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3086", + "name": "Aeroponia - Temperatura 17", + "category": "AEROPONICS", + "modbus": { + "address": 3086, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3087", + "name": "Aeroponia - Temperatura 18", + "category": "AEROPONICS", + "modbus": { + "address": 3087, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3088", + "name": "Aeroponia - Temperatura 19", + "category": "AEROPONICS", + "modbus": { + "address": 3088, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3089", + "name": "Aeroponia - Temperatura 20", + "category": "AEROPONICS", + "modbus": { + "address": 3089, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3090", + "name": "Aeroponia - Temperatura 21", + "category": "AEROPONICS", + "modbus": { + "address": 3090, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3091", + "name": "Aeroponia - Temperatura 22", + "category": "AEROPONICS", + "modbus": { + "address": 3091, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3092", + "name": "Aeroponia - Temperatura 23", + "category": "AEROPONICS", + "modbus": { + "address": 3092, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3093", + "name": "Aeroponia - Temperatura 24", + "category": "AEROPONICS", + "modbus": { + "address": 3093, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3094", + "name": "Aeroponia - Temperatura 25", + "category": "AEROPONICS", + "modbus": { + "address": 3094, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3095", + "name": "Aeroponia - Temperatura 26", + "category": "AEROPONICS", + "modbus": { + "address": 3095, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3096", + "name": "Aeroponia - Temperatura 27", + "category": "AEROPONICS", + "modbus": { + "address": 3096, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3097", + "name": "Aeroponia - Temperatura 28", + "category": "AEROPONICS", + "modbus": { + "address": 3097, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3098", + "name": "Aeroponia - Temperatura 29", + "category": "AEROPONICS", + "modbus": { + "address": 3098, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3099", + "name": "Aeroponia - Temperatura 30", + "category": "AEROPONICS", + "modbus": { + "address": 3099, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "aeroponics.sensor_3100", + "name": "Aeroponia - Temperatura Do Ar", + "category": "AEROPONICS", + "modbus": { + "address": 3100, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3200", + "name": "Humidade solo 1", + "category": "CLIMATE", + "modbus": { + "address": 3200, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3201", + "name": "Humidade solo 2", + "category": "CLIMATE", + "modbus": { + "address": 3201, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3202", + "name": "Humidade solo 3", + "category": "CLIMATE", + "modbus": { + "address": 3202, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3203", + "name": "Humidade solo 4", + "category": "CLIMATE", + "modbus": { + "address": 3203, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3204", + "name": "Humidade solo 5", + "category": "CLIMATE", + "modbus": { + "address": 3204, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3205", + "name": "Humidade solo 6", + "category": "CLIMATE", + "modbus": { + "address": 3205, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3206", + "name": "Humidade solo 7", + "category": "CLIMATE", + "modbus": { + "address": 3206, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3207", + "name": "Humidade solo 8", + "category": "CLIMATE", + "modbus": { + "address": 3207, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3208", + "name": "Humidade solo 9", + "category": "CLIMATE", + "modbus": { + "address": 3208, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3209", + "name": "Humidade solo 10", + "category": "CLIMATE", + "modbus": { + "address": 3209, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3210", + "name": "Humidade solo 11", + "category": "CLIMATE", + "modbus": { + "address": 3210, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3211", + "name": "Humidade solo 12", + "category": "CLIMATE", + "modbus": { + "address": 3211, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3212", + "name": "Humidade solo 13", + "category": "CLIMATE", + "modbus": { + "address": 3212, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3213", + "name": "Humidade solo 14", + "category": "CLIMATE", + "modbus": { + "address": 3213, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3214", + "name": "Humidade solo 15", + "category": "CLIMATE", + "modbus": { + "address": 3214, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3215", + "name": "Humidade solo 16", + "category": "CLIMATE", + "modbus": { + "address": 3215, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3216", + "name": "Humidade solo 17", + "category": "CLIMATE", + "modbus": { + "address": 3216, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3217", + "name": "Humidade solo 18", + "category": "CLIMATE", + "modbus": { + "address": 3217, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3218", + "name": "Humidade solo 19", + "category": "CLIMATE", + "modbus": { + "address": 3218, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3219", + "name": "Humidade solo 20", + "category": "CLIMATE", + "modbus": { + "address": 3219, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3220", + "name": "Humidade solo 21", + "category": "CLIMATE", + "modbus": { + "address": 3220, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3221", + "name": "Humidade solo 22", + "category": "CLIMATE", + "modbus": { + "address": 3221, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3222", + "name": "Humidade solo 23", + "category": "CLIMATE", + "modbus": { + "address": 3222, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3223", + "name": "Humidade solo 24", + "category": "CLIMATE", + "modbus": { + "address": 3223, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3224", + "name": "Humidade solo 25", + "category": "CLIMATE", + "modbus": { + "address": 3224, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3225", + "name": "Humidade solo 26", + "category": "CLIMATE", + "modbus": { + "address": 3225, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3226", + "name": "Humidade solo 27", + "category": "CLIMATE", + "modbus": { + "address": 3226, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3227", + "name": "Humidade solo 28", + "category": "CLIMATE", + "modbus": { + "address": 3227, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3228", + "name": "Humidade solo 29", + "category": "CLIMATE", + "modbus": { + "address": 3228, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3229", + "name": "Humidade solo 30", + "category": "CLIMATE", + "modbus": { + "address": 3229, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3230", + "name": "Humidade solo 31", + "category": "CLIMATE", + "modbus": { + "address": 3230, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3231", + "name": "Humidade solo 32", + "category": "CLIMATE", + "modbus": { + "address": 3231, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3232", + "name": "Humidade solo 33", + "category": "CLIMATE", + "modbus": { + "address": 3232, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3233", + "name": "Humidade solo 34", + "category": "CLIMATE", + "modbus": { + "address": 3233, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3234", + "name": "Humidade solo 35", + "category": "CLIMATE", + "modbus": { + "address": 3234, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3235", + "name": "Humidade solo 36", + "category": "CLIMATE", + "modbus": { + "address": 3235, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3236", + "name": "Temperatura solo 1", + "category": "CLIMATE", + "modbus": { + "address": 3236, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3237", + "name": "Temperatura solo 2", + "category": "CLIMATE", + "modbus": { + "address": 3237, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3238", + "name": "Temperatura solo 3", + "category": "CLIMATE", + "modbus": { + "address": 3238, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3239", + "name": "Temperatura solo 4", + "category": "CLIMATE", + "modbus": { + "address": 3239, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3240", + "name": "Temperatura solo 5", + "category": "CLIMATE", + "modbus": { + "address": 3240, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3241", + "name": "Temperatura solo 6", + "category": "CLIMATE", + "modbus": { + "address": 3241, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3242", + "name": "Temperatura solo 7", + "category": "CLIMATE", + "modbus": { + "address": 3242, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3243", + "name": "Temperatura solo 8", + "category": "CLIMATE", + "modbus": { + "address": 3243, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3244", + "name": "Temperatura solo 9", + "category": "CLIMATE", + "modbus": { + "address": 3244, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3245", + "name": "Temperatura solo 10", + "category": "CLIMATE", + "modbus": { + "address": 3245, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3246", + "name": "Temperatura solo 11", + "category": "CLIMATE", + "modbus": { + "address": 3246, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3247", + "name": "Temperatura solo 12", + "category": "CLIMATE", + "modbus": { + "address": 3247, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3248", + "name": "Temperatura solo 13", + "category": "CLIMATE", + "modbus": { + "address": 3248, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3249", + "name": "Temperatura solo 14", + "category": "CLIMATE", + "modbus": { + "address": 3249, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3250", + "name": "Temperatura solo 15", + "category": "CLIMATE", + "modbus": { + "address": 3250, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3251", + "name": "Temperatura solo 16", + "category": "CLIMATE", + "modbus": { + "address": 3251, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3252", + "name": "Temperatura solo 17", + "category": "CLIMATE", + "modbus": { + "address": 3252, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3253", + "name": "Temperatura solo 18", + "category": "CLIMATE", + "modbus": { + "address": 3253, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3254", + "name": "Temperatura solo 19", + "category": "CLIMATE", + "modbus": { + "address": 3254, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3255", + "name": "Temperatura solo 20", + "category": "CLIMATE", + "modbus": { + "address": 3255, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3256", + "name": "Temperatura solo 21", + "category": "CLIMATE", + "modbus": { + "address": 3256, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3257", + "name": "Temperatura solo 22", + "category": "CLIMATE", + "modbus": { + "address": 3257, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3258", + "name": "Temperatura solo 23", + "category": "CLIMATE", + "modbus": { + "address": 3258, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3259", + "name": "Temperatura solo 24", + "category": "CLIMATE", + "modbus": { + "address": 3259, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3260", + "name": "Temperatura solo 25", + "category": "CLIMATE", + "modbus": { + "address": 3260, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3261", + "name": "Temperatura solo 26", + "category": "CLIMATE", + "modbus": { + "address": 3261, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3262", + "name": "Temperatura solo 27", + "category": "CLIMATE", + "modbus": { + "address": 3262, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3263", + "name": "Temperatura solo 28", + "category": "CLIMATE", + "modbus": { + "address": 3263, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3264", + "name": "Temperatura solo 29", + "category": "CLIMATE", + "modbus": { + "address": 3264, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3265", + "name": "Temperatura solo 30", + "category": "CLIMATE", + "modbus": { + "address": 3265, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3266", + "name": "Temperatura solo 31", + "category": "CLIMATE", + "modbus": { + "address": 3266, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3267", + "name": "Temperatura solo 32", + "category": "CLIMATE", + "modbus": { + "address": 3267, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3268", + "name": "Temperatura solo 33", + "category": "CLIMATE", + "modbus": { + "address": 3268, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3269", + "name": "Temperatura solo 34", + "category": "CLIMATE", + "modbus": { + "address": 3269, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3270", + "name": "Temperatura solo 35", + "category": "CLIMATE", + "modbus": { + "address": 3270, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_3271", + "name": "Temperatura solo 36", + "category": "CLIMATE", + "modbus": { + "address": 3271, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1600", + "name": "Hidro - Tanque 1 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 1600, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1601", + "name": "Hidro - Tanque 1 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 1601, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1602", + "name": "Hidro - Tanque 1 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 1602, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1605", + "name": "Hidro - Tanque 1 - PH", + "category": "HYDRO", + "modbus": { + "address": 1605, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1606", + "name": "Hidro - Tanque 1 - CE", + "category": "HYDRO", + "modbus": { + "address": 1606, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1607", + "name": "Hidro - Tanque 1 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 1607, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1608", + "name": "Hidro - Tanque 1 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 1608, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1609", + "name": "Hidro - Tanque 1 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 1609, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1612", + "name": "Hidro - Tanque 1 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 1612, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_0", + "name": "Hidro - Tanque 1 - A encher", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_1", + "name": "Hidro - Tanque 1 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_2", + "name": "Hidro - Tanque 1 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_3", + "name": "Hidro - Tanque 1 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_4", + "name": "Hidro - Tanque 1 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_5", + "name": "Hidro - Tanque 1 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_6", + "name": "Hidro - Tanque 1 - A regar", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1603_bit_7", + "name": "Hidro - Tanque 1 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 1603, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_0", + "name": "Hidro - Tanque 1 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_1", + "name": "Hidro - Tanque 1 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_2", + "name": "Hidro - Tanque 1 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_3", + "name": "Hidro - Tanque 1 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_4", + "name": "Hidro - Tanque 1 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_5", + "name": "Hidro - Tanque 1 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_6", + "name": "Hidro - Tanque 1 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_7", + "name": "Hidro - Tanque 1 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_8", + "name": "Hidro - Tanque 1 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_9", + "name": "Hidro - Tanque 1 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_10", + "name": "Hidro - Tanque 1 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_11", + "name": "Hidro - Tanque 1 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_12", + "name": "Hidro - Tanque 1 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_13", + "name": "Hidro - Tanque 1 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_14", + "name": "Hidro - Tanque 1 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1610_bit_15", + "name": "Hidro - Tanque 1 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 1610, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1611_bit_0", + "name": "Hidro - Tanque 1 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 1611, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1611_bit_1", + "name": "Hidro - Tanque 1 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 1611, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1611_bit_2", + "name": "Hidro - Tanque 1 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 1611, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1611_bit_3", + "name": "Hidro - Tanque 1 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 1611, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1611_bit_4", + "name": "Hidro - Tanque 1 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 1611, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1700", + "name": "Hidro - Tanque 2 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 1700, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1701", + "name": "Hidro - Tanque 2 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 1701, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1702", + "name": "Hidro - Tanque 2 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 1702, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1705", + "name": "Hidro - Tanque 2 - PH", + "category": "HYDRO", + "modbus": { + "address": 1705, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1706", + "name": "Hidro - Tanque 2 - CE", + "category": "HYDRO", + "modbus": { + "address": 1706, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1707", + "name": "Hidro - Tanque 2 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 1707, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1708", + "name": "Hidro - Tanque 2 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 1708, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1709", + "name": "Hidro - Tanque 2 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 1709, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1712", + "name": "Hidro - Tanque 2 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 1712, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_0", + "name": "Hidro - Tanque 2 - A encher", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_1", + "name": "Hidro - Tanque 2 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_2", + "name": "Hidro - Tanque 2 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_3", + "name": "Hidro - Tanque 2 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_4", + "name": "Hidro - Tanque 2 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_5", + "name": "Hidro - Tanque 2 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_6", + "name": "Hidro - Tanque 2 - A regar", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1703_bit_7", + "name": "Hidro - Tanque 2 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 1703, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_0", + "name": "Hidro - Tanque 2 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_1", + "name": "Hidro - Tanque 2 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_2", + "name": "Hidro - Tanque 2 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_3", + "name": "Hidro - Tanque 2 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_4", + "name": "Hidro - Tanque 2 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_5", + "name": "Hidro - Tanque 2 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_6", + "name": "Hidro - Tanque 2 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_7", + "name": "Hidro - Tanque 2 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_8", + "name": "Hidro - Tanque 2 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_9", + "name": "Hidro - Tanque 2 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_10", + "name": "Hidro - Tanque 2 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_11", + "name": "Hidro - Tanque 2 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_12", + "name": "Hidro - Tanque 2 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_13", + "name": "Hidro - Tanque 2 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_14", + "name": "Hidro - Tanque 2 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1710_bit_15", + "name": "Hidro - Tanque 2 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 1710, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1711_bit_0", + "name": "Hidro - Tanque 2 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 1711, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1711_bit_1", + "name": "Hidro - Tanque 2 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 1711, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1711_bit_2", + "name": "Hidro - Tanque 2 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 1711, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1711_bit_3", + "name": "Hidro - Tanque 2 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 1711, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1711_bit_4", + "name": "Hidro - Tanque 2 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 1711, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1800", + "name": "Hidro - Tanque 3 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 1800, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1801", + "name": "Hidro - Tanque 3 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 1801, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1802", + "name": "Hidro - Tanque 3 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 1802, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1805", + "name": "Hidro - Tanque 3 - PH", + "category": "HYDRO", + "modbus": { + "address": 1805, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1806", + "name": "Hidro - Tanque 3 - CE", + "category": "HYDRO", + "modbus": { + "address": 1806, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1807", + "name": "Hidro - Tanque 3 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 1807, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1808", + "name": "Hidro - Tanque 3 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 1808, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1809", + "name": "Hidro - Tanque 3 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 1809, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1812", + "name": "Hidro - Tanque 3 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 1812, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_0", + "name": "Hidro - Tanque 3 - A encher", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_1", + "name": "Hidro - Tanque 3 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_2", + "name": "Hidro - Tanque 3 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_3", + "name": "Hidro - Tanque 3 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_4", + "name": "Hidro - Tanque 3 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_5", + "name": "Hidro - Tanque 3 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_6", + "name": "Hidro - Tanque 3 - A regar", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1803_bit_7", + "name": "Hidro - Tanque 3 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 1803, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_0", + "name": "Hidro - Tanque 3 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_1", + "name": "Hidro - Tanque 3 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_2", + "name": "Hidro - Tanque 3 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_3", + "name": "Hidro - Tanque 3 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_4", + "name": "Hidro - Tanque 3 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_5", + "name": "Hidro - Tanque 3 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_6", + "name": "Hidro - Tanque 3 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_7", + "name": "Hidro - Tanque 3 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_8", + "name": "Hidro - Tanque 3 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_9", + "name": "Hidro - Tanque 3 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_10", + "name": "Hidro - Tanque 3 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_11", + "name": "Hidro - Tanque 3 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_12", + "name": "Hidro - Tanque 3 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_13", + "name": "Hidro - Tanque 3 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_14", + "name": "Hidro - Tanque 3 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1810_bit_15", + "name": "Hidro - Tanque 3 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 1810, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1811_bit_0", + "name": "Hidro - Tanque 3 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 1811, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1811_bit_1", + "name": "Hidro - Tanque 3 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 1811, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1811_bit_2", + "name": "Hidro - Tanque 3 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 1811, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1811_bit_3", + "name": "Hidro - Tanque 3 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 1811, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1811_bit_4", + "name": "Hidro - Tanque 3 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 1811, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1900", + "name": "Hidro - Tanque 4 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 1900, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1901", + "name": "Hidro - Tanque 4 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 1901, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1902", + "name": "Hidro - Tanque 4 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 1902, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1905", + "name": "Hidro - Tanque 4 - PH", + "category": "HYDRO", + "modbus": { + "address": 1905, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1906", + "name": "Hidro - Tanque 4 - CE", + "category": "HYDRO", + "modbus": { + "address": 1906, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1907", + "name": "Hidro - Tanque 4 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 1907, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1908", + "name": "Hidro - Tanque 4 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 1908, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1909", + "name": "Hidro - Tanque 4 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 1909, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1912", + "name": "Hidro - Tanque 4 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 1912, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_0", + "name": "Hidro - Tanque 4 - A encher", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_1", + "name": "Hidro - Tanque 4 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_2", + "name": "Hidro - Tanque 4 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_3", + "name": "Hidro - Tanque 4 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_4", + "name": "Hidro - Tanque 4 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_5", + "name": "Hidro - Tanque 4 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_6", + "name": "Hidro - Tanque 4 - A regar", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1903_bit_7", + "name": "Hidro - Tanque 4 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 1903, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_0", + "name": "Hidro - Tanque 4 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_1", + "name": "Hidro - Tanque 4 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_2", + "name": "Hidro - Tanque 4 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_3", + "name": "Hidro - Tanque 4 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_4", + "name": "Hidro - Tanque 4 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_5", + "name": "Hidro - Tanque 4 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_6", + "name": "Hidro - Tanque 4 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_7", + "name": "Hidro - Tanque 4 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_8", + "name": "Hidro - Tanque 4 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_9", + "name": "Hidro - Tanque 4 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_10", + "name": "Hidro - Tanque 4 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_11", + "name": "Hidro - Tanque 4 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_12", + "name": "Hidro - Tanque 4 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_13", + "name": "Hidro - Tanque 4 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_14", + "name": "Hidro - Tanque 4 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1910_bit_15", + "name": "Hidro - Tanque 4 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 1910, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1911_bit_0", + "name": "Hidro - Tanque 4 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 1911, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1911_bit_1", + "name": "Hidro - Tanque 4 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 1911, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1911_bit_2", + "name": "Hidro - Tanque 4 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 1911, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1911_bit_3", + "name": "Hidro - Tanque 4 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 1911, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_1911_bit_4", + "name": "Hidro - Tanque 4 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 1911, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2000", + "name": "Hidro - Tanque 5 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 2000, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2001", + "name": "Hidro - Tanque 5 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 2001, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2002", + "name": "Hidro - Tanque 5 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 2002, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2005", + "name": "Hidro - Tanque 5 - PH", + "category": "HYDRO", + "modbus": { + "address": 2005, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2006", + "name": "Hidro - Tanque 5 - CE", + "category": "HYDRO", + "modbus": { + "address": 2006, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2007", + "name": "Hidro - Tanque 5 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 2007, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2008", + "name": "Hidro - Tanque 5 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 2008, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2009", + "name": "Hidro - Tanque 5 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 2009, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2012", + "name": "Hidro - Tanque 5 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 2012, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_0", + "name": "Hidro - Tanque 5 - A encher", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_1", + "name": "Hidro - Tanque 5 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_2", + "name": "Hidro - Tanque 5 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_3", + "name": "Hidro - Tanque 5 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_4", + "name": "Hidro - Tanque 5 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_5", + "name": "Hidro - Tanque 5 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_6", + "name": "Hidro - Tanque 5 - A regar", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2003_bit_7", + "name": "Hidro - Tanque 5 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 2003, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_0", + "name": "Hidro - Tanque 5 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_1", + "name": "Hidro - Tanque 5 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_2", + "name": "Hidro - Tanque 5 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_3", + "name": "Hidro - Tanque 5 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_4", + "name": "Hidro - Tanque 5 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_5", + "name": "Hidro - Tanque 5 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_6", + "name": "Hidro - Tanque 5 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_7", + "name": "Hidro - Tanque 5 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_8", + "name": "Hidro - Tanque 5 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_9", + "name": "Hidro - Tanque 5 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_10", + "name": "Hidro - Tanque 5 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_11", + "name": "Hidro - Tanque 5 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_12", + "name": "Hidro - Tanque 5 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_13", + "name": "Hidro - Tanque 5 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_14", + "name": "Hidro - Tanque 5 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2010_bit_15", + "name": "Hidro - Tanque 5 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 2010, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2011_bit_0", + "name": "Hidro - Tanque 5 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 2011, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2011_bit_1", + "name": "Hidro - Tanque 5 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 2011, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2011_bit_2", + "name": "Hidro - Tanque 5 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 2011, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2011_bit_3", + "name": "Hidro - Tanque 5 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 2011, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2011_bit_4", + "name": "Hidro - Tanque 5 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 2011, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2100", + "name": "Hidro - Tanque 6 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 2100, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2101", + "name": "Hidro - Tanque 6 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 2101, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2102", + "name": "Hidro - Tanque 6 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 2102, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2105", + "name": "Hidro - Tanque 6 - PH", + "category": "HYDRO", + "modbus": { + "address": 2105, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2106", + "name": "Hidro - Tanque 6 - CE", + "category": "HYDRO", + "modbus": { + "address": 2106, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2107", + "name": "Hidro - Tanque 6 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 2107, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2108", + "name": "Hidro - Tanque 6 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 2108, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2109", + "name": "Hidro - Tanque 6 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 2109, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2112", + "name": "Hidro - Tanque 6 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 2112, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_0", + "name": "Hidro - Tanque 6 - A encher", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_1", + "name": "Hidro - Tanque 6 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_2", + "name": "Hidro - Tanque 6 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_3", + "name": "Hidro - Tanque 6 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_4", + "name": "Hidro - Tanque 6 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_5", + "name": "Hidro - Tanque 6 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_6", + "name": "Hidro - Tanque 6 - A regar", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2103_bit_7", + "name": "Hidro - Tanque 6 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 2103, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_0", + "name": "Hidro - Tanque 6 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_1", + "name": "Hidro - Tanque 6 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_2", + "name": "Hidro - Tanque 6 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_3", + "name": "Hidro - Tanque 6 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_4", + "name": "Hidro - Tanque 6 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_5", + "name": "Hidro - Tanque 6 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_6", + "name": "Hidro - Tanque 6 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_7", + "name": "Hidro - Tanque 6 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_8", + "name": "Hidro - Tanque 6 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_9", + "name": "Hidro - Tanque 6 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_10", + "name": "Hidro - Tanque 6 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_11", + "name": "Hidro - Tanque 6 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_12", + "name": "Hidro - Tanque 6 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_13", + "name": "Hidro - Tanque 6 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_14", + "name": "Hidro - Tanque 6 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2110_bit_15", + "name": "Hidro - Tanque 6 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 2110, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2111_bit_0", + "name": "Hidro - Tanque 6 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 2111, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2111_bit_1", + "name": "Hidro - Tanque 6 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 2111, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2111_bit_2", + "name": "Hidro - Tanque 6 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 2111, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2111_bit_3", + "name": "Hidro - Tanque 6 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 2111, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2111_bit_4", + "name": "Hidro - Tanque 6 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 2111, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2200", + "name": "Hidro - Tanque 7 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 2200, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2201", + "name": "Hidro - Tanque 7 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 2201, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2202", + "name": "Hidro - Tanque 7 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 2202, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2205", + "name": "Hidro - Tanque 7 - PH", + "category": "HYDRO", + "modbus": { + "address": 2205, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2206", + "name": "Hidro - Tanque 7 - CE", + "category": "HYDRO", + "modbus": { + "address": 2206, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2207", + "name": "Hidro - Tanque 7 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 2207, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2208", + "name": "Hidro - Tanque 7 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 2208, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2209", + "name": "Hidro - Tanque 7 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 2209, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2212", + "name": "Hidro - Tanque 7 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 2212, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_0", + "name": "Hidro - Tanque 7 - A encher", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_1", + "name": "Hidro - Tanque 7 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_2", + "name": "Hidro - Tanque 7 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_3", + "name": "Hidro - Tanque 7 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_4", + "name": "Hidro - Tanque 7 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_5", + "name": "Hidro - Tanque 7 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_6", + "name": "Hidro - Tanque 7 - A regar", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2203_bit_7", + "name": "Hidro - Tanque 7 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 2203, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_0", + "name": "Hidro - Tanque 7 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_1", + "name": "Hidro - Tanque 7 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_2", + "name": "Hidro - Tanque 7 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_3", + "name": "Hidro - Tanque 7 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_4", + "name": "Hidro - Tanque 7 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_5", + "name": "Hidro - Tanque 7 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_6", + "name": "Hidro - Tanque 7 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_7", + "name": "Hidro - Tanque 7 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_8", + "name": "Hidro - Tanque 7 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_9", + "name": "Hidro - Tanque 7 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_10", + "name": "Hidro - Tanque 7 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_11", + "name": "Hidro - Tanque 7 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_12", + "name": "Hidro - Tanque 7 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_13", + "name": "Hidro - Tanque 7 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_14", + "name": "Hidro - Tanque 7 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2210_bit_15", + "name": "Hidro - Tanque 7 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 2210, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2211_bit_0", + "name": "Hidro - Tanque 7 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 2211, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2211_bit_1", + "name": "Hidro - Tanque 7 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 2211, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2211_bit_2", + "name": "Hidro - Tanque 7 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 2211, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2211_bit_3", + "name": "Hidro - Tanque 7 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 2211, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2211_bit_4", + "name": "Hidro - Tanque 7 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 2211, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2300", + "name": "Hidro - Tanque 8 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 2300, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2301", + "name": "Hidro - Tanque 8 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 2301, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2302", + "name": "Hidro - Tanque 8 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 2302, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2305", + "name": "Hidro - Tanque 8 - PH", + "category": "HYDRO", + "modbus": { + "address": 2305, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2306", + "name": "Hidro - Tanque 8 - CE", + "category": "HYDRO", + "modbus": { + "address": 2306, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2307", + "name": "Hidro - Tanque 8 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 2307, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2308", + "name": "Hidro - Tanque 8 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 2308, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2309", + "name": "Hidro - Tanque 8 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 2309, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2312", + "name": "Hidro - Tanque 8 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 2312, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_0", + "name": "Hidro - Tanque 8 - A encher", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_1", + "name": "Hidro - Tanque 8 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_2", + "name": "Hidro - Tanque 8 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_3", + "name": "Hidro - Tanque 8 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_4", + "name": "Hidro - Tanque 8 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_5", + "name": "Hidro - Tanque 8 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_6", + "name": "Hidro - Tanque 8 - A regar", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2303_bit_7", + "name": "Hidro - Tanque 8 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 2303, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_0", + "name": "Hidro - Tanque 8 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_1", + "name": "Hidro - Tanque 8 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_2", + "name": "Hidro - Tanque 8 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_3", + "name": "Hidro - Tanque 8 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_4", + "name": "Hidro - Tanque 8 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_5", + "name": "Hidro - Tanque 8 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_6", + "name": "Hidro - Tanque 8 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_7", + "name": "Hidro - Tanque 8 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_8", + "name": "Hidro - Tanque 8 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_9", + "name": "Hidro - Tanque 8 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_10", + "name": "Hidro - Tanque 8 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_11", + "name": "Hidro - Tanque 8 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_12", + "name": "Hidro - Tanque 8 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_13", + "name": "Hidro - Tanque 8 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_14", + "name": "Hidro - Tanque 8 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2310_bit_15", + "name": "Hidro - Tanque 8 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 2310, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2311_bit_0", + "name": "Hidro - Tanque 8 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 2311, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2311_bit_1", + "name": "Hidro - Tanque 8 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 2311, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2311_bit_2", + "name": "Hidro - Tanque 8 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 2311, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2311_bit_3", + "name": "Hidro - Tanque 8 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 2311, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2311_bit_4", + "name": "Hidro - Tanque 8 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 2311, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2400", + "name": "Hidro - Tanque 9 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 2400, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2401", + "name": "Hidro - Tanque 9 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 2401, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2402", + "name": "Hidro - Tanque 9 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 2402, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2405", + "name": "Hidro - Tanque 9 - PH", + "category": "HYDRO", + "modbus": { + "address": 2405, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2406", + "name": "Hidro - Tanque 9 - CE", + "category": "HYDRO", + "modbus": { + "address": 2406, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2407", + "name": "Hidro - Tanque 9 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 2407, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2408", + "name": "Hidro - Tanque 9 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 2408, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2409", + "name": "Hidro - Tanque 9 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 2409, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2412", + "name": "Hidro - Tanque 9 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 2412, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_0", + "name": "Hidro - Tanque 9 - A encher", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_1", + "name": "Hidro - Tanque 9 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_2", + "name": "Hidro - Tanque 9 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_3", + "name": "Hidro - Tanque 9 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_4", + "name": "Hidro - Tanque 9 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_5", + "name": "Hidro - Tanque 9 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_6", + "name": "Hidro - Tanque 9 - A regar", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2403_bit_7", + "name": "Hidro - Tanque 9 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 2403, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_0", + "name": "Hidro - Tanque 9 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_1", + "name": "Hidro - Tanque 9 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_2", + "name": "Hidro - Tanque 9 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_3", + "name": "Hidro - Tanque 9 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_4", + "name": "Hidro - Tanque 9 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_5", + "name": "Hidro - Tanque 9 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_6", + "name": "Hidro - Tanque 9 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_7", + "name": "Hidro - Tanque 9 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_8", + "name": "Hidro - Tanque 9 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_9", + "name": "Hidro - Tanque 9 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_10", + "name": "Hidro - Tanque 9 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_11", + "name": "Hidro - Tanque 9 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_12", + "name": "Hidro - Tanque 9 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_13", + "name": "Hidro - Tanque 9 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_14", + "name": "Hidro - Tanque 9 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2410_bit_15", + "name": "Hidro - Tanque 9 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 2410, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2411_bit_0", + "name": "Hidro - Tanque 9 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 2411, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2411_bit_1", + "name": "Hidro - Tanque 9 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 2411, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2411_bit_2", + "name": "Hidro - Tanque 9 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 2411, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2411_bit_3", + "name": "Hidro - Tanque 9 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 2411, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2411_bit_4", + "name": "Hidro - Tanque 9 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 2411, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2500", + "name": "Hidro - Tanque 10 - Altura Agua", + "category": "HYDRO", + "modbus": { + "address": 2500, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2501", + "name": "Hidro - Tanque 10 - Volume Agua", + "category": "HYDRO", + "modbus": { + "address": 2501, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2502", + "name": "Hidro - Tanque 10 - Percentagem Agua", + "category": "HYDRO", + "modbus": { + "address": 2502, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2505", + "name": "Hidro - Tanque 10 - PH", + "category": "HYDRO", + "modbus": { + "address": 2505, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2506", + "name": "Hidro - Tanque 10 - CE", + "category": "HYDRO", + "modbus": { + "address": 2506, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2507", + "name": "Hidro - Tanque 10 - Temperatura Agua", + "category": "HYDRO", + "modbus": { + "address": 2507, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2508", + "name": "Hidro - Tanque 10 - Pressao", + "category": "HYDRO", + "modbus": { + "address": 2508, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Bar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2509", + "name": "Hidro - Tanque 10 - Programa a regar", + "category": "HYDRO", + "modbus": { + "address": 2509, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2512", + "name": "Hidro - Tanque 10 - Grupo a regar", + "category": "HYDRO", + "modbus": { + "address": 2512, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_0", + "name": "Hidro - Tanque 10 - A encher", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_1", + "name": "Hidro - Tanque 10 - A esvaziar", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_2", + "name": "Hidro - Tanque 10 - Bomba On", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_3", + "name": "Hidro - Tanque 10 - Nivel minimo", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_4", + "name": "Hidro - Tanque 10 - Nivel encher", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_5", + "name": "Hidro - Tanque 10 - Nivel maximo", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_6", + "name": "Hidro - Tanque 10 - A regar", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2503_bit_7", + "name": "Hidro - Tanque 10 - A encher (efetivo)", + "category": "HYDRO", + "modbus": { + "address": 2503, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_0", + "name": "Hidro - Tanque 10 - Setor 1 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_1", + "name": "Hidro - Tanque 10 - Setor 2 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_2", + "name": "Hidro - Tanque 10 - Setor 3 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_3", + "name": "Hidro - Tanque 10 - Setor 4 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_4", + "name": "Hidro - Tanque 10 - Setor 5 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_5", + "name": "Hidro - Tanque 10 - Setor 6 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 5 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_6", + "name": "Hidro - Tanque 10 - Setor 7 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 6 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_7", + "name": "Hidro - Tanque 10 - Setor 8 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 7 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_8", + "name": "Hidro - Tanque 10 - Setor 9 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 8 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_9", + "name": "Hidro - Tanque 10 - Setor 10 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 9 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_10", + "name": "Hidro - Tanque 10 - Setor 11 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 10 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_11", + "name": "Hidro - Tanque 10 - Setor 12 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 11 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_12", + "name": "Hidro - Tanque 10 - Setor 13 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 12 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_13", + "name": "Hidro - Tanque 10 - Setor 14 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 13 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_14", + "name": "Hidro - Tanque 10 - Setor 15 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 14 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2510_bit_15", + "name": "Hidro - Tanque 10 - Setor 16 On", + "category": "HYDRO", + "modbus": { + "address": 2510, + "bitOffset": 15 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2511_bit_0", + "name": "Hidro - Tanque 10 - Setor 17 On", + "category": "HYDRO", + "modbus": { + "address": 2511, + "bitOffset": 0 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2511_bit_1", + "name": "Hidro - Tanque 10 - Setor 18 On", + "category": "HYDRO", + "modbus": { + "address": 2511, + "bitOffset": 1 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2511_bit_2", + "name": "Hidro - Tanque 10 - Setor 19 On", + "category": "HYDRO", + "modbus": { + "address": 2511, + "bitOffset": 2 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2511_bit_3", + "name": "Hidro - Tanque 10 - Setor 20 On", + "category": "HYDRO", + "modbus": { + "address": 2511, + "bitOffset": 3 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "hydro.sensor_2511_bit_4", + "name": "Hidro - Tanque 10 - Recirculacao On", + "category": "HYDRO", + "modbus": { + "address": 2511, + "bitOffset": 4 + }, + "valueType": "BOOLEAN", + "unit": null, + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1100", + "name": "PH1 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1100, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1101", + "name": "PH2 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1101, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1102", + "name": "CE1 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1102, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1103", + "name": "CE2 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1103, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1104", + "name": "CE3 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1104, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1105", + "name": "Temperatura CE1 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1105, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1106", + "name": "Temperatura CE2 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1106, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1107", + "name": "Temperatura CE3 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1107, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1108", + "name": "Pressao Bomba 1 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1108, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1109", + "name": "Pressao Bomba 2 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1109, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1110", + "name": "Pressao Bomba 3 C2", + "category": "IRRIGATION", + "modbus": { + "address": 1110, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1114", + "name": "Referencia PH C2", + "category": "IRRIGATION", + "modbus": { + "address": 1114, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1115", + "name": "Modulacao PH C2", + "category": "IRRIGATION", + "modbus": { + "address": 1115, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1116", + "name": "Referencia CE C2", + "category": "IRRIGATION", + "modbus": { + "address": 1116, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1117", + "name": "Modulacao CE C2", + "category": "IRRIGATION", + "modbus": { + "address": 1117, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1200", + "name": "PH1 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1200, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1201", + "name": "PH2 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1201, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1202", + "name": "CE1 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1202, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1203", + "name": "CE2 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1203, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1204", + "name": "CE3 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1204, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1205", + "name": "Temperatura CE1 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1205, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1206", + "name": "Temperatura CE2 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1206, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1207", + "name": "Temperatura CE3 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1207, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1208", + "name": "Pressao Bomba 1 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1208, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1209", + "name": "Pressao Bomba 2 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1209, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1210", + "name": "Pressao Bomba 3 C3", + "category": "IRRIGATION", + "modbus": { + "address": 1210, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1214", + "name": "Referencia PH C3", + "category": "IRRIGATION", + "modbus": { + "address": 1214, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1215", + "name": "Modulacao PH C3", + "category": "IRRIGATION", + "modbus": { + "address": 1215, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1216", + "name": "Referencia CE C3", + "category": "IRRIGATION", + "modbus": { + "address": 1216, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1217", + "name": "Modulacao CE C3", + "category": "IRRIGATION", + "modbus": { + "address": 1217, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1300", + "name": "PH1 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1300, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1301", + "name": "PH2 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1301, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1302", + "name": "CE1 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1302, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1303", + "name": "CE2 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1303, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1304", + "name": "CE3 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1304, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1305", + "name": "Temperatura CE1 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1305, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1306", + "name": "Temperatura CE2 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1306, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1307", + "name": "Temperatura CE3 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1307, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1308", + "name": "Pressao Bomba 1 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1308, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1309", + "name": "Pressao Bomba 2 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1309, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1310", + "name": "Pressao Bomba 3 C4", + "category": "IRRIGATION", + "modbus": { + "address": 1310, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1314", + "name": "Referencia PH C4", + "category": "IRRIGATION", + "modbus": { + "address": 1314, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1315", + "name": "Modulacao PH C4", + "category": "IRRIGATION", + "modbus": { + "address": 1315, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1316", + "name": "Referencia CE C4", + "category": "IRRIGATION", + "modbus": { + "address": 1316, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1317", + "name": "Modulacao CE C4", + "category": "IRRIGATION", + "modbus": { + "address": 1317, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1400", + "name": "PH1 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1400, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1401", + "name": "PH2 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1401, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1402", + "name": "CE1 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1402, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1403", + "name": "CE2 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1403, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1404", + "name": "CE3 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1404, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1405", + "name": "Temperatura CE1 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1405, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1406", + "name": "Temperatura CE2 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1406, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1407", + "name": "Temperatura CE3 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1407, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1408", + "name": "Pressao Bomba 1 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1408, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1409", + "name": "Pressao Bomba 2 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1409, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1410", + "name": "Pressao Bomba 3 C5", + "category": "IRRIGATION", + "modbus": { + "address": 1410, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1414", + "name": "Referencia PH C5", + "category": "IRRIGATION", + "modbus": { + "address": 1414, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1415", + "name": "Modulacao PH C5", + "category": "IRRIGATION", + "modbus": { + "address": 1415, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1416", + "name": "Referencia CE C5", + "category": "IRRIGATION", + "modbus": { + "address": 1416, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1417", + "name": "Modulacao CE C5", + "category": "IRRIGATION", + "modbus": { + "address": 1417, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1500", + "name": "PH1 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1500, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1501", + "name": "PH2 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1501, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1502", + "name": "CE1 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1502, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1503", + "name": "CE2 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1503, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1504", + "name": "CE3 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1504, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1505", + "name": "Temperatura CE1 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1505, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1506", + "name": "Temperatura CE2 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1506, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1507", + "name": "Temperatura CE3 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1507, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1508", + "name": "Pressao Bomba 1 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1508, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1509", + "name": "Pressao Bomba 2 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1509, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1510", + "name": "Pressao Bomba 3 C6", + "category": "IRRIGATION", + "modbus": { + "address": 1510, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1514", + "name": "Referencia PH C6", + "category": "IRRIGATION", + "modbus": { + "address": 1514, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1515", + "name": "Modulacao PH C6", + "category": "IRRIGATION", + "modbus": { + "address": 1515, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1516", + "name": "Referencia CE C6", + "category": "IRRIGATION", + "modbus": { + "address": 1516, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_1517", + "name": "Modulacao CE C6", + "category": "IRRIGATION", + "modbus": { + "address": 1517, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3300", + "name": "Dren. - Peso Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3300, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3301", + "name": "Dren. - PH Agua Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3301, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3302", + "name": "Dren. - CE Agua Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3302, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3303", + "name": "Dren. - Temperatura Agua Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3303, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3304", + "name": "Dren. - CE Solo Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3304, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3305", + "name": "Dren. - Temperatura Solo Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3305, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3306", + "name": "Dren. - Humidade Solo Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3306, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3307", + "name": "Dren. - Drenagem Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3307, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 3, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3308", + "name": "Dren. - Capacidade Bancada 1", + "category": "IRRIGATION", + "modbus": { + "address": 3308, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3310", + "name": "Dren. - Peso Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3310, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3311", + "name": "Dren. - PH Agua Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3311, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3312", + "name": "Dren. - CE Agua Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3312, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3313", + "name": "Dren. - Temperatura Agua Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3313, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3314", + "name": "Dren. - CE Solo Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3314, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3315", + "name": "Dren. - Temperatura Solo Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3315, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3316", + "name": "Dren. - Humidade Solo Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3316, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3317", + "name": "Dren. - Drenagem Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3317, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 3, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3318", + "name": "Dren. - Capacidade Bancada 2", + "category": "IRRIGATION", + "modbus": { + "address": 3318, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3320", + "name": "Dren. - Peso Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3320, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3321", + "name": "Dren. - PH Agua Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3321, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3322", + "name": "Dren. - CE Agua Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3322, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3323", + "name": "Dren. - Temperatura Agua Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3323, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3324", + "name": "Dren. - CE Solo Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3324, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3325", + "name": "Dren. - Temperatura Solo Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3325, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3326", + "name": "Dren. - Humidade Solo Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3326, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3327", + "name": "Dren. - Drenagem Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3327, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 3, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3328", + "name": "Dren. - Capacidade Bancada 3", + "category": "IRRIGATION", + "modbus": { + "address": 3328, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3330", + "name": "Dren. - Peso Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3330, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3331", + "name": "Dren. - PH Agua Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3331, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3332", + "name": "Dren. - CE Agua Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3332, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3333", + "name": "Dren. - Temperatura Agua Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3333, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3334", + "name": "Dren. - CE Solo Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3334, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3335", + "name": "Dren. - Temperatura Solo Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3335, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3336", + "name": "Dren. - Humidade Solo Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3336, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3337", + "name": "Dren. - Drenagem Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3337, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3338", + "name": "Dren. - Capacidade Bancada 4", + "category": "IRRIGATION", + "modbus": { + "address": 3338, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3340", + "name": "Dren. - Peso Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3340, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3341", + "name": "Dren. - PH Agua Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3341, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3342", + "name": "Dren. - CE Agua Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3342, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3343", + "name": "Dren. - Temperatura Agua Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3343, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3344", + "name": "Dren. - CE Solo Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3344, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3345", + "name": "Dren. - Temperatura Solo Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3345, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3346", + "name": "Dren. - Humidade Solo Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3346, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3347", + "name": "Dren. - Drenagem Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3347, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3348", + "name": "Dren. - Capacidade Bancada 5", + "category": "IRRIGATION", + "modbus": { + "address": 3348, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3350", + "name": "Dren. - Peso Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3350, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3351", + "name": "Dren. - PH Agua Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3351, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3352", + "name": "Dren. - CE Agua Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3352, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3353", + "name": "Dren. - Temperatura Agua Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3353, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3354", + "name": "Dren. - CE Solo Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3354, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3355", + "name": "Dren. - Temperatura Solo Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3355, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3356", + "name": "Dren. - Humidade Solo Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3356, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3357", + "name": "Dren. - Drenagem Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3357, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3358", + "name": "Dren. - Capacidade Bancada 6", + "category": "IRRIGATION", + "modbus": { + "address": 3358, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3360", + "name": "Dren. - Peso Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3360, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3361", + "name": "Dren. - PH Agua Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3361, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3362", + "name": "Dren. - CE Agua Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3362, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3363", + "name": "Dren. - Temperatura Agua Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3363, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3364", + "name": "Dren. - CE Solo Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3364, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3365", + "name": "Dren. - Temperatura Solo Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3365, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3366", + "name": "Dren. - Humidade Solo Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3366, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3367", + "name": "Dren. - Drenagem Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3367, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3368", + "name": "Dren. - Capacidade Bancada 7", + "category": "IRRIGATION", + "modbus": { + "address": 3368, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3370", + "name": "Dren. - Peso Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3370, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3371", + "name": "Dren. - PH Agua Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3371, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3372", + "name": "Dren. - CE Agua Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3372, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3373", + "name": "Dren. - Temperatura Agua Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3373, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3374", + "name": "Dren. - CE Solo Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3374, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3375", + "name": "Dren. - Temperatura Solo Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3375, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3376", + "name": "Dren. - Humidade Solo Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3376, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3377", + "name": "Dren. - Drenagem Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3377, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3378", + "name": "Dren. - Capacidade Bancada 8", + "category": "IRRIGATION", + "modbus": { + "address": 3378, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3380", + "name": "Dren. - Peso Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3380, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3381", + "name": "Dren. - PH Agua Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3381, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3382", + "name": "Dren. - CE Agua Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3382, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3383", + "name": "Dren. - Temperatura Agua Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3383, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3384", + "name": "Dren. - CE Solo Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3384, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3385", + "name": "Dren. - Temperatura Solo Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3385, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3386", + "name": "Dren. - Humidade Solo Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3386, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3387", + "name": "Dren. - Drenagem Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3387, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3388", + "name": "Dren. - Capacidade Bancada 9", + "category": "IRRIGATION", + "modbus": { + "address": 3388, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3390", + "name": "Dren. - Peso Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3390, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3391", + "name": "Dren. - PH Agua Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3391, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3392", + "name": "Dren. - CE Agua Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3392, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3393", + "name": "Dren. - Temperatura Agua Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3393, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3394", + "name": "Dren. - CE Solo Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3394, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3395", + "name": "Dren. - Temperatura Solo Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3395, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3396", + "name": "Dren. - Humidade Solo Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3396, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3397", + "name": "Dren. - Drenagem Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3397, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3398", + "name": "Dren. - Capacidade Bancada 10", + "category": "IRRIGATION", + "modbus": { + "address": 3398, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3400", + "name": "Dren. - Peso Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3400, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "Kg", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3401", + "name": "Dren. - PH Agua Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3401, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": null, + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3402", + "name": "Dren. - CE Agua Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3402, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3403", + "name": "Dren. - Temperatura Agua Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3403, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3404", + "name": "Dren. - CE Solo Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3404, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mS", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3405", + "name": "Dren. - Temperatura Solo Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3405, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "C", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3406", + "name": "Dren. - Humidade Solo Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3406, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "%", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3407", + "name": "Dren. - Drenagem Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3407, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "L", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_3408", + "name": "Dren. - Capacidade Bancada 11", + "category": "IRRIGATION", + "modbus": { + "address": 3408, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mL", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4220", + "name": "Rad - Sensor 1", + "category": "IRRIGATION", + "modbus": { + "address": 4220, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4221", + "name": "Rad - Sensor 2", + "category": "IRRIGATION", + "modbus": { + "address": 4221, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4222", + "name": "Rad - Sensor 3", + "category": "IRRIGATION", + "modbus": { + "address": 4222, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4223", + "name": "Rad - Sensor 4", + "category": "IRRIGATION", + "modbus": { + "address": 4223, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4224", + "name": "Rad - Sensor 5", + "category": "IRRIGATION", + "modbus": { + "address": 4224, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4225", + "name": "Rad - Sensor 6", + "category": "IRRIGATION", + "modbus": { + "address": 4225, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4226", + "name": "Rad - Sensor 7", + "category": "IRRIGATION", + "modbus": { + "address": 4226, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4227", + "name": "Rad - Sensor 8", + "category": "IRRIGATION", + "modbus": { + "address": 4227, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4228", + "name": "Rad - Sensor 9", + "category": "IRRIGATION", + "modbus": { + "address": 4228, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4229", + "name": "Rad - Sensor 10", + "category": "IRRIGATION", + "modbus": { + "address": 4229, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4230", + "name": "Rad - Sensor 11", + "category": "IRRIGATION", + "modbus": { + "address": 4230, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4231", + "name": "Rad - Sensor 12", + "category": "IRRIGATION", + "modbus": { + "address": 4231, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4232", + "name": "Rad - Sensor 13", + "category": "IRRIGATION", + "modbus": { + "address": 4232, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4233", + "name": "Rad - Sensor 14", + "category": "IRRIGATION", + "modbus": { + "address": 4233, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4234", + "name": "Rad - Sensor 15", + "category": "IRRIGATION", + "modbus": { + "address": 4234, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4235", + "name": "Rad - Sensor 16", + "category": "IRRIGATION", + "modbus": { + "address": 4235, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4236", + "name": "Rad - Sensor 17", + "category": "IRRIGATION", + "modbus": { + "address": 4236, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4237", + "name": "Rad - Sensor 18", + "category": "IRRIGATION", + "modbus": { + "address": 4237, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4238", + "name": "Rad - Sensor 19", + "category": "IRRIGATION", + "modbus": { + "address": 4238, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4239", + "name": "Rad - Sensor 20", + "category": "IRRIGATION", + "modbus": { + "address": 4239, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4240", + "name": "Rad Acum - C1 P1", + "category": "IRRIGATION", + "modbus": { + "address": 4240, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4241", + "name": "Rad Acum - C1 P2", + "category": "IRRIGATION", + "modbus": { + "address": 4241, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4242", + "name": "Rad Acum - C1 P3", + "category": "IRRIGATION", + "modbus": { + "address": 4242, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4243", + "name": "Rad Acum - C1 P4", + "category": "IRRIGATION", + "modbus": { + "address": 4243, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4244", + "name": "Rad Acum - C1 P5", + "category": "IRRIGATION", + "modbus": { + "address": 4244, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4245", + "name": "Rad Acum - C1 P6", + "category": "IRRIGATION", + "modbus": { + "address": 4245, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4246", + "name": "Rad Acum - C1 P7", + "category": "IRRIGATION", + "modbus": { + "address": 4246, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4247", + "name": "Rad Acum - C1 P8", + "category": "IRRIGATION", + "modbus": { + "address": 4247, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4248", + "name": "Rad Acum - C1 P9", + "category": "IRRIGATION", + "modbus": { + "address": 4248, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "w/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4249", + "name": "Rad Acum - C1 P10", + "category": "IRRIGATION", + "modbus": { + "address": 4249, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4250", + "name": "Rad Acum - C1 P11", + "category": "IRRIGATION", + "modbus": { + "address": 4250, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4251", + "name": "Rad Acum - C1 P12", + "category": "IRRIGATION", + "modbus": { + "address": 4251, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4252", + "name": "Rad Acum - C1 P13", + "category": "IRRIGATION", + "modbus": { + "address": 4252, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4253", + "name": "Rad Acum - C1 P14", + "category": "IRRIGATION", + "modbus": { + "address": 4253, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4254", + "name": "Rad Acum - C1 P15", + "category": "IRRIGATION", + "modbus": { + "address": 4254, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4255", + "name": "Rad Acum - C1 P16", + "category": "IRRIGATION", + "modbus": { + "address": 4255, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4256", + "name": "Rad Acum - C1 P17", + "category": "IRRIGATION", + "modbus": { + "address": 4256, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4257", + "name": "Rad Acum - C1 P18", + "category": "IRRIGATION", + "modbus": { + "address": 4257, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4258", + "name": "Rad Acum - C1 P19", + "category": "IRRIGATION", + "modbus": { + "address": 4258, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4259", + "name": "Rad Acum - C1 P120", + "category": "IRRIGATION", + "modbus": { + "address": 4259, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4260", + "name": "Rad Acum - C2 P1", + "category": "IRRIGATION", + "modbus": { + "address": 4260, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4261", + "name": "Rad Acum - C2 P2", + "category": "IRRIGATION", + "modbus": { + "address": 4261, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4262", + "name": "Rad Acum - C2 P3", + "category": "IRRIGATION", + "modbus": { + "address": 4262, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4263", + "name": "Rad Acum - C2 P4", + "category": "IRRIGATION", + "modbus": { + "address": 4263, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4264", + "name": "Rad Acum - C2 P5", + "category": "IRRIGATION", + "modbus": { + "address": 4264, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4265", + "name": "Rad Acum - C2 P6", + "category": "IRRIGATION", + "modbus": { + "address": 4265, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4266", + "name": "Rad Acum - C2 P7", + "category": "IRRIGATION", + "modbus": { + "address": 4266, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4267", + "name": "Rad Acum - C2 P8", + "category": "IRRIGATION", + "modbus": { + "address": 4267, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4268", + "name": "Rad Acum - C2 P9", + "category": "IRRIGATION", + "modbus": { + "address": 4268, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4269", + "name": "Rad Acum - C2 P10", + "category": "IRRIGATION", + "modbus": { + "address": 4269, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4270", + "name": "Rad Acum - C2 P11", + "category": "IRRIGATION", + "modbus": { + "address": 4270, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4271", + "name": "Rad Acum - C2 P12", + "category": "IRRIGATION", + "modbus": { + "address": 4271, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4272", + "name": "Rad Acum - C2 P13", + "category": "IRRIGATION", + "modbus": { + "address": 4272, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4273", + "name": "Rad Acum - C2 P14", + "category": "IRRIGATION", + "modbus": { + "address": 4273, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4274", + "name": "Rad Acum - C2 P15", + "category": "IRRIGATION", + "modbus": { + "address": 4274, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4275", + "name": "Rad Acum - C2 P16", + "category": "IRRIGATION", + "modbus": { + "address": 4275, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4276", + "name": "Rad Acum - C2 P17", + "category": "IRRIGATION", + "modbus": { + "address": 4276, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4277", + "name": "Rad Acum - C2 P18", + "category": "IRRIGATION", + "modbus": { + "address": 4277, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4278", + "name": "Rad Acum - C2 P19", + "category": "IRRIGATION", + "modbus": { + "address": 4278, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4279", + "name": "Rad Acum - C2 P120", + "category": "IRRIGATION", + "modbus": { + "address": 4279, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4280", + "name": "Rad Acum - C3 P1", + "category": "IRRIGATION", + "modbus": { + "address": 4280, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4281", + "name": "Rad Acum - C3 P2", + "category": "IRRIGATION", + "modbus": { + "address": 4281, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4282", + "name": "Rad Acum - C3 P3", + "category": "IRRIGATION", + "modbus": { + "address": 4282, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4283", + "name": "Rad Acum - C3 P4", + "category": "IRRIGATION", + "modbus": { + "address": 4283, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4284", + "name": "Rad Acum - C3 P5", + "category": "IRRIGATION", + "modbus": { + "address": 4284, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4285", + "name": "Rad Acum - C3 P6", + "category": "IRRIGATION", + "modbus": { + "address": 4285, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4286", + "name": "Rad Acum - C3 P7", + "category": "IRRIGATION", + "modbus": { + "address": 4286, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4287", + "name": "Rad Acum - C3 P8", + "category": "IRRIGATION", + "modbus": { + "address": 4287, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4288", + "name": "Rad Acum - C3 P9", + "category": "IRRIGATION", + "modbus": { + "address": 4288, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4289", + "name": "Rad Acum - C3 P10", + "category": "IRRIGATION", + "modbus": { + "address": 4289, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4290", + "name": "Rad Acum - C3 P11", + "category": "IRRIGATION", + "modbus": { + "address": 4290, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4291", + "name": "Rad Acum - C3 P12", + "category": "IRRIGATION", + "modbus": { + "address": 4291, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4292", + "name": "Rad Acum - C3 P13", + "category": "IRRIGATION", + "modbus": { + "address": 4292, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4293", + "name": "Rad Acum - C3 P14", + "category": "IRRIGATION", + "modbus": { + "address": 4293, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4294", + "name": "Rad Acum - C3 P15", + "category": "IRRIGATION", + "modbus": { + "address": 4294, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4295", + "name": "Rad Acum - C3 P16", + "category": "IRRIGATION", + "modbus": { + "address": 4295, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4296", + "name": "Rad Acum - C3 P17", + "category": "IRRIGATION", + "modbus": { + "address": 4296, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4297", + "name": "Rad Acum - C3 P18", + "category": "IRRIGATION", + "modbus": { + "address": 4297, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4298", + "name": "Rad Acum - C3 P19", + "category": "IRRIGATION", + "modbus": { + "address": 4298, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4299", + "name": "Rad Acum - C3 P120", + "category": "IRRIGATION", + "modbus": { + "address": 4299, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4300", + "name": "Rad Acum - C4 P1", + "category": "IRRIGATION", + "modbus": { + "address": 4300, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4301", + "name": "Rad Acum - C4 P2", + "category": "IRRIGATION", + "modbus": { + "address": 4301, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4302", + "name": "Rad Acum - C4 P3", + "category": "IRRIGATION", + "modbus": { + "address": 4302, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4303", + "name": "Rad Acum - C4 P4", + "category": "IRRIGATION", + "modbus": { + "address": 4303, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4304", + "name": "Rad Acum - C4 P5", + "category": "IRRIGATION", + "modbus": { + "address": 4304, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4305", + "name": "Rad Acum - C4 P6", + "category": "IRRIGATION", + "modbus": { + "address": 4305, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4306", + "name": "Rad Acum - C4 P7", + "category": "IRRIGATION", + "modbus": { + "address": 4306, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4307", + "name": "Rad Acum - C4 P8", + "category": "IRRIGATION", + "modbus": { + "address": 4307, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4308", + "name": "Rad Acum - C4 P9", + "category": "IRRIGATION", + "modbus": { + "address": 4308, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4309", + "name": "Rad Acum - C4 P10", + "category": "IRRIGATION", + "modbus": { + "address": 4309, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4310", + "name": "Rad Acum - C4 P11", + "category": "IRRIGATION", + "modbus": { + "address": 4310, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4311", + "name": "Rad Acum - C4 P12", + "category": "IRRIGATION", + "modbus": { + "address": 4311, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4312", + "name": "Rad Acum - C4 P13", + "category": "IRRIGATION", + "modbus": { + "address": 4312, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4313", + "name": "Rad Acum - C4 P14", + "category": "IRRIGATION", + "modbus": { + "address": 4313, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4314", + "name": "Rad Acum - C4 P15", + "category": "IRRIGATION", + "modbus": { + "address": 4314, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4315", + "name": "Rad Acum - C4 P16", + "category": "IRRIGATION", + "modbus": { + "address": 4315, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4316", + "name": "Rad Acum - C4 P17", + "category": "IRRIGATION", + "modbus": { + "address": 4316, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4317", + "name": "Rad Acum - C4 P18", + "category": "IRRIGATION", + "modbus": { + "address": 4317, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4318", + "name": "Rad Acum - C4 P19", + "category": "IRRIGATION", + "modbus": { + "address": 4318, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4319", + "name": "Rad Acum - C4 P120", + "category": "IRRIGATION", + "modbus": { + "address": 4319, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4320", + "name": "Rad Acum - C5 P1", + "category": "IRRIGATION", + "modbus": { + "address": 4320, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4321", + "name": "Rad Acum - C5 P2", + "category": "IRRIGATION", + "modbus": { + "address": 4321, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4322", + "name": "Rad Acum - C5 P3", + "category": "IRRIGATION", + "modbus": { + "address": 4322, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4323", + "name": "Rad Acum - C5 P4", + "category": "IRRIGATION", + "modbus": { + "address": 4323, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4324", + "name": "Rad Acum - C5 P5", + "category": "IRRIGATION", + "modbus": { + "address": 4324, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4325", + "name": "Rad Acum - C5 P6", + "category": "IRRIGATION", + "modbus": { + "address": 4325, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4326", + "name": "Rad Acum - C5 P7", + "category": "IRRIGATION", + "modbus": { + "address": 4326, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4327", + "name": "Rad Acum - C5 P8", + "category": "IRRIGATION", + "modbus": { + "address": 4327, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4328", + "name": "Rad Acum - C5 P9", + "category": "IRRIGATION", + "modbus": { + "address": 4328, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4329", + "name": "Rad Acum - C5 P10", + "category": "IRRIGATION", + "modbus": { + "address": 4329, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4330", + "name": "Rad Acum - C5 P11", + "category": "IRRIGATION", + "modbus": { + "address": 4330, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4331", + "name": "Rad Acum - C5 P12", + "category": "IRRIGATION", + "modbus": { + "address": 4331, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4332", + "name": "Rad Acum - C5 P13", + "category": "IRRIGATION", + "modbus": { + "address": 4332, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4333", + "name": "Rad Acum - C5 P14", + "category": "IRRIGATION", + "modbus": { + "address": 4333, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4334", + "name": "Rad Acum - C5 P15", + "category": "IRRIGATION", + "modbus": { + "address": 4334, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4335", + "name": "Rad Acum - C5 P16", + "category": "IRRIGATION", + "modbus": { + "address": 4335, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4336", + "name": "Rad Acum - C5 P17", + "category": "IRRIGATION", + "modbus": { + "address": 4336, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4337", + "name": "Rad Acum - C5 P18", + "category": "IRRIGATION", + "modbus": { + "address": 4337, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4338", + "name": "Rad Acum - C5 P19", + "category": "IRRIGATION", + "modbus": { + "address": 4338, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4339", + "name": "Rad Acum - C5 P120", + "category": "IRRIGATION", + "modbus": { + "address": 4339, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4340", + "name": "Rad Acum - C6 P1", + "category": "IRRIGATION", + "modbus": { + "address": 4340, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4341", + "name": "Rad Acum - C6 P2", + "category": "IRRIGATION", + "modbus": { + "address": 4341, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4342", + "name": "Rad Acum - C6 P3", + "category": "IRRIGATION", + "modbus": { + "address": 4342, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4343", + "name": "Rad Acum - C6 P4", + "category": "IRRIGATION", + "modbus": { + "address": 4343, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4344", + "name": "Rad Acum - C6 P5", + "category": "IRRIGATION", + "modbus": { + "address": 4344, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4345", + "name": "Rad Acum - C6 P6", + "category": "IRRIGATION", + "modbus": { + "address": 4345, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4346", + "name": "Rad Acum - C6 P7", + "category": "IRRIGATION", + "modbus": { + "address": 4346, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4347", + "name": "Rad Acum - C6 P8", + "category": "IRRIGATION", + "modbus": { + "address": 4347, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4348", + "name": "Rad Acum - C6 P9", + "category": "IRRIGATION", + "modbus": { + "address": 4348, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4349", + "name": "Rad Acum - C6 P10", + "category": "IRRIGATION", + "modbus": { + "address": 4349, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4350", + "name": "Rad Acum - C6 P11", + "category": "IRRIGATION", + "modbus": { + "address": 4350, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4351", + "name": "Rad Acum - C6 P12", + "category": "IRRIGATION", + "modbus": { + "address": 4351, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4352", + "name": "Rad Acum - C6 P13", + "category": "IRRIGATION", + "modbus": { + "address": 4352, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4353", + "name": "Rad Acum - C6 P14", + "category": "IRRIGATION", + "modbus": { + "address": 4353, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4354", + "name": "Rad Acum - C6 P15", + "category": "IRRIGATION", + "modbus": { + "address": 4354, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4355", + "name": "Rad Acum - C6 P16", + "category": "IRRIGATION", + "modbus": { + "address": 4355, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4356", + "name": "Rad Acum - C6 P17", + "category": "IRRIGATION", + "modbus": { + "address": 4356, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4357", + "name": "Rad Acum - C6 P18", + "category": "IRRIGATION", + "modbus": { + "address": 4357, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4358", + "name": "Rad Acum - C6 P19", + "category": "IRRIGATION", + "modbus": { + "address": 4358, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4359", + "name": "Rad Acum - C6 P120", + "category": "IRRIGATION", + "modbus": { + "address": 4359, + "bitOffset": null + }, + "valueType": "INTEGER", + "unit": "umol/m2", + "decimalPlaces": 0, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4000", + "name": "Tanque 1 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4000, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4002", + "name": "Tanque 1 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4002, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4020", + "name": "Tanque 2 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4020, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4022", + "name": "Tanque 2 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4022, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4040", + "name": "Tanque 3 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4040, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4042", + "name": "Tanque 3 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4042, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4060", + "name": "Tanque 4 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4060, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4062", + "name": "Tanque 4 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4062, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4080", + "name": "Tanque 5 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4080, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4082", + "name": "Tanque 5 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4082, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4100", + "name": "Tanque 6 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4100, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4102", + "name": "Tanque 6 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4102, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4120", + "name": "Tanque 7 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4120, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4122", + "name": "Tanque 7 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4122, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4140", + "name": "Tanque 8 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4140, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4142", + "name": "Tanque 8 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4142, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4160", + "name": "Tanque 9 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4160, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4162", + "name": "Tanque 9 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4162, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4180", + "name": "Tanque 10 - Nivel", + "category": "IRRIGATION", + "modbus": { + "address": 4180, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_4182", + "name": "Tanque 10 - Altura", + "category": "IRRIGATION", + "modbus": { + "address": 4182, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m", + "decimalPlaces": 2, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-1", + "name": "C1 P1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -1, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-2", + "name": "C1 P2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -2, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-3", + "name": "C1 P3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -3, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-4", + "name": "C1 P4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -4, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-5", + "name": "C1 P5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -5, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-6", + "name": "C1 P6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -6, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-7", + "name": "C1 P7 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -7, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-8", + "name": "C1 P8 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -8, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-9", + "name": "C1 P9 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -9, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-10", + "name": "C1 P10 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -10, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-11", + "name": "C1 P11 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -11, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-12", + "name": "C1 P12 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -12, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-13", + "name": "C1 P13 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -13, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-14", + "name": "C1 P14 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -14, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-15", + "name": "C1 P15 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -15, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-16", + "name": "C1 P16 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -16, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-17", + "name": "C1 P17 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -17, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-18", + "name": "C1 P18 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -18, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-19", + "name": "C1 P19 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -19, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-20", + "name": "C1 P20 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -20, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-21", + "name": "C2 P1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -21, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-22", + "name": "C2 P2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -22, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-23", + "name": "C2 P3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -23, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-24", + "name": "C2 P4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -24, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-25", + "name": "C2 P5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -25, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-26", + "name": "C2 P6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -26, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-27", + "name": "C2 P7 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -27, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-28", + "name": "C2 P8 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -28, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-29", + "name": "C2 P9 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -29, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-30", + "name": "C2 P10 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -30, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-31", + "name": "C2 P11 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -31, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-32", + "name": "C2 P12 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -32, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-33", + "name": "C2 P13 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -33, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-34", + "name": "C2 P14 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -34, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-35", + "name": "C2 P15 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -35, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-36", + "name": "C2 P16 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -36, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-37", + "name": "C2 P17 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -37, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-38", + "name": "C2 P18 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -38, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-39", + "name": "C2 P19 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -39, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-40", + "name": "C2 P20 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -40, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-41", + "name": "C3 P1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -41, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-42", + "name": "C3 P2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -42, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-43", + "name": "C3 P3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -43, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-44", + "name": "C3 P4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -44, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-45", + "name": "C3 P5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -45, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-46", + "name": "C3 P6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -46, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-47", + "name": "C3 P7 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -47, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-48", + "name": "C3 P8 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -48, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-49", + "name": "C3 P9 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -49, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-50", + "name": "C3 P10 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -50, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-51", + "name": "C3 P11 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -51, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-52", + "name": "C3 P12 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -52, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-53", + "name": "C3 P13 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -53, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-54", + "name": "C3 P14 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -54, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-55", + "name": "C3 P15 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -55, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-56", + "name": "C3 P16 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -56, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-57", + "name": "C3 P17 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -57, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-58", + "name": "C3 P18 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -58, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-59", + "name": "C3 P19 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -59, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-60", + "name": "C3 P20 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -60, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-61", + "name": "C4 P1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -61, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-62", + "name": "C4 P2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -62, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-63", + "name": "C4 P3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -63, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-64", + "name": "C4 P4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -64, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-65", + "name": "C4 P5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -65, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-66", + "name": "C4 P6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -66, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-67", + "name": "C4 P7 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -67, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-68", + "name": "C4 P8 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -68, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-69", + "name": "C4 P9 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -69, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-70", + "name": "C4 P10 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -70, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-71", + "name": "C4 P11 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -71, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-72", + "name": "C4 P12 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -72, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-73", + "name": "C4 P13 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -73, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-74", + "name": "C4 P14 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -74, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-75", + "name": "C4 P15 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -75, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-76", + "name": "C4 P16 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -76, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-77", + "name": "C4 P17 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -77, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-78", + "name": "C4 P18 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -78, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-79", + "name": "C4 P19 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -79, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-80", + "name": "C4 P20 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -80, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-81", + "name": "C5 P1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -81, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-82", + "name": "C5 P2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -82, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-83", + "name": "C5 P3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -83, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-84", + "name": "C5 P4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -84, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-85", + "name": "C5 P5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -85, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-86", + "name": "C5 P6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -86, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-87", + "name": "C5 P7 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -87, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-88", + "name": "C5 P8 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -88, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-89", + "name": "C5 P9 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -89, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-90", + "name": "C5 P10 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -90, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-91", + "name": "C5 P11 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -91, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-92", + "name": "C5 P12 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -92, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-93", + "name": "C5 P13 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -93, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-94", + "name": "C5 P14 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -94, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-95", + "name": "C5 P15 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -95, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-96", + "name": "C5 P16 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -96, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-97", + "name": "C5 P17 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -97, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-98", + "name": "C5 P18 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -98, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-99", + "name": "C5 P19 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -99, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-100", + "name": "C5 P20 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -100, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-101", + "name": "C6 P1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -101, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-102", + "name": "C6 P2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -102, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-103", + "name": "C6 P3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -103, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-104", + "name": "C6 P4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -104, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-105", + "name": "C6 P5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -105, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-106", + "name": "C6 P6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -106, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-107", + "name": "C6 P7 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -107, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-108", + "name": "C6 P8 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -108, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-109", + "name": "C6 P9 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -109, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-110", + "name": "C6 P10 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -110, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-111", + "name": "C6 P11 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -111, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-112", + "name": "C6 P12 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -112, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-113", + "name": "C6 P13 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -113, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-114", + "name": "C6 P14 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -114, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-115", + "name": "C6 P15 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -115, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-116", + "name": "C6 P16 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -116, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-117", + "name": "C6 P17 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -117, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-118", + "name": "C6 P18 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -118, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-119", + "name": "C6 P19 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -119, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-120", + "name": "C6 P20 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -120, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-121", + "name": "DPV Estufa 1", + "category": "CLIMATE", + "modbus": { + "address": -121, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-122", + "name": "DPV Estufa 2", + "category": "CLIMATE", + "modbus": { + "address": -122, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-123", + "name": "DPV Estufa 3", + "category": "CLIMATE", + "modbus": { + "address": -123, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-124", + "name": "DPV Estufa 4", + "category": "CLIMATE", + "modbus": { + "address": -124, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-125", + "name": "DPV Estufa 5", + "category": "CLIMATE", + "modbus": { + "address": -125, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-126", + "name": "DPV Estufa 6", + "category": "CLIMATE", + "modbus": { + "address": -126, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-127", + "name": "DPV Estufa 7", + "category": "CLIMATE", + "modbus": { + "address": -127, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-128", + "name": "DPV Estufa 8", + "category": "CLIMATE", + "modbus": { + "address": -128, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-129", + "name": "DPV Estufa 9", + "category": "CLIMATE", + "modbus": { + "address": -129, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-130", + "name": "DPV Estufa 10", + "category": "CLIMATE", + "modbus": { + "address": -130, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-131", + "name": "DPV Estufa 11", + "category": "CLIMATE", + "modbus": { + "address": -131, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-132", + "name": "DPV Estufa 12", + "category": "CLIMATE", + "modbus": { + "address": -132, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-133", + "name": "DPV Estufa 13", + "category": "CLIMATE", + "modbus": { + "address": -133, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-134", + "name": "DPV Estufa 14", + "category": "CLIMATE", + "modbus": { + "address": -134, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-135", + "name": "DPV Estufa 15", + "category": "CLIMATE", + "modbus": { + "address": -135, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-136", + "name": "DPV Estufa 16", + "category": "CLIMATE", + "modbus": { + "address": -136, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-137", + "name": "DPV Estufa 17", + "category": "CLIMATE", + "modbus": { + "address": -137, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-138", + "name": "DPV Estufa 18", + "category": "CLIMATE", + "modbus": { + "address": -138, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-139", + "name": "DPV Estufa 19", + "category": "CLIMATE", + "modbus": { + "address": -139, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-140", + "name": "DPV Estufa 20", + "category": "CLIMATE", + "modbus": { + "address": -140, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "mbar", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-141", + "name": "Hum. Absoluta Estufa 1", + "category": "CLIMATE", + "modbus": { + "address": -141, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-142", + "name": "Hum. Absoluta Estufa 2", + "category": "CLIMATE", + "modbus": { + "address": -142, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-143", + "name": "Hum. Absoluta Estufa 3", + "category": "CLIMATE", + "modbus": { + "address": -143, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-144", + "name": "Hum. Absoluta Estufa 4", + "category": "CLIMATE", + "modbus": { + "address": -144, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-145", + "name": "Hum. Absoluta Estufa 5", + "category": "CLIMATE", + "modbus": { + "address": -145, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-146", + "name": "Hum. Absoluta Estufa 6", + "category": "CLIMATE", + "modbus": { + "address": -146, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-147", + "name": "Hum. Absoluta Estufa 7", + "category": "CLIMATE", + "modbus": { + "address": -147, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-148", + "name": "Hum. Absoluta Estufa 8", + "category": "CLIMATE", + "modbus": { + "address": -148, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-149", + "name": "Hum. Absoluta Estufa 9", + "category": "CLIMATE", + "modbus": { + "address": -149, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-150", + "name": "Hum. Absoluta Estufa 10", + "category": "CLIMATE", + "modbus": { + "address": -150, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-151", + "name": "Hum. Absoluta Estufa 11", + "category": "CLIMATE", + "modbus": { + "address": -151, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-152", + "name": "Hum. Absoluta Estufa 12", + "category": "CLIMATE", + "modbus": { + "address": -152, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-153", + "name": "Hum. Absoluta Estufa 13", + "category": "CLIMATE", + "modbus": { + "address": -153, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-154", + "name": "Hum. Absoluta Estufa 14", + "category": "CLIMATE", + "modbus": { + "address": -154, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-155", + "name": "Hum. Absoluta Estufa 15", + "category": "CLIMATE", + "modbus": { + "address": -155, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-156", + "name": "Hum. Absoluta Estufa 16", + "category": "CLIMATE", + "modbus": { + "address": -156, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-157", + "name": "Hum. Absoluta Estufa 17", + "category": "CLIMATE", + "modbus": { + "address": -157, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-158", + "name": "Hum. Absoluta Estufa 18", + "category": "CLIMATE", + "modbus": { + "address": -158, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-159", + "name": "Hum. Absoluta Estufa 19", + "category": "CLIMATE", + "modbus": { + "address": -159, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "climate.sensor_-160", + "name": "Hum. Absoluta Estufa 20", + "category": "CLIMATE", + "modbus": { + "address": -160, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "g/m3", + "decimalPlaces": 1, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-161", + "name": "C1 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -161, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-162", + "name": "C2 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -162, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-163", + "name": "C3 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -163, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-164", + "name": "C4 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -164, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-165", + "name": "C5 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -165, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + }, + { + "key": "irrigation.sensor_-166", + "name": "C6 Consumo Agua", + "category": "IRRIGATION", + "modbus": { + "address": -166, + "bitOffset": null + }, + "valueType": "DECIMAL", + "unit": "m3", + "decimalPlaces": 6, + "pollingIntervalSeconds": 2, + "enabled": true, + "tags": [] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/config/sensor-map.txt b/src/main/resources/config/sensor-map.txt deleted file mode 100644 index 448833c..0000000 --- a/src/main/resources/config/sensor-map.txt +++ /dev/null @@ -1,1809 +0,0 @@ -Temperatura exterior*10*1*C*c -Humidade exterior*11*0*%*c -Velocidade Vento 1*12*0*Km/h*c -Velocidade Vento 2*13*0*Km/h*c -Velocidade Vento 3*14*0*Km/h*c -Direcao vento*15*0*º*c -Radiacao 1*16*0*w/m2*c -Radiacao 2*16*0*w/m2*c -Chuva 1*18*0*SU*c -Chuva 2*19*0*SU*c -Chuva 3*20*0*SU*c -Chuva 4*21*0*SU*c -Chuva 5*22*0*SU*c - -Temperatura estufa 1*100*1*C*c -Humidade estufa 1*101*0*%*c -Temperatura 1 estufa 1*102*1*C*c -Humidade 1 estufa 1*103*0*%*c -Temperatura 2 estufa 1*104*1*C*c -Humidade 2 estufa 1*105*0*%*c -Temperatura 3 estufa 1*106*1*C*c -Humidade 3 estufa 1*107*0*%*c -Temperatura 4 estufa 1*108*1*C*c -Humidade 4 estufa 1*109*0*%*c -Temperatura 5 estufa 1*110*1*C*c -Humidade 5 estufa 1*111*0*%*c -CO2 estufa 1*112*0*ppm*c -Temperatura do solo Estufa 1*113*1*C*c -Humidade do solo Estufa 1*114*0*%*c -Ventiladores Estufa 1*115,0*0*SU*c -Extratores Estufa 1*115,1*0*SU*c - -Temperatura estufa 2*140*1*C*c -Humidade estufa 2*141*0*%*c -Temperatura 1 estufa 2*142*1*C*c -Humidade 1 estufa 2*143*0*%*c -Temperatura 2 estufa 2*144*1*C*c -Humidade 2 estufa 2*145*0*%*c -Temperatura 3 estufa 2*146*1*C*c -Humidade 3 estufa 2*147*0*%*c -Temperatura 4 estufa 2*148*1*C*c -Humidade 4 estufa 2*149*0*%*c -Temperatura 5 estufa 2*150*1*C*c -Humidade 5 estufa 2*151*0*%*c -CO2 estufa 2*152*0*ppm*c -Temperatura do solo Estufa 2*153*1*C*c -Humidade do solo Estufa 2*154*0*%*c -Ventiladores Estufa 2*155,0*0*SU*c -Extratores Estufa 2*155,1*0*SU*c - -Temperatura estufa 3*180*1*C*c -Humidade estufa 3*181*0*%*c -Temperatura 1 estufa 3*182*1*C*c -Humidade 1 estufa 3*183*0*%*c -Temperatura 2 estufa 3*184*1*C*c -Humidade 2 estufa 3*185*0*%*c -Temperatura 3 estufa 3*186*1*C*c -Humidade 3 estufa 3*187*0*%*c -Temperatura 4 estufa 3*188*1*C*c -Humidade 4 estufa 3*189*0*%*c -Temperatura 5 estufa 3*190*1*C*c -Humidade 5 estufa 3*191*0*%*c -CO2 estufa 3*192*0*ppm*c -Temperatura do solo Estufa 3*193*1*C*c -Humidade do solo Estufa 3*194*0*%*c -Ventiladores Estufa 3*195,0*0*SU*c -Extratores Estufa 3*195,1*0*SU*c - -Temperatura estufa 4*220*1*C*c -Humidade estufa 4*221*0*%*c -Temperatura 1 estufa 4*222*1*C*c -Humidade 1 estufa 4*223*0*%*c -Temperatura 2 estufa 4*224*1*C*c -Humidade 2 estufa 4*225*0*%*c -Temperatura 3 estufa 4*226*1*C*c -Humidade 3 estufa 4*227*0*%*c -Temperatura 4 estufa 4*228*1*C*c -Humidade 4 estufa 4*229*0*%*c -Temperatura 5 estufa 4*230*1*C*c -Humidade 5 estufa 4*231*0*%*c -CO2 estufa 4*232*0*ppm*c -Temperatura do solo Estufa 4*233*1*C*c -Humidade do solo Estufa 4*234*0*%*c -Ventiladores Estufa 4*235,0*0*SU*c -Extratores Estufa 4*235,1*0*SU*c - -Temperatura estufa 5*260*1*C*c -Humidade estufa 5*261*0*%*c -Temperatura 1 estufa 5*262*1*C*c -Humidade 1 estufa 5*263*0*%*c -Temperatura 2 estufa 5*264*1*C*c -Humidade 2 estufa 5*265*0*%*c -Temperatura 3 estufa 5*266*1*C*c -Humidade 3 estufa 5*267*0*%*c -Temperatura 4 estufa 5*268*1*C*c -Humidade 4 estufa 5*269*0*%*c -Temperatura 5 estufa 5*270*1*C*c -Humidade 5 estufa 5*271*0*%*c -CO2 estufa 5*272*0*ppm*c -Temperatura do solo Estufa 5*273*1*C*c -Humidade do solo Estufa 5*274*0*%*c -Ventiladores Estufa 5*275,0*0*SU*c -Extratores Estufa 5*275,1*0*SU*c - -Temperatura estufa 6*300*1*C*c -Humidade estufa 6*301*0*%*c -Temperatura 1 estufa 6*302*1*C*c -Humidade 1 estufa 6*303*0*%*c -Temperatura 2 estufa 6*304*1*C*c -Humidade 2 estufa 6*305*0*%*c -Temperatura 3 estufa 6*306*1*C*c -Humidade 3 estufa 6*307*0*%*c -Temperatura 4 estufa 6*308*1*C*c -Humidade 4 estufa 6*309*0*%*c -Temperatura 5 estufa 6*310*1*C*c -Humidade 5 estufa 6*311*0*%*c -CO2 estufa 6*312*0*ppm*c -Temperatura do solo Estufa 6*313*1*C*c -Humidade do solo Estufa 6*314*0*%*c -Ventiladores Estufa 6*315,0*0*SU*c -Extratores Estufa 6*315,1*0*SU*c - -Temperatura estufa 7*340*1*C*c -Humidade estufa 7*341*0*%*c -Temperatura 1 estufa 7*342*1*C*c -Humidade 1 estufa 7*343*0*%*c -Temperatura 2 estufa 7*344*1*C*c -Humidade 2 estufa 7*345*0*%*c -Temperatura 3 estufa 7*346*1*C*c -Humidade 3 estufa 7*347*0*%*c -Temperatura 4 estufa 7*348*1*C*c -Humidade 4 estufa 7*349*0*%*c -Temperatura 5 estufa 7*350*1*C*c -Humidade 5 estufa 7*351*0*%*c -CO2 estufa 7*352*0*ppm*c -Temperatura do solo Estufa 7*353*1*C*c -Humidade do solo Estufa 7*354*0*%*c -Ventiladores Estufa 7*355,0*0*SU*c -Extratores Estufa 7*355,1*0*SU*c - -Temperatura estufa 8*380*1*C*c -Humidade estufa 8*381*0*%*c -Temperatura 1 estufa 8*382*1*C*c -Humidade 1 estufa 8*383*0*%*c -Temperatura 2 estufa 8*384*1*C*c -Humidade 2 estufa 8*385*0*%*c -Temperatura 3 estufa 8*386*1*C*c -Humidade 3 estufa 8*387*0*%*c -Temperatura 4 estufa 8*388*1*C*c -Humidade 4 estufa 8*389*0*%*c -Temperatura 5 estufa 8*390*1*C*c -Humidade 5 estufa 8*391*0*%*c -CO2 estufa 8*392*0*ppm*c -Temperatura do solo Estufa 8*393*1*C*c -Humidade do solo Estufa 8*394*0*%*c -Ventiladores Estufa 9*395,0*0*SU*c -Extratores Estufa 9*395,1*0*SU*c - -Temperatura estufa 9*420*1*C*c -Humidade estufa 9*421*0*%*c -Temperatura 1 estufa 9*422*1*C*c -Humidade 1 estufa 9*423*0*%*c -Temperatura 2 estufa 9*424*1*C*c -Humidade 2 estufa 9*425*0*%*c -Temperatura 3 estufa 9*426*1*C*c -Humidade 3 estufa 9*427*0*%*c -Temperatura 4 estufa 9*428*1*C*c -Humidade 4 estufa 9*429*0*%*c -Temperatura 5 estufa 9*430*1*C*c -Humidade 5 estufa 9*431*0*%*c -CO2 estufa 9*432*0*ppm*c -Temperatura do solo Estufa 9*433*1*C*c -Humidade do solo Estufa 9*434*0*%*c -Ventiladores Estufa 9*435,0*0*SU*c -Extratores Estufa 9*435,1*0*SU*c - -Temperatura estufa 10*460*1*C*c -Humidade estufa 10*461*0*%*c -Temperatura 1 estufa 10*462*1*C*c -Humidade 1 estufa 10*463*0*%*c -Temperatura 2 estufa 10*464*1*C*c -Humidade 2 estufa 10*465*0*%*c -Temperatura 3 estufa 10*466*1*C*c -Humidade 3 estufa 10*467*0*%*c -Temperatura 4 estufa 10*468*1*C*c -Humidade 4 estufa 10*469*0*%*c -Temperatura 5 estufa 10*470*1*C*c -Humidade 5 estufa 10*471*0*%*c -CO2 estufa 10*472*0*ppm*c -Temperatura do solo Estufa 10*473*1*C*c -Humidade do solo Estufa 10*474*0*%*c -Ventiladores Estufa 10*475,0*0*SU*c -Extratores Estufa 10*475,1*0*SU*c - -Temperatura estufa 11*500*1*C*c -Humidade estufa 11*501*0*%*c -Temperatura 1 estufa 11*502*1*C*c -Humidade 1 estufa 11*503*0*%*c -Temperatura 2 estufa 11*504*1*C*c -Humidade 2 estufa 11*505*0*%*c -Temperatura 3 estufa 11*506*1*C*c -Humidade 3 estufa 11*507*0*%*c -Temperatura 4 estufa 11*508*1*C*c -Humidade 4 estufa 11*509*0*%*c -Temperatura 5 estufa 11*510*1*C*c -Humidade 5 estufa 11*511*0*%*c -CO2 estufa 11*512*0*ppm*c -Temperatura do solo Estufa 11*513*1*C*c -Humidade do solo Estufa 11*514*0*%*c -Ventiladores Estufa 11*515,0*0*SU*c -Extratores Estufa 11*515,1*0*SU*c - -Temperatura estufa 12*540*1*C*c -Humidade estufa 12*541*0*%*c -Temperatura 1 estufa 12*542*1*C*c -Humidade 1 estufa 12*543*0*%*c -Temperatura 2 estufa 12*544*1*C*c -Humidade 2 estufa 12*545*0*%*c -Temperatura 3 estufa 12*546*1*C*c -Humidade 3 estufa 12*547*0*%*c -Temperatura 4 estufa 12*548*1*C*c -Humidade 4 estufa 12*549*0*%*c -Temperatura 5 estufa 12*550*1*C*c -Humidade 5 estufa 12*551*0*%*c -CO2 estufa 12*552*0*ppm*c -Temperatura do solo Estufa 12*553*1*C*c -Humidade do solo Estufa 12*554*0*%*c -Ventiladores Estufa 12*555,0*0*SU*c -Extratores Estufa 12*555,1*0*SU*c - -Temperatura estufa 13*580*1*C*c -Humidade estufa 13*581*0*%*c -Temperatura 1 estufa 13*582*1*C*c -Humidade 1 estufa 13*583*0*%*c -Temperatura 2 estufa 13*584*1*C*c -Humidade 2 estufa 13*585*0*%*c -Temperatura 3 estufa 13*586*1*C*c -Humidade 3 estufa 13*587*0*%*c -Temperatura 4 estufa 13*588*1*C*c -Humidade 4 estufa 13*589*0*%*c -Temperatura 5 estufa 13*590*1*C*c -Humidade 5 estufa 13*591*0*%*c -CO2 estufa 13*592*0*ppm*c -Temperatura do solo Estufa 13*593*1*C*c -Humidade do solo Estufa 13*594*0*%*c -Ventiladores Estufa 13*595,0*0*SU*c -Extratores Estufa 13*595,1*0*SU*c - -Temperatura estufa 14*620*1*C*c -Humidade estufa 14*621*0*%*c -Temperatura 1 estufa 14*622*1*C*c -Humidade 1 estufa 14*623*0*%*c -Temperatura 2 estufa 14*624*1*C*c -Humidade 2 estufa 14*625*0*%*c -Temperatura 3 estufa 14*626*1*C*c -Humidade 3 estufa 14*627*0*%*c -Temperatura 4 estufa 14*628*1*C*c -Humidade 4 estufa 14*629*0*%*c -Temperatura 5 estufa 14*630*1*C*c -Humidade 5 estufa 14*631*0*%*c -CO2 estufa 14*632*0*ppm*c -Temperatura do solo Estufa 14*633*1*C*c -Humidade do solo Estufa 14*634*0*%*c -Ventiladores Estufa 14*635,0*0*SU*c -Extratores Estufa 14*635,1*0*SU*c - -Temperatura estufa 15*660*1*C*c -Humidade estufa 15*661*0*%*c -Temperatura 1 estufa 15*662*1*C*c -Humidade 1 estufa 15*663*0*%*c -Temperatura 2 estufa 15*664*1*C*c -Humidade 2 estufa 15*665*0*%*c -Temperatura 3 estufa 15*666*1*C*c -Humidade 3 estufa 15*667*0*%*c -Temperatura 4 estufa 15*668*1*C*c -Humidade 4 estufa 15*669*0*%*c -Temperatura 5 estufa 15*670*1*C*c -Humidade 5 estufa 15*671*0*%*c -CO2 estufa 15*672*0*ppm*c -Temperatura do solo Estufa 15*673*1*C*c -Humidade do solo Estufa 15*674*0*%*c -Ventiladores Estufa 15*675,0*0*SU*c -Extratores Estufa 15*675,1*0*SU*c - -Temperatura estufa 16*700*1*C*c -Humidade estufa 16*701*0*%*c -Temperatura 1 estufa 16*702*1*C*c -Humidade 1 estufa 16*703*0*%*c -Temperatura 2 estufa 16*704*1*C*c -Humidade 2 estufa 16*705*0*%*c -Temperatura 3 estufa 16*706*1*C*c -Humidade 3 estufa 16*707*0*%*c -Temperatura 4 estufa 16*708*1*C*c -Humidade 4 estufa 16*709*0*%*c -Temperatura 5 estufa 16*710*1*C*c -Humidade 5 estufa 16*711*0*%*c -CO2 estufa 16*712*0*ppm*c -Temperatura do solo Estufa 16*713*1*C*c -Humidade do solo Estufa 16*714*0*%*c -Ventiladores Estufa 16*715,0*0*SU*c -Extratores Estufa 16*715,1*0*SU*c - -Temperatura estufa 17*740*1*C*c -Humidade estufa 17*741*0*%*c -Temperatura 1 estufa 17*742*1*C*c -Humidade 1 estufa 17*743*0*%*c -Temperatura 2 estufa 17*744*1*C*c -Humidade 2 estufa 17*745*0*%*c -Temperatura 3 estufa 17*746*1*C*c -Humidade 3 estufa 17*747*0*%*c -Temperatura 4 estufa 17*748*1*C*c -Humidade 4 estufa 17*749*0*%*c -Temperatura 5 estufa 17*750*1*C*c -Humidade 5 estufa 17*751*0*%*c -CO2 estufa 17*752*0*ppm*c -Temperatura do solo Estufa 17*753*1*C*c -Humidade do solo Estufa 17*754*0*%*c -Ventiladores Estufa 17*755,0*0*SU*c -Extratores Estufa 17*755,1*0*SU*c - -Temperatura estufa 18*780*1*C*c -Humidade estufa 18*781*0*%*c -Temperatura 1 estufa 18*782*1*C*c -Humidade 1 estufa 18*783*0*%*c -Temperatura 2 estufa 18*784*1*C*c -Humidade 2 estufa 18*785*0*%*c -Temperatura 3 estufa 18*786*1*C*c -Humidade 3 estufa 18*787*0*%*c -Temperatura 4 estufa 18*788*1*C*c -Humidade 4 estufa 18*789*0*%*c -Temperatura 5 estufa 18*790*1*C*c -Humidade 5 estufa 18*791*0*%*c -CO2 estufa 18*792*0*ppm*c -Temperatura do solo Estufa 18*793*1*C*c -Humidade do solo Estufa 18*794*0*%*c -Ventiladores Estufa 18*795,0*0*SU*c -Extratores Estufa 18*795,1*0*SU*c - -Temperatura estufa 19*820*1*C*c -Humidade estufa 19*821*0*%*c -Temperatura 1 estufa 19*822*1*C*c -Humidade 1 estufa 19*823*0*%*c -Temperatura 2 estufa 19*824*1*C*c -Humidade 2 estufa 19*825*0*%*c -Temperatura 3 estufa 19*826*1*C*c -Humidade 3 estufa 19*827*0*%*c -Temperatura 4 estufa 19*828*1*C*c -Humidade 4 estufa 19*829*0*%*c -Temperatura 5 estufa 19*830*1*C*c -Humidade 5 estufa 19*831*0*%*c -CO2 estufa 19*832*0*ppm*c -Temperatura do solo Estufa 19*833*1*C*c -Humidade do solo Estufa 19*834*0*%*c -Ventiladores Estufa 19*835,0*0*SU*c -Extratores Estufa 19*835,1*0*SU*c - -Temperatura estufa 20*860*1*C*c -Humidade estufa 20*861*0*%*c -Temperatura 1 estufa 20*862*1*C*c -Humidade 1 estufa 20*863*0*%*c -Temperatura 2 estufa 20*864*1*C*c -Humidade 2 estufa 20*865*0*%*c -Temperatura 3 estufa 20*866*1*C*c -Humidade 3 estufa 20*867*0*%*c -Temperatura 4 estufa 20*868*1*C*c -Humidade 4 estufa 20*869*0*%*c -Temperatura 5 estufa 20*870*1*C*c -Humidade 5 estufa 20*871*0*%*c -CO2 estufa 20*872*0*ppm*c -Temperatura do solo Estufa 20*873*1*C*c -Humidade do solo Estufa 20*874*0*%*c -Ventiladores Estufa 20*875,0*0*SU*c -Extratores Estufa 20*875,1*0*SU*c - -PH1 C1*1000*2*SU*r -PH2 C1*1001*2*SU*r -CE1 C1*1002*2*SU*r -CE2 C1*1003*2*SU*r -CE3 C1*1004*2*SU*r -Temperatura CE1 C1*1005*1*SU*r -Temperatura CE2 C1*1006*1*SU*r -Temperatura CE3 C1*1007*1*SU*r -Pressao Bomba 1 C1*1008*1*SU*r -Pressao Bomba 2 C1*1009*1*SU*r -Pressao Bomba 3 C1*1010*1*SU*r -Referencia PH C1*1014*2*SU*r -Modulacao PH C1*1015*1*SU*r -Referencia CE C1*1016*2*SU*r -Modulacao CE C1*1017*1*SU*r - -V1 C1*1073,0*0*SU*r -V2 C1*1073,1*0*SU*r -V3 C1*1073,2*0*SU*r -V4 C1*1073,3*0*SU*r -V5 C1*1073,4*0*SU*r -V6 C1*1073,5*0*SU*r -V7 C1*1073,6*0*SU*r -V8 C1*1073,7*0*SU*r -V9 C1*1073,8*0*SU*r -V10 C1*1073,9*0*SU*r - -V1 C2*1173,0*0*SU*r -V2 C2*1173,1*0*SU*r -V3 C2*1173,2*0*SU*r -V4 C2*1173,3*0*SU*r -V5 C2*1173,4*0*SU*r -V6 C2*1173,5*0*SU*r -V7 C2*1173,6*0*SU*r -V8 C2*1173,7*0*SU*r -V9 C2*1173,8*0*SU*r -V10 C2*1173,9*0*SU*r - -V1 C3*1273,0*0*SU*r -V2 C3*1273,1*0*SU*r -V3 C3*1273,2*0*SU*r -V4 C3*1273,3*0*SU*r -V5 C3*1273,4*0*SU*r -V6 C3*1273,5*0*SU*r -V7 C3*1273,6*0*SU*r -V8 C3*1273,7*0*SU*r -V9 C3*1273,8*0*SU*r -V10 C3*1273,9*0*SU*r - -IL Setor 1*2600,0*0*SU*i -IL Setor 2*2600,1*0*SU*i -IL Setor 3*2600,2*0*SU*i -IL Setor 4*2600,3*0*SU*i -IL Setor 5*2600,4*0*SU*i -IL Setor 6*2600,5*0*SU*i -IL Setor 7*2600,6*0*SU*i -IL Setor 8*2600,7*0*SU*i -IL Setor 9*2600,8*0*SU*i -IL Setor 10*2600,9*0*SU*i -IL Setor 11*2600,10*0*SU*i -IL Setor 12*2600,11*0*SU*i -IL Setor 13*2600,12*0*SU*i -IL Setor 14*2600,13*0*SU*i -IL Setor 15*2600,14*0*SU*i -IL Setor 16*2600,15*0*SU*i -IL Setor 17*2601,0*0*SU*i -IL Setor 18*2601,1*0*SU*i -IL Setor 19*2601,2*0*SU*i -IL Setor 20*2601,3*0*SU*i -IL Setor 21*2601,4*0*SU*i -IL Setor 22*2601,5*0*SU*i -IL Setor 23*2601,6*0*SU*i -IL Setor 24*2601,7*0*SU*i -IL Setor 25*2601,8*0*SU*i -IL Setor 26*2601,9*0*SU*i -IL Setor 27*2601,10*0*SU*i -IL Setor 28*2601,11*0*SU*i -IL Setor 29*2601,12*0*SU*i -IL Setor 30*2601,13*0*SU*i -IL Setor 31*2601,14*0*SU*i -IL Setor 32*2601,15*0*SU*i - -Zenital E E1*116*0*%*c -Zenital D E1*117*0*%*c -Lateral E E1*118*0*%*c -Lateral D E1*119*0*%*c -Topo F E1*120*0*%*c -Topo T E1*121*0*%*c -Ecra 1 E1*122*0*%*c -Ecra 2 E1*123*0*%*c -Ecra 3 E1*124*0*%*c -Ecra 4 E1*125*0*%*c -Ecra 5 E1*126*0*%*c - -Zenital E E2*156*0*%*c -Zenital D E2*157*0*%*c -Lateral E E2*158*0*%*c -Lateral D E2*159*0*%*c -Topo F E2*160*0*%*c -Topo T E2*161*0*%*c -Ecra 1 E2*162*0*%*c -Ecra 2 E2*163*0*%*c -Ecra 3 E2*164*0*%*c -Ecra 4 E2*165*0*%*c -Ecra 5 E2*166*0*%*c - -Zenital E E3*196*0*%*c -Zenital D E3*197*0*%*c -Lateral E E3*198*0*%*c -Lateral D E3*199*0*%*c -Topo F E3*200*0*%*c -Topo T E3*201*0*%*c -Ecra 1 E3*202*0*%*c -Ecra 2 E3*203*0*%*c -Ecra 3 E3*204*0*%*c -Ecra 4 E3*205*0*%*c -Ecra 5 E3*206*0*%*c - -Zenital E E4*236*0*%*c -Zenital D E4*237*0*%*c -Lateral E E4*238*0*%*c -Lateral D E4*239*0*%*c -Topo F E4*240*0*%*c -Topo T E4*241*0*%*c -Ecra 1 E4*242*0*%*c -Ecra 2 E4*243*0*%*c -Ecra 3 E4*244*0*%*c -Ecra 4 E4*245*0*%*c -Ecra 5 E4*246*0*%*c - -Zenital E E5*276*0*%*c -Zenital D E5*277*0*%*c -Lateral E E5*278*0*%*c -Lateral D E5*279*0*%*c -Topo F E5*280*0*%*c -Topo T E5*281*0*%*c -Ecra 1 E5*282*0*%*c -Ecra 2 E5*283*0*%*c -Ecra 3 E5*284*0*%*c -Ecra 4 E5*285*0*%*c -Ecra 5 E5*286*0*%*c - -Zenital E E6*316*0*%*c -Zenital D E6*317*0*%*c -Lateral E E6*318*0*%*c -Lateral D E6*319*0*%*c -Topo F E6*320*0*%*c -Topo T E6*321*0*%*c -Ecra 1 E6*322*0*%*c -Ecra 2 E6*323*0*%*c -Ecra 3 E6*324*0*%*c -Ecra 4 E6*325*0*%*c -Ecra 5 E6*326*0*%*c - -Zenital E E7*356*0*%*c -Zenital D E7*357*0*%*c -Lateral E E7*358*0*%*c -Lateral D E7*359*0*%*c -Topo F E7*360*0*%*c -Topo T E7*361*0*%*c -Ecra 1 E7*362*0*%*c -Ecra 2 E7*363*0*%*c -Ecra 3 E7*364*0*%*c -Ecra 4 E7*365*0*%*c -Ecra 5 E7*366*0*%*c - -Zenital E E8*356*0*%*c -Zenital D E8*357*0*%*c -Lateral E E8*358*0*%*c -Lateral D E8*359*0*%*c -Topo F E8*360*0*%*c -Topo T E8*361*0*%*c -Ecra 1 E8*362*0*%*c -Ecra 2 E8*363*0*%*c -Ecra 3 E8*364*0*%*c -Ecra 4 E8*365*0*%*c -Ecra 5 E8*366*0*%*c - -Zenital E E9*396*0*%*c -Zenital D E9*397*0*%*c -Lateral E E9*398*0*%*c -Lateral D E9*399*0*%*c -Topo F E9*400*0*%*c -Topo T E9*401*0*%*c -Ecra 1 E9*402*0*%*c -Ecra 2 E9*403*0*%*c -Ecra 3 E9*404*0*%*c -Ecra 4 E9*405*0*%*c -Ecra 5 E9*406*0*%*c - -Zenital E E10*436*0*%*c -Zenital D E10*437*0*%*c -Lateral E E10*438*0*%*c -Lateral D E10*439*0*%*c -Topo F E10*440*0*%*c -Topo T E10*441*0*%*c -Ecra 1 E10*442*0*%*c -Ecra 2 E10*443*0*%*c -Ecra 3 E10*444*0*%*c -Ecra 4 E10*445*0*%*c -Ecra 5 E10*446*0*%*c - -Zenital E E11*476*0*%*c -Zenital D E11*477*0*%*c -Lateral E E11*478*0*%*c -Lateral D E11*479*0*%*c -Topo F E11*480*0*%*c -Topo T E11*481*0*%*c -Ecra 1 E11*482*0*%*c -Ecra 2 E11*483*0*%*c -Ecra 3 E11*484*0*%*c -Ecra 4 E11*485*0*%*c -Ecra 5 E11*486*0*%*c - -Zenital E E12*516*0*%*c -Zenital D E12*517*0*%*c -Lateral E E12*518*0*%*c -Lateral D E12*519*0*%*c -Topo F E12*520*0*%*c -Topo T E12*521*0*%*c -Ecra 1 E12*522*0*%*c -Ecra 2 E12*523*0*%*c -Ecra 3 E12*524*0*%*c -Ecra 4 E12*525*0*%*c -Ecra 5 E12*526*0*%*c - -Zenital E E13*556*0*%*c -Zenital D E13*557*0*%*c -Lateral E E13*558*0*%*c -Lateral D E13*559*0*%*c -Topo F E13*560*0*%*c -Topo T E13*561*0*%*c -Ecra 1 E13*562*0*%*c -Ecra 2 E13*563*0*%*c -Ecra 3 E13*564*0*%*c -Ecra 4 E13*565*0*%*c -Ecra 5 E13*566*0*%*c - -Zenital E E13*596*0*%*c -Zenital D E13*597*0*%*c -Lateral E E13*598*0*%*c -Lateral D E13*599*0*%*c -Topo F E13*600*0*%*c -Topo T E13*601*0*%*c -Ecra 1 E13*602*0*%*c -Ecra 2 E13*603*0*%*c -Ecra 3 E13*604*0*%*c -Ecra 4 E13*605*0*%*c -Ecra 5 E13*606*0*%*c - -Zenital E E14*636*0*%*c -Zenital D E14*637*0*%*c -Lateral E E14*638*0*%*c -Lateral D E14*639*0*%*c -Topo F E14*640*0*%*c -Topo T E14*641*0*%*c -Ecra 1 E14*642*0*%*c -Ecra 2 E14*643*0*%*c -Ecra 3 E14*644*0*%*c -Ecra 4 E14*645*0*%*c -Ecra 5 E14*646*0*%*c - -Zenital E E15*676*0*%*c -Zenital D E15*677*0*%*c -Lateral E E15*678*0*%*c -Lateral D E15*679*0*%*c -Topo F E15*680*0*%*c -Topo T E15*681*0*%*c -Ecra 1 E15*682*0*%*c -Ecra 2 E15*683*0*%*c -Ecra 3 E15*684*0*%*c -Ecra 4 E15*685*0*%*c -Ecra 5 E15*686*0*%*c - -Zenital E E16*716*0*%*c -Zenital D E16*717*0*%*c -Lateral E E16*718*0*%*c -Lateral D E16*719*0*%*c -Topo F E16*720*0*%*c -Topo T E16*721*0*%*c -Ecra 1 E16*722*0*%*c -Ecra 2 E16*723*0*%*c -Ecra 3 E16*724*0*%*c -Ecra 4 E16*725*0*%*c -Ecra 5 E16*726*0*%*c - -Zenital E E17*756*0*%*c -Zenital D E17*757*0*%*c -Lateral E E17*758*0*%*c -Lateral D E17*759*0*%*c -Topo F E17*760*0*%*c -Topo T E17*761*0*%*c -Ecra 1 E17*762*0*%*c -Ecra 2 E17*763*0*%*c -Ecra 3 E17*764*0*%*c -Ecra 4 E17*765*0*%*c -Ecra 5 E17*766*0*%*c - -Zenital E E18*796*0*%*c -Zenital D E18*797*0*%*c -Lateral E E18*798*0*%*c -Lateral D E18*799*0*%*c -Topo F E18*800*0*%*c -Topo T E18*801*0*%*c -Ecra 1 E18*802*0*%*c -Ecra 2 E18*803*0*%*c -Ecra 3 E18*804*0*%*c -Ecra 4 E18*805*0*%*c -Ecra 5 E18*806*0*%*c - -Zenital E E19*836*0*%*c -Zenital D E19*837*0*%*c -Lateral E E19*838*0*%*c -Lateral D E19*839*0*%*c -Topo F E19*840*0*%*c -Topo T E19*841*0*%*c -Ecra 1 E19*842*0*%*c -Ecra 2 E19*843*0*%*c -Ecra 3 E19*844*0*%*c -Ecra 4 E19*845*0*%*c -Ecra 5 E19*846*0*%*c - -Zenital E E20*876*0*%*c -Zenital D E20*877*0*%*c -Lateral E E20*878*0*%*c -Lateral D E20*879*0*%*c -Topo F E20*880*0*%*c -Topo T E20*881*0*%*c -Ecra 1 E20*882*0*%*c -Ecra 2 E20*883*0*%*c -Ecra 3 E20*884*0*%*c -Ecra 4 E20*885*0*%*c -Ecra 5 E20*886*0*%*c - -Aeroponia - Solução 1 - PH*3000*1*SU*a -Aeroponia - Solução 2 - PH*3001*1*SU*a -Aeroponia - Solução 3 - PH*3002*1*SU*a -Aeroponia - Solução 4 - PH*3003*1*SU*a -Aeroponia - Solução 5 - PH*3004*1*SU*a -Aeroponia - Solução 6 - PH*3005*1*SU*a -Aeroponia - Solução 7 - PH*3006*1*SU*a -Aeroponia - Solução 8 - PH*3007*1*SU*a -Aeroponia - Solução 9 - PH*3008*1*SU*a -Aeroponia - Solução 10 - PH*3009*1*SU*a -Aeroponia - Solução 1 - CE*3010*1*mS*a -Aeroponia - Solução 2 - CE*3011*1*mS*a -Aeroponia - Solução 3 - CE*3012*1*mS*a -Aeroponia - Solução 4 - CE*3013*1*mS*a -Aeroponia - Solução 5 - CE*3014*1*mS*a -Aeroponia - Solução 6 - CE*3015*1*mS*a -Aeroponia - Solução 7 - CE*3016*1*mS*a -Aeroponia - Solução 8 - CE*3017*1*mS*a -Aeroponia - Solução 9 - CE*3018*1*mS*a -Aeroponia - Solução 10 - CE*3019*1*mS*a -Aeroponia - Solução 1 - Temperatura*3020*1*C*a -Aeroponia - Solução 2 - Temperatura*3021*1*C*a -Aeroponia - Solução 3 - Temperatura*3022*1*C*a -Aeroponia - Solução 4 - Temperatura*3023*1*C*a -Aeroponia - Solução 5 - Temperatura*3024*1*C*a -Aeroponia - Solução 6 - Temperatura*3025*1*C*a -Aeroponia - Solução 7 - Temperatura*3026*1*C*a -Aeroponia - Solução 8 - Temperatura*3027*1*C*a -Aeroponia - Solução 9 - Temperatura*3028*1*C*a -Aeroponia - Solução 10 - Temperatura*3029*1*C*a -Aeroponia - Solução 1 - Pressão*3030*1*bar*a -Aeroponia - Solução 2 - Pressão*3031*1*bar*a -Aeroponia - Solução 3 - Pressão*3032*1*bar*a -Aeroponia - Solução 4 - Pressão*3033*1*bar*a -Aeroponia - Solução 5 - Pressão*3034*1*bar*a -Aeroponia - Solução 6 - Pressão*3035*1*bar*a -Aeroponia - Solução 7 - Pressão*3036*1*bar*a -Aeroponia - Solução 8 - Pressão*3037*1*bar*a -Aeroponia - Solução 9 - Pressão*3038*1*bar*a -Aeroponia - Solução 10 - Pressão*3039*1*bar*a -Aeroponia - Nevoeiro 1*3040*0*%*a -Aeroponia - Nevoeiro 2*3041*0*%*a -Aeroponia - Nevoeiro 3*3042*0*%*a -Aeroponia - Nevoeiro 4*3043*0*%*a -Aeroponia - Nevoeiro 5*3044*0*%*a -Aeroponia - Nevoeiro 6*3045*0*%*a -Aeroponia - Nevoeiro 7*3046*0*%*a -Aeroponia - Nevoeiro 8*3047*0*%*a -Aeroponia - Nevoeiro 9*3048*0*%*a -Aeroponia - Nevoeiro 10*3049*0*%*a -Aeroponia - Nevoeiro 11*3050*0*%*a -Aeroponia - Nevoeiro 12*3051*0*%*a -Aeroponia - Nevoeiro 13*3052*0*%*a -Aeroponia - Nevoeiro 14*3053*0*%*a -Aeroponia - Nevoeiro 15*3054*0*%*a -Aeroponia - Nevoeiro 16*3055*0*%*a -Aeroponia - Nevoeiro 17*3056*0*%*a -Aeroponia - Nevoeiro 18*3057*0*%*a -Aeroponia - Nevoeiro 19*3058*0*%*a -Aeroponia - Nevoeiro 20*3059*0*%*a -Aeroponia - Nevoeiro 21*3060*0*%*a -Aeroponia - Nevoeiro 22*3061*0*%*a -Aeroponia - Nevoeiro 23*3062*0*%*a -Aeroponia - Nevoeiro 24*3063*0*%*a -Aeroponia - Nevoeiro 25*3064*0*%*a -Aeroponia - Nevoeiro 26*3065*0*%*a -Aeroponia - Nevoeiro 27*3066*0*%*a -Aeroponia - Nevoeiro 28*3067*0*%*a -Aeroponia - Nevoeiro 29*3068*0*%*a -Aeroponia - Nevoeiro 30*3069*0*%*a -Aeroponia - Temperatura 1*3070*1*C*a -Aeroponia - Temperatura 2*3071*1*C*a -Aeroponia - Temperatura 3*3072*1*C*a -Aeroponia - Temperatura 4*3073*1*C*a -Aeroponia - Temperatura 5*3074*1*C*a -Aeroponia - Temperatura 6*3075*1*C*a -Aeroponia - Temperatura 7*3076*1*C*a -Aeroponia - Temperatura 8*3077*1*C*a -Aeroponia - Temperatura 9*3078*1*C*a -Aeroponia - Temperatura 10*3079*1*C*a -Aeroponia - Temperatura 11*3080*1*C*a -Aeroponia - Temperatura 12*3081*1*C*a -Aeroponia - Temperatura 13*3082*1*C*a -Aeroponia - Temperatura 14*3083*1*C*a -Aeroponia - Temperatura 15*3084*1*C*a -Aeroponia - Temperatura 16*3085*1*C*a -Aeroponia - Temperatura 17*3086*1*C*a -Aeroponia - Temperatura 18*3087*1*C*a -Aeroponia - Temperatura 19*3088*1*C*a -Aeroponia - Temperatura 20*3089*1*C*a -Aeroponia - Temperatura 21*3090*1*C*a -Aeroponia - Temperatura 22*3091*1*C*a -Aeroponia - Temperatura 23*3092*1*C*a -Aeroponia - Temperatura 24*3093*1*C*a -Aeroponia - Temperatura 25*3094*1*C*a -Aeroponia - Temperatura 26*3095*1*C*a -Aeroponia - Temperatura 27*3096*1*C*a -Aeroponia - Temperatura 28*3097*1*C*a -Aeroponia - Temperatura 29*3098*1*C*a -Aeroponia - Temperatura 30*3099*1*C*a -Aeroponia - Temperatura Do Ar*3100*1*C*a - - - - - - - - - - -Humidade solo 1*3200*0*%*c -Humidade solo 2*3201*0*%*c -Humidade solo 3*3202*0*%*c -Humidade solo 4*3203*0*%*c -Humidade solo 5*3204*0*%*c -Humidade solo 6*3205*0*%*c -Humidade solo 7*3206*0*%*c -Humidade solo 8*3207*0*%*c -Humidade solo 9*3208*0*%*c -Humidade solo 10*3209*0*%*c -Humidade solo 11*3210*0*%*c -Humidade solo 12*3211*0*%*c -Humidade solo 13*3212*0*%*c -Humidade solo 14*3213*0*%*c -Humidade solo 15*3214*0*%*c -Humidade solo 16*3215*0*%*c -Humidade solo 17*3216*0*%*c -Humidade solo 18*3217*0*%*c -Humidade solo 19*3218*0*%*c -Humidade solo 20*3219*0*%*c -Humidade solo 21*3220*0*%*c -Humidade solo 22*3221*0*%*c -Humidade solo 23*3222*0*%*c -Humidade solo 24*3223*0*%*c -Humidade solo 25*3224*0*%*c -Humidade solo 26*3225*0*%*c -Humidade solo 27*3226*0*%*c -Humidade solo 28*3227*0*%*c -Humidade solo 29*3228*0*%*c -Humidade solo 30*3229*0*%*c -Humidade solo 31*3230*0*%*c -Humidade solo 32*3231*0*%*c -Humidade solo 33*3232*0*%*c -Humidade solo 34*3233*0*%*c -Humidade solo 35*3234*0*%*c -Humidade solo 36*3235*0*%*c -Temperatura solo 1*3236*1*C*c -Temperatura solo 2*3237*1*C*c -Temperatura solo 3*3238*1*C*c -Temperatura solo 4*3239*1*C*c -Temperatura solo 5*3240*1*C*c -Temperatura solo 6*3241*1*C*c -Temperatura solo 7*3242*1*C*c -Temperatura solo 8*3243*1*C*c -Temperatura solo 9*3244*1*C*c -Temperatura solo 10*3245*1*C*c -Temperatura solo 11*3246*1*C*c -Temperatura solo 12*3247*1*C*c -Temperatura solo 13*3248*1*C*c -Temperatura solo 14*3249*1*C*c -Temperatura solo 15*3250*1*C*c -Temperatura solo 16*3251*1*C*c -Temperatura solo 17*3252*1*C*c -Temperatura solo 18*3253*1*C*c -Temperatura solo 19*3254*1*C*c -Temperatura solo 20*3255*1*C*c -Temperatura solo 21*3256*1*C*c -Temperatura solo 22*3257*1*C*c -Temperatura solo 23*3258*1*C*c -Temperatura solo 24*3259*1*C*c -Temperatura solo 25*3260*1*C*c -Temperatura solo 26*3261*1*C*c -Temperatura solo 27*3262*1*C*c -Temperatura solo 28*3263*1*C*c -Temperatura solo 29*3264*1*C*c -Temperatura solo 30*3265*1*C*c -Temperatura solo 31*3266*1*C*c -Temperatura solo 32*3267*1*C*c -Temperatura solo 33*3268*1*C*c -Temperatura solo 34*3269*1*C*c -Temperatura solo 35*3270*1*C*c -Temperatura solo 36*3271*1*C*c - -Hidro - Tanque 1 - Altura Agua*1600*2*m*h -Hidro - Tanque 1 - Volume Agua*1601*2*m3*h -Hidro - Tanque 1 - Percentagem Agua*1602*0*%*h -Hidro - Tanque 1 - PH*1605*2*SU*h -Hidro - Tanque 1 - CE*1606*2*mS*h -Hidro - Tanque 1 - Temperatura Agua*1607*1*C*h -Hidro - Tanque 1 - Pressao*1608*1*Bar*h -Hidro - Tanque 1 - Programa a regar*1609*0*SU*h -Hidro - Tanque 1 - Grupo a regar*1612*0*SU*h -Hidro - Tanque 1 - A encher*1603,0*0*SU*h -Hidro - Tanque 1 - A esvaziar*1603,1*0*SU*h -Hidro - Tanque 1 - Bomba On*1603,2*0*SU*h -Hidro - Tanque 1 - Nivel minimo*1603,3*0*SU*h -Hidro - Tanque 1 - Nivel encher*1603,4*0*SU*h -Hidro - Tanque 1 - Nivel maximo*1603,5*0*SU*h -Hidro - Tanque 1 - A regar*1603,6*0*SU*h -Hidro - Tanque 1 - A encher (efetivo)*1603,7*0*SU*h -Hidro - Tanque 1 - Setor 1 On*1610,0*0*SU*h -Hidro - Tanque 1 - Setor 2 On*1610,1*0*SU*h -Hidro - Tanque 1 - Setor 3 On*1610,2*0*SU*h -Hidro - Tanque 1 - Setor 4 On*1610,3*0*SU*h -Hidro - Tanque 1 - Setor 5 On*1610,4*0*SU*h -Hidro - Tanque 1 - Setor 6 On*1610,5*0*SU*h -Hidro - Tanque 1 - Setor 7 On*1610,6*0*SU*h -Hidro - Tanque 1 - Setor 8 On*1610,7*0*SU*h -Hidro - Tanque 1 - Setor 9 On*1610,8*0*SU*h -Hidro - Tanque 1 - Setor 10 On*1610,9*0*SU*h -Hidro - Tanque 1 - Setor 11 On*1610,10*0*SU*h -Hidro - Tanque 1 - Setor 12 On*1610,11*0*SU*h -Hidro - Tanque 1 - Setor 13 On*1610,12*0*SU*h -Hidro - Tanque 1 - Setor 14 On*1610,13*0*SU*h -Hidro - Tanque 1 - Setor 15 On*1610,14*0*SU*h -Hidro - Tanque 1 - Setor 16 On*1610,15*0*SU*h -Hidro - Tanque 1 - Setor 17 On*1611,0*0*SU*h -Hidro - Tanque 1 - Setor 18 On*1611,1*0*SU*h -Hidro - Tanque 1 - Setor 19 On*1611,2*0*SU*h -Hidro - Tanque 1 - Setor 20 On*1611,3*0*SU*h -Hidro - Tanque 1 - Recirculacao On*1611,4*0*SU*h - -Hidro - Tanque 2 - Altura Agua*1700*2*m*h -Hidro - Tanque 2 - Volume Agua*1701*2*m3*h -Hidro - Tanque 2 - Percentagem Agua*1702*0*%*h -Hidro - Tanque 2 - PH*1705*2*SU*h -Hidro - Tanque 2 - CE*1706*2*mS*h -Hidro - Tanque 2 - Temperatura Agua*1707*1*C*h -Hidro - Tanque 2 - Pressao*1708*1*Bar*h -Hidro - Tanque 2 - Programa a regar*1709*0*SU*h -Hidro - Tanque 2 - Grupo a regar*1712*0*SU*h -Hidro - Tanque 2 - A encher*1703,0*0*SU*h -Hidro - Tanque 2 - A esvaziar*1703,1*0*SU*h -Hidro - Tanque 2 - Bomba On*1703,2*0*SU*h -Hidro - Tanque 2 - Nivel minimo*1703,3*0*SU*h -Hidro - Tanque 2 - Nivel encher*1703,4*0*SU*h -Hidro - Tanque 2 - Nivel maximo*1703,5*0*SU*h -Hidro - Tanque 2 - A regar*1703,6*0*SU*h -Hidro - Tanque 2 - A encher (efetivo)*1703,7*0*SU*h -Hidro - Tanque 2 - Setor 1 On*1710,0*0*SU*h -Hidro - Tanque 2 - Setor 2 On*1710,1*0*SU*h -Hidro - Tanque 2 - Setor 3 On*1710,2*0*SU*h -Hidro - Tanque 2 - Setor 4 On*1710,3*0*SU*h -Hidro - Tanque 2 - Setor 5 On*1710,4*0*SU*h -Hidro - Tanque 2 - Setor 6 On*1710,5*0*SU*h -Hidro - Tanque 2 - Setor 7 On*1710,6*0*SU*h -Hidro - Tanque 2 - Setor 8 On*1710,7*0*SU*h -Hidro - Tanque 2 - Setor 9 On*1710,8*0*SU*h -Hidro - Tanque 2 - Setor 10 On*1710,9*0*SU*h -Hidro - Tanque 2 - Setor 11 On*1710,10*0*SU*h -Hidro - Tanque 2 - Setor 12 On*1710,11*0*SU*h -Hidro - Tanque 2 - Setor 13 On*1710,12*0*SU*h -Hidro - Tanque 2 - Setor 14 On*1710,13*0*SU*h -Hidro - Tanque 2 - Setor 15 On*1710,14*0*SU*h -Hidro - Tanque 2 - Setor 17 On*1710,15*0*SU*h -Hidro - Tanque 2 - Setor 17 On*1711,0*0*SU*h -Hidro - Tanque 2 - Setor 18 On*1711,1*0*SU*h -Hidro - Tanque 2 - Setor 19 On*1711,2*0*SU*h -Hidro - Tanque 2 - Setor 20 On*1711,3*0*SU*h -Hidro - Tanque 2 - Recirculacao On*1711,4*0*SU*h - -Hidro - Tanque 3 - Altura Agua*1800*2*m*h -Hidro - Tanque 3 - Volume Agua*1801*2*m3*h -Hidro - Tanque 3 - Percentagem Agua*1802*0*%*h -Hidro - Tanque 3 - PH*1805*2*SU*h -Hidro - Tanque 3 - CE*1806*2*mS*h -Hidro - Tanque 3 - Temperatura Agua*1807*1*C*h -Hidro - Tanque 3 - Pressao*1808*1*Bar*h -Hidro - Tanque 3 - Programa a regar*1809*0*SU*h -Hidro - Tanque 3 - Grupo a regar*1812*0*SU*h -Hidro - Tanque 3 - A encher*1803,0*0*SU*h -Hidro - Tanque 3 - A esvaziar*1803,1*0*SU*h -Hidro - Tanque 3 - Bomba On*1803,2*0*SU*h -Hidro - Tanque 3 - Nivel minimo*1803,3*0*SU*h -Hidro - Tanque 3 - Nivel encher*1803,4*0*SU*h -Hidro - Tanque 3 - Nivel maximo*1803,5*0*SU*h -Hidro - Tanque 3 - A regar*1803,6*0*SU*h -Hidro - Tanque 3 - A encher (efetivo)*1803,7*0*SU*h -Hidro - Tanque 3 - Setor 1 On*1810,0*0*SU*h -Hidro - Tanque 3 - Setor 2 On*1810,1*0*SU*h -Hidro - Tanque 3 - Setor 3 On*1810,2*0*SU*h -Hidro - Tanque 3 - Setor 4 On*1810,3*0*SU*h -Hidro - Tanque 3 - Setor 5 On*1810,4*0*SU*h -Hidro - Tanque 3 - Setor 6 On*1810,5*0*SU*h -Hidro - Tanque 3 - Setor 7 On*1810,6*0*SU*h -Hidro - Tanque 3 - Setor 8 On*1810,7*0*SU*h -Hidro - Tanque 3 - Setor 9 On*1810,8*0*SU*h -Hidro - Tanque 3 - Setor 10 On*1810,9*0*SU*h -Hidro - Tanque 3 - Setor 11 On*1810,10*0*SU*h -Hidro - Tanque 3 - Setor 12 On*1810,11*0*SU*h -Hidro - Tanque 3 - Setor 13 On*1810,12*0*SU*h -Hidro - Tanque 3 - Setor 14 On*1810,13*0*SU*h -Hidro - Tanque 3 - Setor 15 On*1810,14*0*SU*h -Hidro - Tanque 3 - Setor 18 On*1810,15*0*SU*h -Hidro - Tanque 3 - Setor 18 On*1811,0*0*SU*h -Hidro - Tanque 3 - Setor 18 On*1811,1*0*SU*h -Hidro - Tanque 3 - Setor 19 On*1811,2*0*SU*h -Hidro - Tanque 3 - Setor 20 On*1811,3*0*SU*h -Hidro - Tanque 3 - Recirculacao On*1811,4*0*SU*h - -Hidro - Tanque 4 - Altura Agua*1900*2*m*h -Hidro - Tanque 4 - Volume Agua*1901*2*m3*h -Hidro - Tanque 4 - Percentagem Agua*1902*0*%*h -Hidro - Tanque 4 - PH*1905*2*SU*h -Hidro - Tanque 4 - CE*1906*2*mS*h -Hidro - Tanque 4 - Temperatura Agua*1907*1*C*h -Hidro - Tanque 4 - Pressao*1908*1*Bar*h -Hidro - Tanque 4 - Programa a regar*1909*0*SU*h -Hidro - Tanque 4 - Grupo a regar*1912*0*SU*h -Hidro - Tanque 4 - A encher*1903,0*0*SU*h -Hidro - Tanque 4 - A esvaziar*1903,1*0*SU*h -Hidro - Tanque 4 - Bomba On*1903,2*0*SU*h -Hidro - Tanque 4 - Nivel minimo*1903,3*0*SU*h -Hidro - Tanque 4 - Nivel encher*1903,4*0*SU*h -Hidro - Tanque 4 - Nivel maximo*1903,5*0*SU*h -Hidro - Tanque 4 - A regar*1903,6*0*SU*h -Hidro - Tanque 4 - A encher (efetivo)*1903,7*0*SU*h -Hidro - Tanque 4 - Setor 1 On*1910,0*0*SU*h -Hidro - Tanque 4 - Setor 2 On*1910,1*0*SU*h -Hidro - Tanque 4 - Setor 3 On*1910,2*0*SU*h -Hidro - Tanque 4 - Setor 4 On*1910,3*0*SU*h -Hidro - Tanque 4 - Setor 5 On*1910,4*0*SU*h -Hidro - Tanque 4 - Setor 6 On*1910,5*0*SU*h -Hidro - Tanque 4 - Setor 7 On*1910,6*0*SU*h -Hidro - Tanque 4 - Setor 8 On*1910,7*0*SU*h -Hidro - Tanque 4 - Setor 9 On*1910,8*0*SU*h -Hidro - Tanque 4 - Setor 10 On*1910,9*0*SU*h -Hidro - Tanque 4 - Setor 11 On*1910,10*0*SU*h -Hidro - Tanque 4 - Setor 12 On*1910,11*0*SU*h -Hidro - Tanque 4 - Setor 13 On*1910,12*0*SU*h -Hidro - Tanque 4 - Setor 14 On*1910,13*0*SU*h -Hidro - Tanque 4 - Setor 15 On*1910,14*0*SU*h -Hidro - Tanque 4 - Setor 19 On*1910,15*0*SU*h -Hidro - Tanque 4 - Setor 19 On*1911,0*0*SU*h -Hidro - Tanque 4 - Setor 19 On*1911,1*0*SU*h -Hidro - Tanque 4 - Setor 19 On*1911,2*0*SU*h -Hidro - Tanque 4 - Setor 20 On*1911,3*0*SU*h -Hidro - Tanque 4 - Recirculacao On*1911,4*0*SU*h - -Hidro - Tanque 5 - Altura Agua*2000*2*m*h -Hidro - Tanque 5 - Volume Agua*2001*2*m3*h -Hidro - Tanque 5 - Percentagem Agua*2002*0*%*h -Hidro - Tanque 5 - PH*2005*2*SU*h -Hidro - Tanque 5 - CE*2006*2*mS*h -Hidro - Tanque 5 - Temperatura Agua*2007*1*C*h -Hidro - Tanque 5 - Pressao*2008*1*Bar*h -Hidro - Tanque 5 - Programa a regar*2009*0*SU*h -Hidro - Tanque 5 - Grupo a regar*2012*0*SU*h -Hidro - Tanque 5 - A encher*2003,0*0*SU*h -Hidro - Tanque 5 - A esvaziar*2003,1*0*SU*h -Hidro - Tanque 5 - Bomba On*2003,2*0*SU*h -Hidro - Tanque 5 - Nivel minimo*2003,3*0*SU*h -Hidro - Tanque 5 - Nivel encher*2003,4*0*SU*h -Hidro - Tanque 5 - Nivel maximo*2003,5*0*SU*h -Hidro - Tanque 5 - A regar*2003,6*0*SU*h -Hidro - Tanque 5 - A encher (efetivo)*2003,7*0*SU*h -Hidro - Tanque 5 - Setor 1 On*2010,0*0*SU*h -Hidro - Tanque 5 - Setor 2 On*2010,1*0*SU*h -Hidro - Tanque 5 - Setor 3 On*2010,2*0*SU*h -Hidro - Tanque 5 - Setor 4 On*2010,3*0*SU*h -Hidro - Tanque 5 - Setor 5 On*2010,4*0*SU*h -Hidro - Tanque 5 - Setor 6 On*2010,5*0*SU*h -Hidro - Tanque 5 - Setor 7 On*2010,6*0*SU*h -Hidro - Tanque 5 - Setor 8 On*2010,7*0*SU*h -Hidro - Tanque 5 - Setor 9 On*2010,8*0*SU*h -Hidro - Tanque 5 - Setor 10 On*2010,9*0*SU*h -Hidro - Tanque 5 - Setor 11 On*2010,10*0*SU*h -Hidro - Tanque 5 - Setor 12 On*2010,11*0*SU*h -Hidro - Tanque 5 - Setor 13 On*2010,12*0*SU*h -Hidro - Tanque 5 - Setor 14 On*2010,13*0*SU*h -Hidro - Tanque 5 - Setor 15 On*2010,14*0*SU*h -Hidro - Tanque 5 - Setor 20 On*2010,15*0*SU*h -Hidro - Tanque 5 - Setor 20 On*2011,0*0*SU*h -Hidro - Tanque 5 - Setor 20 On*2011,1*0*SU*h -Hidro - Tanque 5 - Setor 20 On*2011,2*0*SU*h -Hidro - Tanque 5 - Setor 20 On*2011,3*0*SU*h -Hidro - Tanque 5 - Recirculacao On*2011,4*0*SU*h - -Hidro - Tanque 6 - Altura Agua*2100*2*m*h -Hidro - Tanque 6 - Volume Agua*2101*2*m3*h -Hidro - Tanque 6 - Percentagem Agua*2102*0*%*h -Hidro - Tanque 6 - PH*2105*2*SU*h -Hidro - Tanque 6 - CE*2106*2*mS*h -Hidro - Tanque 6 - Temperatura Agua*2107*1*C*h -Hidro - Tanque 6 - Pressao*2108*1*Bar*h -Hidro - Tanque 6 - Programa a regar*2109*0*SU*h -Hidro - Tanque 6 - Grupo a regar*2112*0*SU*h -Hidro - Tanque 6 - A encher*2103,0*0*SU*h -Hidro - Tanque 6 - A esvaziar*2103,1*0*SU*h -Hidro - Tanque 6 - Bomba On*2103,2*0*SU*h -Hidro - Tanque 6 - Nivel minimo*2103,3*0*SU*h -Hidro - Tanque 6 - Nivel encher*2103,4*0*SU*h -Hidro - Tanque 6 - Nivel maximo*2103,5*0*SU*h -Hidro - Tanque 6 - A regar*2103,6*0*SU*h -Hidro - Tanque 6 - A encher (efetivo)*2103,7*0*SU*h -Hidro - Tanque 6 - Setor 1 On*2110,0*0*SU*h -Hidro - Tanque 6 - Setor 2 On*2110,1*0*SU*h -Hidro - Tanque 6 - Setor 3 On*2110,2*0*SU*h -Hidro - Tanque 6 - Setor 4 On*2110,3*0*SU*h -Hidro - Tanque 6 - Setor 5 On*2110,4*0*SU*h -Hidro - Tanque 6 - Setor 6 On*2110,5*0*SU*h -Hidro - Tanque 6 - Setor 7 On*2110,6*0*SU*h -Hidro - Tanque 6 - Setor 8 On*2110,7*0*SU*h -Hidro - Tanque 6 - Setor 9 On*2110,8*0*SU*h -Hidro - Tanque 6 - Setor 10 On*2110,9*0*SU*h -Hidro - Tanque 6 - Setor 11 On*2110,10*0*SU*h -Hidro - Tanque 6 - Setor 12 On*2110,11*0*SU*h -Hidro - Tanque 6 - Setor 13 On*2110,12*0*SU*h -Hidro - Tanque 6 - Setor 14 On*2110,13*0*SU*h -Hidro - Tanque 6 - Setor 15 On*2110,14*0*SU*h -Hidro - Tanque 6 - Setor 21 On*2110,15*0*SU*h -Hidro - Tanque 6 - Setor 21 On*2111,0*0*SU*h -Hidro - Tanque 6 - Setor 21 On*2111,1*0*SU*h -Hidro - Tanque 6 - Setor 21 On*2111,2*0*SU*h -Hidro - Tanque 6 - Setor 21 On*2111,3*0*SU*h -Hidro - Tanque 6 - Recirculacao On*2111,4*0*SU*h - -Hidro - Tanque 7 - Altura Agua*2200*2*m*h -Hidro - Tanque 7 - Volume Agua*2201*2*m3*h -Hidro - Tanque 7 - Percentagem Agua*2202*0*%*h -Hidro - Tanque 7 - PH*2205*2*SU*h -Hidro - Tanque 7 - CE*2206*2*mS*h -Hidro - Tanque 7 - Temperatura Agua*2207*1*C*h -Hidro - Tanque 7 - Pressao*2208*1*Bar*h -Hidro - Tanque 7 - Programa a regar*2209*0*SU*h -Hidro - Tanque 7 - Grupo a regar*2212*0*SU*h -Hidro - Tanque 7 - A encher*2203,0*0*SU*h -Hidro - Tanque 7 - A esvaziar*2203,1*0*SU*h -Hidro - Tanque 7 - Bomba On*2203,2*0*SU*h -Hidro - Tanque 7 - Nivel minimo*2203,3*0*SU*h -Hidro - Tanque 7 - Nivel encher*2203,4*0*SU*h -Hidro - Tanque 7 - Nivel maximo*2203,5*0*SU*h -Hidro - Tanque 7 - A regar*2203,6*0*SU*h -Hidro - Tanque 7 - A encher (efetivo)*2203,7*0*SU*h -Hidro - Tanque 7 - Setor 1 On*2210,0*0*SU*h -Hidro - Tanque 7 - Setor 2 On*2210,1*0*SU*h -Hidro - Tanque 7 - Setor 3 On*2210,2*0*SU*h -Hidro - Tanque 7 - Setor 4 On*2210,3*0*SU*h -Hidro - Tanque 7 - Setor 5 On*2210,4*0*SU*h -Hidro - Tanque 7 - Setor 6 On*2210,5*0*SU*h -Hidro - Tanque 7 - Setor 7 On*2210,6*0*SU*h -Hidro - Tanque 7 - Setor 8 On*2210,7*0*SU*h -Hidro - Tanque 7 - Setor 9 On*2210,8*0*SU*h -Hidro - Tanque 7 - Setor 10 On*2210,9*0*SU*h -Hidro - Tanque 7 - Setor 11 On*2210,10*0*SU*h -Hidro - Tanque 7 - Setor 12 On*2210,11*0*SU*h -Hidro - Tanque 7 - Setor 13 On*2210,12*0*SU*h -Hidro - Tanque 7 - Setor 14 On*2210,13*0*SU*h -Hidro - Tanque 7 - Setor 15 On*2210,14*0*SU*h -Hidro - Tanque 7 - Setor 22 On*2210,15*0*SU*h -Hidro - Tanque 7 - Setor 22 On*2211,0*0*SU*h -Hidro - Tanque 7 - Setor 22 On*2211,1*0*SU*h -Hidro - Tanque 7 - Setor 22 On*2211,2*0*SU*h -Hidro - Tanque 7 - Setor 22 On*2211,3*0*SU*h -Hidro - Tanque 7 - Recirculacao On*2211,4*0*SU*h - -Hidro - Tanque 8 - Altura Agua*2300*2*m*h -Hidro - Tanque 8 - Volume Agua*2301*2*m3*h -Hidro - Tanque 8 - Percentagem Agua*2302*0*%*h -Hidro - Tanque 8 - PH*2305*2*SU*h -Hidro - Tanque 8 - CE*2306*2*mS*h -Hidro - Tanque 8 - Temperatura Agua*2307*1*C*h -Hidro - Tanque 8 - Pressao*2308*1*Bar*h -Hidro - Tanque 8 - Programa a regar*2309*0*SU*h -Hidro - Tanque 8 - Grupo a regar*2312*0*SU*h -Hidro - Tanque 8 - A encher*2303,0*0*SU*h -Hidro - Tanque 8 - A esvaziar*2303,1*0*SU*h -Hidro - Tanque 8 - Bomba On*2303,2*0*SU*h -Hidro - Tanque 8 - Nivel minimo*2303,3*0*SU*h -Hidro - Tanque 8 - Nivel encher*2303,4*0*SU*h -Hidro - Tanque 8 - Nivel maximo*2303,5*0*SU*h -Hidro - Tanque 8 - A regar*2303,6*0*SU*h -Hidro - Tanque 8 - A encher (efetivo)*2303,7*0*SU*h -Hidro - Tanque 8 - Setor 1 On*2310,0*0*SU*h -Hidro - Tanque 8 - Setor 2 On*2310,1*0*SU*h -Hidro - Tanque 8 - Setor 3 On*2310,2*0*SU*h -Hidro - Tanque 8 - Setor 4 On*2310,3*0*SU*h -Hidro - Tanque 8 - Setor 5 On*2310,4*0*SU*h -Hidro - Tanque 8 - Setor 6 On*2310,5*0*SU*h -Hidro - Tanque 8 - Setor 7 On*2310,6*0*SU*h -Hidro - Tanque 8 - Setor 8 On*2310,7*0*SU*h -Hidro - Tanque 8 - Setor 9 On*2310,8*0*SU*h -Hidro - Tanque 8 - Setor 10 On*2310,9*0*SU*h -Hidro - Tanque 8 - Setor 11 On*2310,10*0*SU*h -Hidro - Tanque 8 - Setor 12 On*2310,11*0*SU*h -Hidro - Tanque 8 - Setor 13 On*2310,12*0*SU*h -Hidro - Tanque 8 - Setor 14 On*2310,13*0*SU*h -Hidro - Tanque 8 - Setor 15 On*2310,14*0*SU*h -Hidro - Tanque 8 - Setor 23 On*2310,15*0*SU*h -Hidro - Tanque 8 - Setor 23 On*2311,0*0*SU*h -Hidro - Tanque 8 - Setor 23 On*2311,1*0*SU*h -Hidro - Tanque 8 - Setor 23 On*2311,2*0*SU*h -Hidro - Tanque 8 - Setor 23 On*2311,3*0*SU*h -Hidro - Tanque 8 - Recirculacao On*2311,4*0*SU*h - -Hidro - Tanque 9 - Altura Agua*2400*2*m*h -Hidro - Tanque 9 - Volume Agua*2401*2*m3*h -Hidro - Tanque 9 - Percentagem Agua*2402*0*%*h -Hidro - Tanque 9 - PH*2405*2*SU*h -Hidro - Tanque 9 - CE*2406*2*mS*h -Hidro - Tanque 9 - Temperatura Agua*2407*1*C*h -Hidro - Tanque 9 - Pressao*2408*1*Bar*h -Hidro - Tanque 9 - Programa a regar*2409*0*SU*h -Hidro - Tanque 9 - Grupo a regar*2412*0*SU*h -Hidro - Tanque 9 - A encher*2403,0*0*SU*h -Hidro - Tanque 9 - A esvaziar*2403,1*0*SU*h -Hidro - Tanque 9 - Bomba On*2403,2*0*SU*h -Hidro - Tanque 9 - Nivel minimo*2403,3*0*SU*h -Hidro - Tanque 9 - Nivel encher*2403,4*0*SU*h -Hidro - Tanque 9 - Nivel maximo*2403,5*0*SU*h -Hidro - Tanque 9 - A regar*2403,6*0*SU*h -Hidro - Tanque 9 - A encher (efetivo)*2403,7*0*SU*h -Hidro - Tanque 9 - Setor 1 On*2410,0*0*SU*h -Hidro - Tanque 9 - Setor 2 On*2410,1*0*SU*h -Hidro - Tanque 9 - Setor 3 On*2410,2*0*SU*h -Hidro - Tanque 9 - Setor 4 On*2410,3*0*SU*h -Hidro - Tanque 9 - Setor 5 On*2410,4*0*SU*h -Hidro - Tanque 9 - Setor 6 On*2410,5*0*SU*h -Hidro - Tanque 9 - Setor 7 On*2410,6*0*SU*h -Hidro - Tanque 9 - Setor 8 On*2410,7*0*SU*h -Hidro - Tanque 9 - Setor 9 On*2410,8*0*SU*h -Hidro - Tanque 9 - Setor 10 On*2410,9*0*SU*h -Hidro - Tanque 9 - Setor 11 On*2410,10*0*SU*h -Hidro - Tanque 9 - Setor 12 On*2410,11*0*SU*h -Hidro - Tanque 9 - Setor 13 On*2410,12*0*SU*h -Hidro - Tanque 9 - Setor 14 On*2410,13*0*SU*h -Hidro - Tanque 9 - Setor 15 On*2410,14*0*SU*h -Hidro - Tanque 9 - Setor 24 On*2410,15*0*SU*h -Hidro - Tanque 9 - Setor 24 On*2411,0*0*SU*h -Hidro - Tanque 9 - Setor 24 On*2411,1*0*SU*h -Hidro - Tanque 9 - Setor 24 On*2411,2*0*SU*h -Hidro - Tanque 9 - Setor 24 On*2411,3*0*SU*h -Hidro - Tanque 9 - Recirculacao On*2411,4*0*SU*h - -Hidro - Tanque 10 - Altura Agua*2500*2*m*h -Hidro - Tanque 10 - Volume Agua*2501*2*m3*h -Hidro - Tanque 10 - Percentagem Agua*2502*0*%*h -Hidro - Tanque 10 - PH*2505*2*SU*h -Hidro - Tanque 10 - CE*2506*2*mS*h -Hidro - Tanque 10 - Temperatura Agua*2507*1*C*h -Hidro - Tanque 10 - Pressao*2508*1*Bar*h -Hidro - Tanque 10 - Programa a regar*2509*0*SU*h -Hidro - Tanque 10 - Grupo a regar*2512*0*SU*h -Hidro - Tanque 10 - A encher*2503,0*0*SU*h -Hidro - Tanque 10 - A esvaziar*2503,1*0*SU*h -Hidro - Tanque 10 - Bomba On*2503,2*0*SU*h -Hidro - Tanque 10 - Nivel minimo*2503,3*0*SU*h -Hidro - Tanque 10 - Nivel encher*2503,4*0*SU*h -Hidro - Tanque 10 - Nivel maximo*2503,5*0*SU*h -Hidro - Tanque 10 - A regar*2503,6*0*SU*h -Hidro - Tanque 10 - A encher (efetivo)*2503,7*0*SU*h -Hidro - Tanque 10 - Setor 1 On*2510,0*0*SU*h -Hidro - Tanque 10 - Setor 2 On*2510,1*0*SU*h -Hidro - Tanque 10 - Setor 3 On*2510,2*0*SU*h -Hidro - Tanque 10 - Setor 4 On*2510,3*0*SU*h -Hidro - Tanque 10 - Setor 5 On*2510,4*0*SU*h -Hidro - Tanque 10 - Setor 6 On*2510,5*0*SU*h -Hidro - Tanque 10 - Setor 7 On*2510,6*0*SU*h -Hidro - Tanque 10 - Setor 8 On*2510,7*0*SU*h -Hidro - Tanque 10 - Setor 9 On*2510,8*0*SU*h -Hidro - Tanque 10 - Setor 10 On*2510,9*0*SU*h -Hidro - Tanque 10 - Setor 11 On*2510,10*0*SU*h -Hidro - Tanque 10 - Setor 12 On*2510,11*0*SU*h -Hidro - Tanque 10 - Setor 13 On*2510,12*0*SU*h -Hidro - Tanque 10 - Setor 14 On*2510,13*0*SU*h -Hidro - Tanque 10 - Setor 15 On*2510,14*0*SU*h -Hidro - Tanque 10 - Setor 25 On*2510,15*0*SU*h -Hidro - Tanque 10 - Setor 25 On*2511,0*0*SU*h -Hidro - Tanque 10 - Setor 25 On*2511,1*0*SU*h -Hidro - Tanque 10 - Setor 25 On*2511,2*0*SU*h -Hidro - Tanque 10 - Setor 25 On*2511,3*0*SU*h -Hidro - Tanque 10 - Recirculacao On*2511,4*0*SU*h - -PH1 C2*1100*2*SU*r -PH2 C2*1101*2*SU*r -CE1 C2*1102*2*SU*r -CE2 C2*1103*2*SU*r -CE3 C2*1104*2*SU*r -Temperatura CE1 C2*1105*1*SU*r -Temperatura CE2 C2*1106*1*SU*r -Temperatura CE3 C2*1107*1*SU*r -Pressao Bomba 1 C2*1108*1*SU*r -Pressao Bomba 2 C2*1109*1*SU*r -Pressao Bomba 3 C2*1110*1*SU*r -Referencia PH C2*1114*1*SU*r -Modulacao PH C2*1115*1*SU*r -Referencia CE C2*1116*1*SU*r -Modulacao CE C2*1117*1*SU*r - -PH1 C3*1200*2*SU*r -PH2 C3*1201*2*SU*r -CE1 C3*1202*2*SU*r -CE2 C3*1203*2*SU*r -CE3 C3*1204*2*SU*r -Temperatura CE1 C3*1205*1*SU*r -Temperatura CE2 C3*1206*1*SU*r -Temperatura CE3 C3*1207*1*SU*r -Pressao Bomba 1 C3*1208*1*SU*r -Pressao Bomba 2 C3*1209*1*SU*r -Pressao Bomba 3 C3*1210*1*SU*r -Referencia PH C3*1214*2*SU*r -Modulacao PH C3*1215*1*SU*r -Referencia CE C3*1216*2*SU*r -Modulacao CE C3*1217*1*SU*r - -PH1 C4*1300*2*SU*r -PH2 C4*1301*2*SU*r -CE1 C4*1302*2*SU*r -CE2 C4*1303*2*SU*r -CE3 C4*1304*2*SU*r -Temperatura CE1 C4*1305*1*SU*r -Temperatura CE2 C4*1306*1*SU*r -Temperatura CE3 C4*1307*1*SU*r -Pressao Bomba 1 C4*1308*1*SU*r -Pressao Bomba 2 C4*1309*1*SU*r -Pressao Bomba 3 C4*1310*1*SU*r -Referencia PH C4*1314*2*SU*r -Modulacao PH C4*1315*1*SU*r -Referencia CE C4*1316*2*SU*r -Modulacao CE C4*1317*1*SU*r - -PH1 C5*1400*2*SU*r -PH2 C5*1401*2*SU*r -CE1 C5*1402*2*SU*r -CE2 C5*1403*2*SU*r -CE3 C5*1404*2*SU*r -Temperatura CE1 C5*1405*1*SU*r -Temperatura CE2 C5*1406*1*SU*r -Temperatura CE3 C5*1407*1*SU*r -Pressao Bomba 1 C5*1408*1*SU*r -Pressao Bomba 2 C5*1409*1*SU*r -Pressao Bomba 3 C5*1410*1*SU*r -Referencia PH C5*1414*2*SU*r -Modulacao PH C5*1415*1*SU*r -Referencia CE C5*1416*2*SU*r -Modulacao CE C5*1417*1*SU*r - -PH1 C6*1500*2*SU*r -PH2 C6*1501*2*SU*r -CE1 C6*1502*2*SU*r -CE2 C6*1503*2*SU*r -CE3 C6*1504*2*SU*r -Temperatura CE1 C6*1505*1*SU*r -Temperatura CE2 C6*1506*1*SU*r -Temperatura CE3 C6*1507*1*SU*r -Pressao Bomba 1 C6*1508*1*SU*r -Pressao Bomba 2 C6*1509*1*SU*r -Pressao Bomba 3 C6*1510*1*SU*r -Referencia PH C6*1514*2*SU*r -Modulacao PH C6*1515*1*SU*r -Referencia CE C6*1516*2*SU*r -Modulacao CE C6*1517*1*SU*r - -Dren. - Peso Bancada 1*3300*2*Kg*r -Dren. - PH Agua Bancada 1*3301*2*SU*r -Dren. - CE Agua Bancada 1*3302*2*mS*r -Dren. - Temperatura Agua Bancada 1*3303*1*C*r -Dren. - CE Solo Bancada 1*3304*2*mS*r -Dren. - Temperatura Solo Bancada 1*3305*1*C*r -Dren. - Humidade Solo Bancada 1*3306*0*%*r -Dren. - Drenagem Bancada 1*3307*3*L*r -Dren. - Capacidade Bancada 1*3308*2*mL*r - -Dren. - Peso Bancada 2*3310*2*Kg*r -Dren. - PH Agua Bancada 2*3311*2*SU*r -Dren. - CE Agua Bancada 2*3312*2*mS*r -Dren. - Temperatura Agua Bancada 2*3313*1*C*r -Dren. - CE Solo Bancada 2*3314*2*mS*r -Dren. - Temperatura Solo Bancada 2*3315*1*C*r -Dren. - Humidade Solo Bancada 2*3316*0*%*r -Dren. - Drenagem Bancada 2*3317*3*L*r -Dren. - Capacidade Bancada 2*3318*2*mL*r - -Dren. - Peso Bancada 3*3320*2*Kg*r -Dren. - PH Agua Bancada 3*3321*2*SU*r -Dren. - CE Agua Bancada 3*3322*2*mS*r -Dren. - Temperatura Agua Bancada 3*3323*1*C*r -Dren. - CE Solo Bancada 3*3324*2*mS*r -Dren. - Temperatura Solo Bancada 3*3325*1*C*r -Dren. - Humidade Solo Bancada 3*3326*0*%*r -Dren. - Drenagem Bancada 3*3327*3*L*r -Dren. - Capacidade Bancada 3*3328*2*mL*r - -Dren. - Peso Bancada 4*3330*2*Kg*r -Dren. - PH Agua Bancada 4*3331*2*SU*r -Dren. - CE Agua Bancada 4*3332*2*mS*r -Dren. - Temperatura Agua Bancada 4*3333*1*C*r -Dren. - CE Solo Bancada 4*3334*2*mS*r -Dren. - Temperatura Solo Bancada 4*3335*1*C*r -Dren. - Humidade Solo Bancada 4*3336*0*%*r -Dren. - Drenagem Bancada 4*3337*2*L*r -Dren. - Capacidade Bancada 4*3338*2*mL*r - -Dren. - Peso Bancada 5*3340*2*Kg*r -Dren. - PH Agua Bancada 5*3341*2*SU*r -Dren. - CE Agua Bancada 5*3342*2*mS*r -Dren. - Temperatura Agua Bancada 5*3343*1*C*r -Dren. - CE Solo Bancada 5*3344*2*mS*r -Dren. - Temperatura Solo Bancada 5*3345*1*C*r -Dren. - Humidade Solo Bancada 5*3346*0*%*r -Dren. - Drenagem Bancada 5*3347*2*L*r -Dren. - Capacidade Bancada 5*3348*2*mL*r - -Dren. - Peso Bancada 6*3350*2*Kg*r -Dren. - PH Agua Bancada 6*3351*2*SU*r -Dren. - CE Agua Bancada 6*3352*2*mS*r -Dren. - Temperatura Agua Bancada 6*3353*1*C*r -Dren. - CE Solo Bancada 6*3354*2*mS*r -Dren. - Temperatura Solo Bancada 6*3355*1*C*r -Dren. - Humidade Solo Bancada 6*3356*0*%*r -Dren. - Drenagem Bancada 6*3357*2*L*r -Dren. - Capacidade Bancada 6*3358*2*mL*r - -Dren. - Peso Bancada 7*3360*2*Kg*r -Dren. - PH Agua Bancada 7*3361*2*SU*r -Dren. - CE Agua Bancada 7*3362*2*mS*r -Dren. - Temperatura Agua Bancada 7*3363*1*C*r -Dren. - CE Solo Bancada 7*3364*2*mS*r -Dren. - Temperatura Solo Bancada 7*3365*1*C*r -Dren. - Humidade Solo Bancada 7*3366*0*%*r -Dren. - Drenagem Bancada 7*3367*2*L*r -Dren. - Capacidade Bancada 7*3368*2*mL*r - -Dren. - Peso Bancada 8*3370*2*Kg*r -Dren. - PH Agua Bancada 8*3371*2*SU*r -Dren. - CE Agua Bancada 8*3372*2*mS*r -Dren. - Temperatura Agua Bancada 8*3373*1*C*r -Dren. - CE Solo Bancada 8*3374*2*mS*r -Dren. - Temperatura Solo Bancada 8*3375*1*C*r -Dren. - Humidade Solo Bancada 8*3376*0*%*r -Dren. - Drenagem Bancada 8*3377*2*L*r -Dren. - Capacidade Bancada 8*3378*2*mL*r - -Dren. - Peso Bancada 9*3380*2*Kg*r -Dren. - PH Agua Bancada 9*3381*2*SU*r -Dren. - CE Agua Bancada 9*3382*2*mS*r -Dren. - Temperatura Agua Bancada 9*3383*1*C*r -Dren. - CE Solo Bancada 9*3384*2*mS*r -Dren. - Temperatura Solo Bancada 9*3385*1*C*r -Dren. - Humidade Solo Bancada 9*3386*0*%*r -Dren. - Drenagem Bancada 9*3387*2*L*r -Dren. - Capacidade Bancada 9*3388*2*mL*r - -Dren. - Peso Bancada 10*3390*2*Kg*r -Dren. - PH Agua Bancada 10*3391*2*SU*r -Dren. - CE Agua Bancada 10*3392*2*mS*r -Dren. - Temperatura Agua Bancada 10*3393*1*C*r -Dren. - CE Solo Bancada 10*3394*2*mS*r -Dren. - Temperatura Solo Bancada 10*3395*1*C*r -Dren. - Humidade Solo Bancada 10*3396*0*%*r -Dren. - Drenagem Bancada 10*3397*2*L*r -Dren. - Capacidade Bancada 10*3398*2*mL*r - -Dren. - Peso Bancada 11*3400*2*Kg*r -Dren. - PH Agua Bancada 11*3401*2*SU*r -Dren. - CE Agua Bancada 11*3402*2*mS*r -Dren. - Temperatura Agua Bancada 11*3403*1*C*r -Dren. - CE Solo Bancada 11*3404*2*mS*r -Dren. - Temperatura Solo Bancada 11*3405*1*C*r -Dren. - Humidade Solo Bancada 11*3406*0*%*r -Dren. - Drenagem Bancada 11*3407*2*L*r -Dren. - Capacidade Bancada 11*3408*2*mL*r - -Rad - Sensor 1*4220*0*w/m2*r -Rad - Sensor 2*4221*0*w/m2*r -Rad - Sensor 3*4222*0*w/m2*r -Rad - Sensor 4*4223*0*w/m2*r -Rad - Sensor 5*4224*0*w/m2*r -Rad - Sensor 6*4225*0*w/m2*r -Rad - Sensor 7*4226*0*w/m2*r -Rad - Sensor 8*4227*0*w/m2*r -Rad - Sensor 9*4228*0*w/m2*r -Rad - Sensor 10*4229*0*umol/m2*r -Rad - Sensor 11*4230*0*umol/m2*r -Rad - Sensor 12*4231*0*umol/m2*r -Rad - Sensor 13*4232*0*umol/m2*r -Rad - Sensor 14*4233*0*umol/m2*r -Rad - Sensor 15*4234*0*umol/m2*r -Rad - Sensor 16*4235*0*umol/m2*r -Rad - Sensor 17*4236*0*umol/m2*r -Rad - Sensor 18*4237*0*umol/m2*r -Rad - Sensor 19*4238*0*umol/m2*r -Rad - Sensor 20*4239*0*umol/m2*r - -Rad Acum - C1 P1*4240*0*w/m2*r -Rad Acum - C1 P2*4241*0*w/m2*r -Rad Acum - C1 P3*4242*0*w/m2*r -Rad Acum - C1 P4*4243*0*w/m2*r -Rad Acum - C1 P5*4244*0*w/m2*r -Rad Acum - C1 P6*4245*0*w/m2*r -Rad Acum - C1 P7*4246*0*w/m2*r -Rad Acum - C1 P8*4247*0*w/m2*r -Rad Acum - C1 P9*4248*0*w/m2*r -Rad Acum - C1 P10*4249*0*umol/m2*r -Rad Acum - C1 P11*4250*0*umol/m2*r -Rad Acum - C1 P12*4251*0*umol/m2*r -Rad Acum - C1 P13*4252*0*umol/m2*r -Rad Acum - C1 P14*4253*0*umol/m2*r -Rad Acum - C1 P15*4254*0*umol/m2*r -Rad Acum - C1 P16*4255*0*umol/m2*r -Rad Acum - C1 P17*4256*0*umol/m2*r -Rad Acum - C1 P18*4257*0*umol/m2*r -Rad Acum - C1 P19*4258*0*umol/m2*r -Rad Acum - C1 P120*4259*0*umol/m2*r -Rad Acum - C2 P1*4260*0*umol/m2*r -Rad Acum - C2 P2*4261*0*umol/m2*r -Rad Acum - C2 P3*4262*0*umol/m2*r -Rad Acum - C2 P4*4263*0*umol/m2*r -Rad Acum - C2 P5*4264*0*umol/m2*r -Rad Acum - C2 P6*4265*0*umol/m2*r -Rad Acum - C2 P7*4266*0*umol/m2*r -Rad Acum - C2 P8*4267*0*umol/m2*r -Rad Acum - C2 P9*4268*0*umol/m2*r -Rad Acum - C2 P10*4269*0*umol/m2*r -Rad Acum - C2 P11*4270*0*umol/m2*r -Rad Acum - C2 P12*4271*0*umol/m2*r -Rad Acum - C2 P13*4272*0*umol/m2*r -Rad Acum - C2 P14*4273*0*umol/m2*r -Rad Acum - C2 P15*4274*0*umol/m2*r -Rad Acum - C2 P16*4275*0*umol/m2*r -Rad Acum - C2 P17*4276*0*umol/m2*r -Rad Acum - C2 P18*4277*0*umol/m2*r -Rad Acum - C2 P19*4278*0*umol/m2*r -Rad Acum - C2 P120*4279*0*umol/m2*r -Rad Acum - C3 P1*4280*0*umol/m2*r -Rad Acum - C3 P2*4281*0*umol/m2*r -Rad Acum - C3 P3*4282*0*umol/m2*r -Rad Acum - C3 P4*4283*0*umol/m2*r -Rad Acum - C3 P5*4284*0*umol/m2*r -Rad Acum - C3 P6*4285*0*umol/m2*r -Rad Acum - C3 P7*4286*0*umol/m2*r -Rad Acum - C3 P8*4287*0*umol/m2*r -Rad Acum - C3 P9*4288*0*umol/m2*r -Rad Acum - C3 P10*4289*0*umol/m2*r -Rad Acum - C3 P11*4290*0*umol/m2*r -Rad Acum - C3 P12*4291*0*umol/m2*r -Rad Acum - C3 P13*4292*0*umol/m2*r -Rad Acum - C3 P14*4293*0*umol/m2*r -Rad Acum - C3 P15*4294*0*umol/m2*r -Rad Acum - C3 P16*4295*0*umol/m2*r -Rad Acum - C3 P17*4296*0*umol/m2*r -Rad Acum - C3 P18*4297*0*umol/m2*r -Rad Acum - C3 P19*4298*0*umol/m2*r -Rad Acum - C3 P120*4299*0*umol/m2*r -Rad Acum - C4 P1*4300*0*umol/m2*r -Rad Acum - C4 P2*4301*0*umol/m2*r -Rad Acum - C4 P3*4302*0*umol/m2*r -Rad Acum - C4 P4*4303*0*umol/m2*r -Rad Acum - C4 P5*4304*0*umol/m2*r -Rad Acum - C4 P6*4305*0*umol/m2*r -Rad Acum - C4 P7*4306*0*umol/m2*r -Rad Acum - C4 P8*4307*0*umol/m2*r -Rad Acum - C4 P9*4308*0*umol/m2*r -Rad Acum - C4 P10*4309*0*umol/m2*r -Rad Acum - C4 P11*4310*0*umol/m2*r -Rad Acum - C4 P12*4311*0*umol/m2*r -Rad Acum - C4 P13*4312*0*umol/m2*r -Rad Acum - C4 P14*4313*0*umol/m2*r -Rad Acum - C4 P15*4314*0*umol/m2*r -Rad Acum - C4 P16*4315*0*umol/m2*r -Rad Acum - C4 P17*4316*0*umol/m2*r -Rad Acum - C4 P18*4317*0*umol/m2*r -Rad Acum - C4 P19*4318*0*umol/m2*r -Rad Acum - C4 P120*4319*0*umol/m2*r -Rad Acum - C5 P1*4320*0*umol/m2*r -Rad Acum - C5 P2*4321*0*umol/m2*r -Rad Acum - C5 P3*4322*0*umol/m2*r -Rad Acum - C5 P4*4323*0*umol/m2*r -Rad Acum - C5 P5*4324*0*umol/m2*r -Rad Acum - C5 P6*4325*0*umol/m2*r -Rad Acum - C5 P7*4326*0*umol/m2*r -Rad Acum - C5 P8*4327*0*umol/m2*r -Rad Acum - C5 P9*4328*0*umol/m2*r -Rad Acum - C5 P10*4329*0*umol/m2*r -Rad Acum - C5 P11*4330*0*umol/m2*r -Rad Acum - C5 P12*4331*0*umol/m2*r -Rad Acum - C5 P13*4332*0*umol/m2*r -Rad Acum - C5 P14*4333*0*umol/m2*r -Rad Acum - C5 P15*4334*0*umol/m2*r -Rad Acum - C5 P16*4335*0*umol/m2*r -Rad Acum - C5 P17*4336*0*umol/m2*r -Rad Acum - C5 P18*4337*0*umol/m2*r -Rad Acum - C5 P19*4338*0*umol/m2*r -Rad Acum - C5 P120*4339*0*umol/m2*r -Rad Acum - C6 P1*4340*0*umol/m2*r -Rad Acum - C6 P2*4341*0*umol/m2*r -Rad Acum - C6 P3*4342*0*umol/m2*r -Rad Acum - C6 P4*4343*0*umol/m2*r -Rad Acum - C6 P5*4344*0*umol/m2*r -Rad Acum - C6 P6*4345*0*umol/m2*r -Rad Acum - C6 P7*4346*0*umol/m2*r -Rad Acum - C6 P8*4347*0*umol/m2*r -Rad Acum - C6 P9*4348*0*umol/m2*r -Rad Acum - C6 P10*4349*0*umol/m2*r -Rad Acum - C6 P11*4350*0*umol/m2*r -Rad Acum - C6 P12*4351*0*umol/m2*r -Rad Acum - C6 P13*4352*0*umol/m2*r -Rad Acum - C6 P14*4353*0*umol/m2*r -Rad Acum - C6 P15*4354*0*umol/m2*r -Rad Acum - C6 P16*4355*0*umol/m2*r -Rad Acum - C6 P17*4356*0*umol/m2*r -Rad Acum - C6 P18*4357*0*umol/m2*r -Rad Acum - C6 P19*4358*0*umol/m2*r -Rad Acum - C6 P120*4359*0*umol/m2*r - -Tanque 1 - Nivel*4000*2*m3*r -Tanque 1 - Altura*4002*2*m*r -Tanque 2 - Nivel*4020*2*m3*r -Tanque 2 - Altura*4022*2*m*r -Tanque 3 - Nivel*4040*2*m3*r -Tanque 3 - Altura*4042*2*m*r -Tanque 4 - Nivel*4060*2*m3*r -Tanque 4 - Altura*4062*2*m*r -Tanque 5 - Nivel*4080*2*m3*r -Tanque 5 - Altura*4082*2*m*r -Tanque 6 - Nivel*4100*2*m3*r -Tanque 6 - Altura*4102*2*m*r -Tanque 7 - Nivel*4120*2*m3*r -Tanque 7 - Altura*4122*2*m*r -Tanque 8 - Nivel*4140*2*m3*r -Tanque 8 - Altura*4142*2*m*r -Tanque 9 - Nivel*4160*2*m3*r -Tanque 9 - Altura*4162*2*m*r -Tanque 10 - Nivel*4180*2*m3*r -Tanque 10 - Altura*4182*2*m*r - -C1 P1 Consumo Agua*-1*6*m3*r -C1 P2 Consumo Agua*-2*6*m3*r -C1 P3 Consumo Agua*-3*6*m3*r -C1 P4 Consumo Agua*-4*6*m3*r -C1 P5 Consumo Agua*-5*6*m3*r -C1 P6 Consumo Agua*-6*6*m3*r -C1 P7 Consumo Agua*-7*6*m3*r -C1 P8 Consumo Agua*-8*6*m3*r -C1 P9 Consumo Agua*-9*6*m3*r -C1 P10 Consumo Agua*-10*6*m3*r -C1 P11 Consumo Agua*-11*6*m3*r -C1 P12 Consumo Agua*-12*6*m3*r -C1 P13 Consumo Agua*-13*6*m3*r -C1 P14 Consumo Agua*-14*6*m3*r -C1 P15 Consumo Agua*-15*6*m3*r -C1 P16 Consumo Agua*-16*6*m3*r -C1 P17 Consumo Agua*-17*6*m3*r -C1 P18 Consumo Agua*-18*6*m3*r -C1 P19 Consumo Agua*-19*6*m3*r -C1 P20 Consumo Agua*-20*6*m3*r - -C2 P1 Consumo Agua*-21*6*m3*r -C2 P2 Consumo Agua*-22*6*m3*r -C2 P3 Consumo Agua*-23*6*m3*r -C2 P4 Consumo Agua*-24*6*m3*r -C2 P5 Consumo Agua*-25*6*m3*r -C2 P6 Consumo Agua*-26*6*m3*r -C2 P7 Consumo Agua*-27*6*m3*r -C2 P8 Consumo Agua*-28*6*m3*r -C2 P9 Consumo Agua*-29*6*m3*r -C2 P10 Consumo Agua*-30*6*m3*r -C2 P11 Consumo Agua*-31*6*m3*r -C2 P12 Consumo Agua*-32*6*m3*r -C2 P13 Consumo Agua*-33*6*m3*r -C2 P14 Consumo Agua*-34*6*m3*r -C2 P15 Consumo Agua*-35*6*m3*r -C2 P16 Consumo Agua*-36*6*m3*r -C2 P17 Consumo Agua*-37*6*m3*r -C2 P18 Consumo Agua*-38*6*m3*r -C2 P19 Consumo Agua*-39*6*m3*r -C2 P20 Consumo Agua*-40*6*m3*r - -C3 P1 Consumo Agua*-41*6*m3*r -C3 P2 Consumo Agua*-42*6*m3*r -C3 P3 Consumo Agua*-43*6*m3*r -C3 P4 Consumo Agua*-44*6*m3*r -C3 P5 Consumo Agua*-45*6*m3*r -C3 P6 Consumo Agua*-46*6*m3*r -C3 P7 Consumo Agua*-47*6*m3*r -C3 P8 Consumo Agua*-48*6*m3*r -C3 P9 Consumo Agua*-49*6*m3*r -C3 P10 Consumo Agua*-50*6*m3*r -C3 P11 Consumo Agua*-51*6*m3*r -C3 P12 Consumo Agua*-52*6*m3*r -C3 P13 Consumo Agua*-53*6*m3*r -C3 P14 Consumo Agua*-54*6*m3*r -C3 P15 Consumo Agua*-55*6*m3*r -C3 P16 Consumo Agua*-56*6*m3*r -C3 P17 Consumo Agua*-57*6*m3*r -C3 P18 Consumo Agua*-58*6*m3*r -C3 P19 Consumo Agua*-59*6*m3*r -C3 P20 Consumo Agua*-60*6*m3*r - -C4 P1 Consumo Agua*-61*6*m3*r -C4 P2 Consumo Agua*-62*6*m3*r -C4 P3 Consumo Agua*-63*6*m3*r -C4 P4 Consumo Agua*-64*6*m3*r -C4 P5 Consumo Agua*-65*6*m3*r -C4 P6 Consumo Agua*-66*6*m3*r -C4 P7 Consumo Agua*-67*6*m3*r -C4 P8 Consumo Agua*-68*6*m3*r -C4 P9 Consumo Agua*-69*6*m3*r -C4 P10 Consumo Agua*-70*6*m3*r -C4 P11 Consumo Agua*-71*6*m3*r -C4 P12 Consumo Agua*-72*6*m3*r -C4 P13 Consumo Agua*-73*6*m3*r -C4 P14 Consumo Agua*-74*6*m3*r -C4 P15 Consumo Agua*-75*6*m3*r -C4 P16 Consumo Agua*-76*6*m3*r -C4 P17 Consumo Agua*-77*6*m3*r -C4 P18 Consumo Agua*-78*6*m3*r -C4 P19 Consumo Agua*-79*6*m3*r -C4 P20 Consumo Agua*-80*6*m3*r - -C5 P1 Consumo Agua*-81*6*m3*r -C5 P2 Consumo Agua*-82*6*m3*r -C5 P3 Consumo Agua*-83*6*m3*r -C5 P4 Consumo Agua*-84*6*m3*r -C5 P5 Consumo Agua*-85*6*m3*r -C5 P6 Consumo Agua*-86*6*m3*r -C5 P7 Consumo Agua*-87*6*m3*r -C5 P8 Consumo Agua*-88*6*m3*r -C5 P9 Consumo Agua*-89*6*m3*r -C5 P10 Consumo Agua*-90*6*m3*r -C5 P11 Consumo Agua*-91*6*m3*r -C5 P12 Consumo Agua*-92*6*m3*r -C5 P13 Consumo Agua*-93*6*m3*r -C5 P14 Consumo Agua*-94*6*m3*r -C5 P15 Consumo Agua*-95*6*m3*r -C5 P16 Consumo Agua*-96*6*m3*r -C5 P17 Consumo Agua*-97*6*m3*r -C5 P18 Consumo Agua*-98*6*m3*r -C5 P19 Consumo Agua*-99*6*m3*r -C5 P20 Consumo Agua*-100*6*m3*r - -C6 P1 Consumo Agua*-101*6*m3*r -C6 P2 Consumo Agua*-102*6*m3*r -C6 P3 Consumo Agua*-103*6*m3*r -C6 P4 Consumo Agua*-104*6*m3*r -C6 P5 Consumo Agua*-105*6*m3*r -C6 P6 Consumo Agua*-106*6*m3*r -C6 P7 Consumo Agua*-107*6*m3*r -C6 P8 Consumo Agua*-108*6*m3*r -C6 P9 Consumo Agua*-109*6*m3*r -C6 P10 Consumo Agua*-110*6*m3*r -C6 P11 Consumo Agua*-111*6*m3*r -C6 P12 Consumo Agua*-112*6*m3*r -C6 P13 Consumo Agua*-113*6*m3*r -C6 P14 Consumo Agua*-114*6*m3*r -C6 P15 Consumo Agua*-115*6*m3*r -C6 P16 Consumo Agua*-116*6*m3*r -C6 P17 Consumo Agua*-117*6*m3*r -C6 P18 Consumo Agua*-118*6*m3*r -C6 P19 Consumo Agua*-119*6*m3*r -C6 P20 Consumo Agua*-120*6*m3*r - -DPV Estufa 1*-121*1*mbar*c -DPV Estufa 2*-122*1*mbar*c -DPV Estufa 3*-123*1*mbar*c -DPV Estufa 4*-124*1*mbar*c -DPV Estufa 5*-125*1*mbar*c -DPV Estufa 6*-126*1*mbar*c -DPV Estufa 7*-127*1*mbar*c -DPV Estufa 8*-128*1*mbar*c -DPV Estufa 9*-129*1*mbar*c -DPV Estufa 10*-130*1*mbar*c -DPV Estufa 11*-131*1*mbar*c -DPV Estufa 12*-132*1*mbar*c -DPV Estufa 13*-133*1*mbar*c -DPV Estufa 14*-134*1*mbar*c -DPV Estufa 15*-135*1*mbar*c -DPV Estufa 16*-136*1*mbar*c -DPV Estufa 17*-137*1*mbar*c -DPV Estufa 18*-138*1*mbar*c -DPV Estufa 19*-139*1*mbar*c -DPV Estufa 20*-140*1*mbar*c - -Hum. Absoluta Estufa 1*-141*1*g/m3*c -Hum. Absoluta Estufa 2*-142*1*g/m3*c -Hum. Absoluta Estufa 3*-143*1*g/m3*c -Hum. Absoluta Estufa 4*-144*1*g/m3*c -Hum. Absoluta Estufa 5*-145*1*g/m3*c -Hum. Absoluta Estufa 6*-146*1*g/m3*c -Hum. Absoluta Estufa 7*-147*1*g/m3*c -Hum. Absoluta Estufa 8*-148*1*g/m3*c -Hum. Absoluta Estufa 9*-149*1*g/m3*c -Hum. Absoluta Estufa 10*-150*1*g/m3*c -Hum. Absoluta Estufa 11*-151*1*g/m3*c -Hum. Absoluta Estufa 12*-152*1*g/m3*c -Hum. Absoluta Estufa 13*-153*1*g/m3*c -Hum. Absoluta Estufa 14*-154*1*g/m3*c -Hum. Absoluta Estufa 15*-155*1*g/m3*c -Hum. Absoluta Estufa 16*-156*1*g/m3*c -Hum. Absoluta Estufa 17*-157*1*g/m3*c -Hum. Absoluta Estufa 18*-158*1*g/m3*c -Hum. Absoluta Estufa 19*-159*1*g/m3*c -Hum. Absoluta Estufa 20*-160*1*g/m3*c - -C1 Consumo Agua*-161*6*m3*r -C2 Consumo Agua*-162*6*m3*r -C3 Consumo Agua*-163*6*m3*r -C4 Consumo Agua*-164*6*m3*r -C5 Consumo Agua*-165*6*m3*r -C6 Consumo Agua*-166*6*m3*r \ No newline at end of file diff --git a/src/main/resources/db/migration/V1__initial_schema.sql b/src/main/resources/db/migration/V1__initial_schema.sql index 829b62f..0223c72 100644 --- a/src/main/resources/db/migration/V1__initial_schema.sql +++ b/src/main/resources/db/migration/V1__initial_schema.sql @@ -1,14 +1,27 @@ CREATE TABLE sensor_definition ( id INTEGER PRIMARY KEY AUTOINCREMENT, + + key VARCHAR(255) NOT NULL UNIQUE, + name VARCHAR(255) NOT NULL, - modbus_address INTEGER NOT NULL, - bit_offset INTEGER, - value_type VARCHAR(50) NOT NULL, - unit VARCHAR(50), - decimal_places INTEGER NOT NULL DEFAULT 0, + category VARCHAR(100) NOT NULL, + + modbus_address INTEGER, + + bit_offset INTEGER, + + value_type VARCHAR(50) NOT NULL, + + unit VARCHAR(50), + + decimal_places INTEGER NOT NULL DEFAULT 0, + source_type VARCHAR(50) NOT NULL, + polling_interval_seconds INTEGER NOT NULL DEFAULT 1, + enabled BOOLEAN NOT NULL DEFAULT TRUE, + created_at TIMESTAMP NOT NULL ); \ No newline at end of file diff --git a/src/main/resources/db/migration/V4__create_historian_sample.sql b/src/main/resources/db/migration/V2__create_historian_sample.sql similarity index 99% rename from src/main/resources/db/migration/V4__create_historian_sample.sql rename to src/main/resources/db/migration/V2__create_historian_sample.sql index f6eb345..8cc0ec0 100644 --- a/src/main/resources/db/migration/V4__create_historian_sample.sql +++ b/src/main/resources/db/migration/V2__create_historian_sample.sql @@ -2,6 +2,7 @@ CREATE TABLE historian_sample ( id INTEGER PRIMARY KEY AUTOINCREMENT, sampled_at TIMESTAMP NOT NULL, + key_name VARCHAR(160) NOT NULL, numeric_value REAL, @@ -9,6 +10,7 @@ CREATE TABLE historian_sample ( text_value VARCHAR(255), unit VARCHAR(32), + source VARCHAR(50) NOT NULL, created_at TIMESTAMP NOT NULL diff --git a/src/main/resources/db/migration/V2__seed_sensor_definitions.sql b/src/main/resources/db/migration/V2__seed_sensor_definitions.sql deleted file mode 100644 index e9eb4d4..0000000 --- a/src/main/resources/db/migration/V2__seed_sensor_definitions.sql +++ /dev/null @@ -1,52 +0,0 @@ -INSERT INTO sensor_definition ( - name, - modbus_address, - bit_offset, - value_type, - unit, - decimal_places, - category, - source_type, - polling_interval_seconds, - enabled, - created_at -) VALUES -( - 'Greenhouse Temperature', - 100, - NULL, - 'DECIMAL', - 'ºC', - 1, - 'CLIMATE', - 'MODBUS', - 2, - TRUE, - CURRENT_TIMESTAMP -), -( - 'Greenhouse Humidity', - 101, - NULL, - 'DECIMAL', - '%', - 1, - 'CLIMATE', - 'MODBUS', - 2, - TRUE, - CURRENT_TIMESTAMP -), -( - 'Irrigation Pump Running', - 200, - 0, - 'BOOLEAN', - NULL, - 0, - 'IRRIGATION', - 'MODBUS', - 1, - TRUE, - CURRENT_TIMESTAMP -); \ No newline at end of file diff --git a/src/main/resources/db/migration/V3__add_sensor_definition_constraints.sql b/src/main/resources/db/migration/V3__add_sensor_definition_constraints.sql deleted file mode 100644 index 8080fbd..0000000 --- a/src/main/resources/db/migration/V3__add_sensor_definition_constraints.sql +++ /dev/null @@ -1,2 +0,0 @@ -CREATE UNIQUE INDEX ux_sensor_definition_name -ON sensor_definition(name); \ No newline at end of file diff --git a/src/main/resources/db/migration/V5__historian_indexes.sql b/src/main/resources/db/migration/V3__historian_indexes.sql similarity index 100% rename from src/main/resources/db/migration/V5__historian_indexes.sql rename to src/main/resources/db/migration/V3__historian_indexes.sql diff --git a/src/main/resources/db/migration/V6__create_weather_settings.sql b/src/main/resources/db/migration/V4__create_weather_settings.sql similarity index 100% rename from src/main/resources/db/migration/V6__create_weather_settings.sql rename to src/main/resources/db/migration/V4__create_weather_settings.sql