mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
Add 'PC' device to routine
This commit is contained in:
10
assets/icons/energy_consumed_icon.svg
Normal file
10
assets/icons/energy_consumed_icon.svg
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M20 6.90237L13.6328 13.1837L6.60156 6.1524L2.32422 10.418L1.50391 9.59769L6.60156 4.48828L13.6328 11.5195L19.1797 6.08206L20 6.90237Z" fill="#64E1DC"/>
|
||||||
|
<path d="M20 13.1133L19.1797 13.9336L13.6328 8.49615L7.77344 14.3555L5.42969 12.0118L2.32422 15.1055L1.50391 14.2852L5.42969 10.3477L7.77344 12.6914L13.6328 6.83203L20 13.1133Z" fill="#FDBF00"/>
|
||||||
|
<path d="M20 6.90234L13.6328 13.1836L10.1172 9.668V8.00388L13.6328 11.5195L19.1797 6.08203L20 6.90234Z" fill="#00C8C8"/>
|
||||||
|
<path d="M20 13.1133L19.1797 13.9336L13.6328 8.49615L10.1172 12.0118V10.3477L13.6328 6.83203L20 13.1133Z" fill="#FF9100"/>
|
||||||
|
<path d="M19.1714 17.625V18.7813L17.7184 18.7821L10.1172 18.7851L1.32812 18.7891V0.75H2.5V17.625H19.1714Z" fill="#676E74"/>
|
||||||
|
<path d="M3.0127 2.37976L1.91406 1.50024L0.732422 2.37976L0 1.46423L1.91406 0L3.74512 1.46423L3.0127 2.37976Z" fill="#676E74"/>
|
||||||
|
<path d="M19.1714 17.625V18.7813L17.7176 18.7824L17.7184 18.7821L10.1172 18.7851V17.625H19.1714Z" fill="#474F54"/>
|
||||||
|
<path d="M19.9998 18.2108L18.1205 19.9999L17.292 19.1714L17.7174 18.7823L17.7182 18.782L18.3427 18.2108L17.7565 17.6249L17.292 17.1604L18.1205 16.332L19.9998 18.2108Z" fill="#474F54"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -12,6 +12,7 @@ import 'package:syncrow_web/pages/routines/models/gang_switches/one_gang_switch/
|
|||||||
import 'package:syncrow_web/pages/routines/models/gang_switches/three_gang_switch/three_gang_switch.dart';
|
import 'package:syncrow_web/pages/routines/models/gang_switches/three_gang_switch/three_gang_switch.dart';
|
||||||
import 'package:syncrow_web/pages/routines/models/gang_switches/two_gang_switch/two_gang_switch.dart';
|
import 'package:syncrow_web/pages/routines/models/gang_switches/two_gang_switch/two_gang_switch.dart';
|
||||||
import 'package:syncrow_web/pages/routines/models/gateway.dart';
|
import 'package:syncrow_web/pages/routines/models/gateway.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/pc/energy_clamp_functions.dart';
|
||||||
import 'package:syncrow_web/pages/routines/models/water_heater/water_heater_functions.dart';
|
import 'package:syncrow_web/pages/routines/models/water_heater/water_heater_functions.dart';
|
||||||
import 'package:syncrow_web/pages/routines/models/wps/wps_functions.dart';
|
import 'package:syncrow_web/pages/routines/models/wps/wps_functions.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/ceiling_sensor/ceiling_sensor_helper.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/ceiling_sensor/ceiling_sensor_helper.dart';
|
||||||
@ -248,6 +249,8 @@ SOS
|
|||||||
tempIcon = Assets.waterLeakNormal;
|
tempIcon = Assets.waterLeakNormal;
|
||||||
} else if (type == DeviceType.NCPS) {
|
} else if (type == DeviceType.NCPS) {
|
||||||
tempIcon = Assets.sensors;
|
tempIcon = Assets.sensors;
|
||||||
|
} else if (type == DeviceType.PC) {
|
||||||
|
tempIcon = Assets.powerClamp;
|
||||||
} else {
|
} else {
|
||||||
tempIcon = Assets.logoHorizontal;
|
tempIcon = Assets.logoHorizontal;
|
||||||
}
|
}
|
||||||
@ -393,6 +396,59 @@ SOS
|
|||||||
BacklightFunction(
|
BacklightFunction(
|
||||||
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
];
|
];
|
||||||
|
case 'PC':
|
||||||
|
return [
|
||||||
|
TotalEnergyConsumedStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
TotalActivePowerConsumedStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
VoltagePhaseSequenceDetectionFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
TotalCurrentStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
FrequencyStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
|
||||||
|
// Phase A
|
||||||
|
EnergyConsumedAStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
ActivePowerAStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
VoltageAStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
PowerFactorAStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
CurrentAStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
|
||||||
|
// Phase B
|
||||||
|
EnergyConsumedBStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
ActivePowerBStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
VoltageBStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
CurrentBStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
PowerFactorBStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
|
||||||
|
// Phase C
|
||||||
|
EnergyConsumedCStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
ActivePowerCStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
VoltageCStatusFunction(
|
||||||
|
deviceId: uuid ?? '', deviceName: name ?? '', type: 'IF'),
|
||||||
|
CurrentCStatusFunction(
|
||||||
|
deviceId: uuid ?? '',
|
||||||
|
deviceName: name ?? '',
|
||||||
|
type: 'IF'),
|
||||||
|
PowerFactorCStatusFunction(
|
||||||
|
deviceId: uuid ?? '',
|
||||||
|
deviceName: name ?? '',
|
||||||
|
type: 'IF'),
|
||||||
|
];
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return [];
|
return [];
|
||||||
@ -526,5 +582,6 @@ SOS
|
|||||||
"GD": DeviceType.GarageDoor,
|
"GD": DeviceType.GarageDoor,
|
||||||
"WL": DeviceType.WaterLeak,
|
"WL": DeviceType.WaterLeak,
|
||||||
"NCPS": DeviceType.NCPS,
|
"NCPS": DeviceType.NCPS,
|
||||||
|
"PC": DeviceType.PC,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/ceiling_senso
|
|||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/flush_presence_sensor/flush_presence_sensor.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/flush_presence_sensor/flush_presence_sensor.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/gateway/gateway_helper.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/gateway/gateway_helper.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/one_gang_switch_dialog.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/one_gang_switch_dialog.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/power_clamp_enargy/energy_clamp_dialog.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/three_gang_switch_dialog.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/three_gang_switch_dialog.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/two_gang_switch_dialog.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/two_gang_switch_dialog.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/wall_sensor/wall_presence_sensor.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/wall_sensor/wall_presence_sensor.dart';
|
||||||
@ -137,6 +138,16 @@ class DeviceDialogHelper {
|
|||||||
device: data['device'],
|
device: data['device'],
|
||||||
);
|
);
|
||||||
|
|
||||||
|
case 'PC':
|
||||||
|
return EnergyClampDialog.showEnergyClampFunctionsDialog(
|
||||||
|
context: context,
|
||||||
|
functions: functions,
|
||||||
|
uniqueCustomId: data['uniqueCustomId'],
|
||||||
|
deviceSelectedFunctions: deviceSelectedFunctions,
|
||||||
|
dialogType: dialogType,
|
||||||
|
device: data['device'],
|
||||||
|
);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,6 @@ abstract class DeviceFunction<T> {
|
|||||||
final double? max;
|
final double? max;
|
||||||
final double? min;
|
final double? min;
|
||||||
|
|
||||||
|
|
||||||
DeviceFunction({
|
DeviceFunction({
|
||||||
required this.deviceId,
|
required this.deviceId,
|
||||||
required this.deviceName,
|
required this.deviceName,
|
||||||
@ -114,4 +113,28 @@ class DeviceFunctionData {
|
|||||||
max.hashCode ^
|
max.hashCode ^
|
||||||
min.hashCode;
|
min.hashCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DeviceFunctionData copyWith({
|
||||||
|
String? entityId,
|
||||||
|
String? functionCode,
|
||||||
|
String? operationName,
|
||||||
|
String? condition,
|
||||||
|
dynamic value,
|
||||||
|
double? step,
|
||||||
|
String? unit,
|
||||||
|
double? max,
|
||||||
|
double? min,
|
||||||
|
}) {
|
||||||
|
return DeviceFunctionData(
|
||||||
|
entityId: entityId ?? this.entityId,
|
||||||
|
functionCode: functionCode ?? this.functionCode,
|
||||||
|
operationName: operationName ?? this.operationName,
|
||||||
|
condition: condition ?? this.condition,
|
||||||
|
value: value ?? this.value,
|
||||||
|
step: step ?? this.step,
|
||||||
|
unit: unit ?? this.unit,
|
||||||
|
max: max ?? this.max,
|
||||||
|
min: min ?? this.min,
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
416
lib/pages/routines/models/pc/energy_clamp_functions.dart
Normal file
416
lib/pages/routines/models/pc/energy_clamp_functions.dart
Normal file
@ -0,0 +1,416 @@
|
|||||||
|
import 'package:syncrow_web/pages/device_managment/power_clamp/models/power_clamp_batch_model.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/device_functions.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/pc/enrgy_clamp_operational_value.dart';
|
||||||
|
import 'package:syncrow_web/utils/constants/assets.dart';
|
||||||
|
|
||||||
|
abstract class EnergyClampFunctions extends DeviceFunction<PowerClampModel1> {
|
||||||
|
final String type;
|
||||||
|
|
||||||
|
EnergyClampFunctions({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.code,
|
||||||
|
required super.operationName,
|
||||||
|
required super.icon,
|
||||||
|
required this.type,
|
||||||
|
super.step,
|
||||||
|
super.unit,
|
||||||
|
super.max,
|
||||||
|
super.min,
|
||||||
|
});
|
||||||
|
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues();
|
||||||
|
}
|
||||||
|
|
||||||
|
// General & shared
|
||||||
|
class TotalEnergyConsumedStatusFunction extends EnergyClampFunctions {
|
||||||
|
TotalEnergyConsumedStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'EnergyConsumed',
|
||||||
|
operationName: 'Total Energy Consumed',
|
||||||
|
icon: Assets.energyConsumedIcon,
|
||||||
|
min: 0.00,
|
||||||
|
max: 20000000.00,
|
||||||
|
step: 1,
|
||||||
|
unit: "kWh",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class TotalActivePowerConsumedStatusFunction extends EnergyClampFunctions {
|
||||||
|
TotalActivePowerConsumedStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'ActivePower',
|
||||||
|
operationName: 'Total Active Power',
|
||||||
|
icon: Assets.powerActiveIcon,
|
||||||
|
min: -19800000,
|
||||||
|
max: 19800000,
|
||||||
|
step: 0.1,
|
||||||
|
unit: "kW",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class VoltagePhaseSequenceDetectionFunction extends EnergyClampFunctions {
|
||||||
|
VoltagePhaseSequenceDetectionFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'voltage_phase_seq',
|
||||||
|
operationName: 'Voltage phase sequence detection',
|
||||||
|
icon: Assets.voltageIcon,
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [
|
||||||
|
EnergyClampOperationalValue(
|
||||||
|
icon: Assets.voltageIcon, description: '0', value: '0'),
|
||||||
|
EnergyClampOperationalValue(
|
||||||
|
icon: Assets.voltageIcon, description: '1', value: '1'),
|
||||||
|
EnergyClampOperationalValue(
|
||||||
|
icon: Assets.voltageIcon, description: '2', value: '2'),
|
||||||
|
EnergyClampOperationalValue(
|
||||||
|
icon: Assets.voltageIcon, description: '3', value: '3'),
|
||||||
|
EnergyClampOperationalValue(
|
||||||
|
icon: Assets.voltageIcon, description: '4', value: '4'),
|
||||||
|
EnergyClampOperationalValue(
|
||||||
|
icon: Assets.voltageIcon, description: '5', value: '5'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
class TotalCurrentStatusFunction extends EnergyClampFunctions {
|
||||||
|
TotalCurrentStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'Current',
|
||||||
|
operationName: 'Total Current',
|
||||||
|
icon: Assets.voltMeterIcon,
|
||||||
|
min: 0.000,
|
||||||
|
max: 9000.000,
|
||||||
|
step: 1,
|
||||||
|
unit: "A",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class FrequencyStatusFunction extends EnergyClampFunctions {
|
||||||
|
FrequencyStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'Frequency',
|
||||||
|
operationName: 'Frequency',
|
||||||
|
icon: Assets.frequencyIcon,
|
||||||
|
min: 0,
|
||||||
|
max: 80,
|
||||||
|
step: 1,
|
||||||
|
unit: "Hz",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Phase A
|
||||||
|
class EnergyConsumedAStatusFunction extends EnergyClampFunctions {
|
||||||
|
EnergyConsumedAStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'EnergyConsumedA',
|
||||||
|
operationName: 'Energy Consumed A',
|
||||||
|
icon: Assets.energyConsumedIcon,
|
||||||
|
min: 0.00,
|
||||||
|
max: 20000000.00,
|
||||||
|
step: 1,
|
||||||
|
unit: "kWh",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class ActivePowerAStatusFunction extends EnergyClampFunctions {
|
||||||
|
ActivePowerAStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'ActivePowerA',
|
||||||
|
operationName: 'Active Power A',
|
||||||
|
icon: Assets.powerActiveIcon,
|
||||||
|
min: 200,
|
||||||
|
max: 300,
|
||||||
|
step: 1,
|
||||||
|
unit: "kW",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class VoltageAStatusFunction extends EnergyClampFunctions {
|
||||||
|
VoltageAStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'VoltageA',
|
||||||
|
operationName: 'Voltage A',
|
||||||
|
icon: Assets.voltageIcon,
|
||||||
|
min: 0.0,
|
||||||
|
max: 500,
|
||||||
|
step: 1,
|
||||||
|
unit: "V",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class PowerFactorAStatusFunction extends EnergyClampFunctions {
|
||||||
|
PowerFactorAStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'PowerFactorA',
|
||||||
|
operationName: 'Power Factor A',
|
||||||
|
icon: Assets.speedoMeter,
|
||||||
|
min: 0.00,
|
||||||
|
max: 1.00,
|
||||||
|
step: 0.1,
|
||||||
|
unit: "",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class CurrentAStatusFunction extends EnergyClampFunctions {
|
||||||
|
CurrentAStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'CurrentA',
|
||||||
|
operationName: 'Current A',
|
||||||
|
icon: Assets.voltMeterIcon,
|
||||||
|
min: 0.000,
|
||||||
|
max: 3000.000,
|
||||||
|
step: 1,
|
||||||
|
unit: "A",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Phase B
|
||||||
|
class EnergyConsumedBStatusFunction extends EnergyClampFunctions {
|
||||||
|
EnergyConsumedBStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'EnergyConsumedB',
|
||||||
|
operationName: 'Energy Consumed B',
|
||||||
|
icon: Assets.energyConsumedIcon,
|
||||||
|
min: 0.00,
|
||||||
|
max: 20000000.00,
|
||||||
|
step: 1,
|
||||||
|
unit: "kWh",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class ActivePowerBStatusFunction extends EnergyClampFunctions {
|
||||||
|
ActivePowerBStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'ActivePowerB',
|
||||||
|
operationName: 'Active Power B',
|
||||||
|
icon: Assets.powerActiveIcon,
|
||||||
|
min: -6600000,
|
||||||
|
max: 6600000,
|
||||||
|
step: 1,
|
||||||
|
unit: "kW",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class VoltageBStatusFunction extends EnergyClampFunctions {
|
||||||
|
VoltageBStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'VoltageB',
|
||||||
|
operationName: 'Voltage B',
|
||||||
|
icon: Assets.voltageIcon,
|
||||||
|
min: 0.0,
|
||||||
|
max: 500,
|
||||||
|
step: 1,
|
||||||
|
unit: "V",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class CurrentBStatusFunction extends EnergyClampFunctions {
|
||||||
|
CurrentBStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'CurrentB',
|
||||||
|
operationName: 'Current B',
|
||||||
|
icon: Assets.voltMeterIcon,
|
||||||
|
min: 0.000,
|
||||||
|
max: 3000.000,
|
||||||
|
step: 1,
|
||||||
|
unit: "A",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class PowerFactorBStatusFunction extends EnergyClampFunctions {
|
||||||
|
PowerFactorBStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'PowerFactorB',
|
||||||
|
operationName: 'Power Factor B',
|
||||||
|
icon: Assets.speedoMeter,
|
||||||
|
min: 0.0,
|
||||||
|
max: 1.0,
|
||||||
|
step: 0.1,
|
||||||
|
unit: "",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Phase C
|
||||||
|
class EnergyConsumedCStatusFunction extends EnergyClampFunctions {
|
||||||
|
EnergyConsumedCStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'EnergyConsumedC',
|
||||||
|
operationName: 'Energy Consumed C',
|
||||||
|
icon: Assets.energyConsumedIcon,
|
||||||
|
min: 0.00,
|
||||||
|
max: 20000000.00,
|
||||||
|
step: 1,
|
||||||
|
unit: "kWh",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class ActivePowerCStatusFunction extends EnergyClampFunctions {
|
||||||
|
ActivePowerCStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'ActivePowerC',
|
||||||
|
operationName: 'Active Power C',
|
||||||
|
icon: Assets.powerActiveIcon,
|
||||||
|
min: -6600000,
|
||||||
|
max: 6600000,
|
||||||
|
step: 1,
|
||||||
|
unit: "kW",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class VoltageCStatusFunction extends EnergyClampFunctions {
|
||||||
|
VoltageCStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'VoltageC',
|
||||||
|
operationName: 'Voltage C',
|
||||||
|
icon: Assets.voltageIcon,
|
||||||
|
min: 0.00,
|
||||||
|
max: 500,
|
||||||
|
step: 0.1,
|
||||||
|
unit: "V",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class CurrentCStatusFunction extends EnergyClampFunctions {
|
||||||
|
CurrentCStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'CurrentC',
|
||||||
|
operationName: 'Current C',
|
||||||
|
icon: Assets.voltMeterIcon,
|
||||||
|
min: 0.000,
|
||||||
|
max: 3000.000,
|
||||||
|
step: 0.1,
|
||||||
|
unit: "A",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
||||||
|
|
||||||
|
class PowerFactorCStatusFunction extends EnergyClampFunctions {
|
||||||
|
PowerFactorCStatusFunction({
|
||||||
|
required super.deviceId,
|
||||||
|
required super.deviceName,
|
||||||
|
required super.type,
|
||||||
|
}) : super(
|
||||||
|
code: 'PowerFactorC',
|
||||||
|
operationName: 'Power Factor C',
|
||||||
|
icon: Assets.speedoMeter,
|
||||||
|
min: 0.00,
|
||||||
|
max: 1.00,
|
||||||
|
step: 0.1,
|
||||||
|
unit: "",
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<EnergyClampOperationalValue> getOperationalValues() => [];
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
class EnergyClampOperationalValue {
|
||||||
|
final String icon;
|
||||||
|
final String description;
|
||||||
|
final dynamic value;
|
||||||
|
|
||||||
|
EnergyClampOperationalValue({
|
||||||
|
required this.icon,
|
||||||
|
required this.description,
|
||||||
|
required this.value,
|
||||||
|
});
|
||||||
|
}
|
@ -40,6 +40,7 @@ class CustomRoutinesTextbox extends StatefulWidget {
|
|||||||
|
|
||||||
class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
||||||
late final TextEditingController _controller;
|
late final TextEditingController _controller;
|
||||||
|
|
||||||
bool hasError = false;
|
bool hasError = false;
|
||||||
String? errorMessage;
|
String? errorMessage;
|
||||||
|
|
||||||
@ -55,29 +56,63 @@ class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool _isInitialized = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
int decimalPlaces = getDecimalPlaces(widget.stepIncreaseAmount);
|
_initializeController();
|
||||||
double initialValue;
|
}
|
||||||
if (widget.initialValue != null &&
|
|
||||||
widget.initialValue is num &&
|
void _initializeController() {
|
||||||
(widget.initialValue as num) == 0) {
|
final decimalPlaces = getDecimalPlaces(widget.stepIncreaseAmount);
|
||||||
initialValue = 0.0;
|
final dynamic initialValue = widget.initialValue;
|
||||||
|
double parsedValue;
|
||||||
|
|
||||||
|
if (initialValue is num) {
|
||||||
|
parsedValue = initialValue.toDouble();
|
||||||
|
} else if (initialValue is String) {
|
||||||
|
parsedValue = double.tryParse(initialValue) ?? widget.sliderRange.$1;
|
||||||
} else {
|
} else {
|
||||||
initialValue = double.tryParse(widget.displayedValue) ?? 0.0;
|
parsedValue = widget.sliderRange.$1;
|
||||||
}
|
}
|
||||||
|
|
||||||
_controller = TextEditingController(
|
_controller = TextEditingController(
|
||||||
text: initialValue.toStringAsFixed(decimalPlaces),
|
text: parsedValue.toStringAsFixed(decimalPlaces),
|
||||||
);
|
);
|
||||||
|
_isInitialized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void didUpdateWidget(CustomRoutinesTextbox oldWidget) {
|
||||||
_controller.dispose();
|
super.didUpdateWidget(oldWidget);
|
||||||
super.dispose();
|
|
||||||
|
if (widget.initialValue != oldWidget.initialValue && _isInitialized) {
|
||||||
|
final decimalPlaces = getDecimalPlaces(widget.stepIncreaseAmount);
|
||||||
|
final dynamic initialValue = widget.initialValue;
|
||||||
|
double newValue;
|
||||||
|
|
||||||
|
if (initialValue is num) {
|
||||||
|
newValue = initialValue.toDouble();
|
||||||
|
} else if (initialValue is String) {
|
||||||
|
newValue = double.tryParse(initialValue) ?? widget.sliderRange.$1;
|
||||||
|
} else {
|
||||||
|
newValue = widget.sliderRange.$1;
|
||||||
|
}
|
||||||
|
|
||||||
|
final newValueText = newValue.toStringAsFixed(decimalPlaces);
|
||||||
|
if (_controller.text != newValueText) {
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
_controller.text = newValueText;
|
||||||
|
_controller.selection =
|
||||||
|
TextSelection.collapsed(offset: _controller.text.length);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void _validateInput(String value) {
|
void _validateInput(String value) {
|
||||||
final doubleValue = double.tryParse(value);
|
final doubleValue = double.tryParse(value);
|
||||||
if (doubleValue == null) {
|
if (doubleValue == null) {
|
||||||
@ -121,18 +156,6 @@ class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
|
||||||
void didUpdateWidget(CustomRoutinesTextbox oldWidget) {
|
|
||||||
super.didUpdateWidget(oldWidget);
|
|
||||||
if (widget.initialValue != oldWidget.initialValue) {
|
|
||||||
if (widget.initialValue != null &&
|
|
||||||
widget.initialValue is num &&
|
|
||||||
(widget.initialValue as num) == 0) {
|
|
||||||
int decimalPlaces = getDecimalPlaces(widget.stepIncreaseAmount);
|
|
||||||
_controller.text = 0.0.toStringAsFixed(decimalPlaces);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void _correctAndUpdateValue(String value) {
|
void _correctAndUpdateValue(String value) {
|
||||||
final doubleValue = double.tryParse(value) ?? 0.0;
|
final doubleValue = double.tryParse(value) ?? 0.0;
|
||||||
@ -227,9 +250,15 @@ class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
|||||||
color: ColorsManager.blackColor,
|
color: ColorsManager.blackColor,
|
||||||
),
|
),
|
||||||
keyboardType: TextInputType.number,
|
keyboardType: TextInputType.number,
|
||||||
inputFormatters: widget.withSpecialChar == true
|
inputFormatters: [
|
||||||
? [FilteringTextInputFormatter.digitsOnly]
|
FilteringTextInputFormatter.allow(
|
||||||
: null,
|
widget.withSpecialChar
|
||||||
|
? RegExp(r'^-?\d*\.?\d{0,' +
|
||||||
|
decimalPlaces.toString() +
|
||||||
|
r'}$')
|
||||||
|
: RegExp(r'\d+'),
|
||||||
|
),
|
||||||
|
],
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
border: InputBorder.none,
|
border: InputBorder.none,
|
||||||
isDense: true,
|
isDense: true,
|
||||||
@ -268,8 +297,9 @@ class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
|||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 32),
|
padding: const EdgeInsets.symmetric(horizontal: 32),
|
||||||
child: Row(
|
child: Wrap(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
alignment: WrapAlignment.spaceBetween,
|
||||||
|
direction: Axis.horizontal,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
'Min. ${widget.sliderRange.$1.toInt()}${widget.unit}',
|
'Min. ${widget.sliderRange.$1.toInt()}${widget.unit}',
|
||||||
@ -279,6 +309,9 @@ class _CustomRoutinesTextboxState extends State<CustomRoutinesTextbox> {
|
|||||||
fontWeight: FontWeight.w400,
|
fontWeight: FontWeight.w400,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 50,
|
||||||
|
),
|
||||||
Text(
|
Text(
|
||||||
'Max. ${widget.sliderRange.$2.toInt()}${widget.unit}',
|
'Max. ${widget.sliderRange.$2.toInt()}${widget.unit}',
|
||||||
style: context.textTheme.bodySmall?.copyWith(
|
style: context.textTheme.bodySmall?.copyWith(
|
||||||
|
@ -78,9 +78,9 @@ class IfContainer extends StatelessWidget {
|
|||||||
'CPS',
|
'CPS',
|
||||||
'NCPS',
|
'NCPS',
|
||||||
'WH',
|
'WH',
|
||||||
|
'PC',
|
||||||
].contains(state.ifItems[index]
|
].contains(state.ifItems[index]
|
||||||
['productType'])) {
|
['productType'])) {
|
||||||
|
|
||||||
context.read<RoutineBloc>().add(
|
context.read<RoutineBloc>().add(
|
||||||
AddToIfContainer(
|
AddToIfContainer(
|
||||||
state.ifItems[index], false));
|
state.ifItems[index], false));
|
||||||
@ -137,8 +137,18 @@ class IfContainer extends StatelessWidget {
|
|||||||
context
|
context
|
||||||
.read<RoutineBloc>()
|
.read<RoutineBloc>()
|
||||||
.add(AddToIfContainer(mutableData, false));
|
.add(AddToIfContainer(mutableData, false));
|
||||||
} else if (!['AC', '1G', '2G', '3G', 'WPS', 'GW', 'CPS', 'NCPS','WH']
|
} else if (![
|
||||||
.contains(mutableData['productType'])) {
|
'AC',
|
||||||
|
'1G',
|
||||||
|
'2G',
|
||||||
|
'3G',
|
||||||
|
'WPS',
|
||||||
|
'GW',
|
||||||
|
'CPS',
|
||||||
|
'NCPS',
|
||||||
|
'WH',
|
||||||
|
'PC',
|
||||||
|
].contains(mutableData['productType'])) {
|
||||||
context
|
context
|
||||||
.read<RoutineBloc>()
|
.read<RoutineBloc>()
|
||||||
.add(AddToIfContainer(mutableData, false));
|
.add(AddToIfContainer(mutableData, false));
|
||||||
|
@ -27,6 +27,7 @@ class _RoutineDevicesState extends State<RoutineDevices> {
|
|||||||
'CPS',
|
'CPS',
|
||||||
'NCPS',
|
'NCPS',
|
||||||
'WH',
|
'WH',
|
||||||
|
'PC',
|
||||||
};
|
};
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
@ -74,25 +74,24 @@ class ACHelper {
|
|||||||
SizedBox(
|
SizedBox(
|
||||||
width: selectedFunction != null ? 320 : 360,
|
width: selectedFunction != null ? 320 : 360,
|
||||||
child: _buildFunctionsList(
|
child: _buildFunctionsList(
|
||||||
context: context,
|
context: context,
|
||||||
acFunctions: acFunctions,
|
acFunctions: acFunctions,
|
||||||
device: device,
|
onFunctionSelected:
|
||||||
onFunctionSelected:
|
(functionCode, operationName) {
|
||||||
(functionCode, operationName) {
|
RoutineTapFunctionHelper.onTapFunction(
|
||||||
RoutineTapFunctionHelper.onTapFunction(
|
context,
|
||||||
context,
|
functionCode: functionCode,
|
||||||
functionCode: functionCode,
|
functionOperationName: operationName,
|
||||||
functionOperationName: operationName,
|
functionValueDescription:
|
||||||
functionValueDescription:
|
selectedFunctionData
|
||||||
selectedFunctionData.valueDescription,
|
.valueDescription,
|
||||||
deviceUuid: device?.uuid,
|
deviceUuid: device?.uuid,
|
||||||
codesToAddIntoFunctionsWithDefaultValue: [
|
codesToAddIntoFunctionsWithDefaultValue: [
|
||||||
'temp_set',
|
'temp_set',
|
||||||
'temp_current',
|
'temp_current',
|
||||||
],
|
],
|
||||||
defaultValue: 0);
|
defaultValue: 0);
|
||||||
},
|
}),
|
||||||
),
|
|
||||||
),
|
),
|
||||||
// Value selector
|
// Value selector
|
||||||
if (selectedFunction != null)
|
if (selectedFunction != null)
|
||||||
@ -150,7 +149,6 @@ class ACHelper {
|
|||||||
required BuildContext context,
|
required BuildContext context,
|
||||||
required List<ACFunction> acFunctions,
|
required List<ACFunction> acFunctions,
|
||||||
required Function(String, String) onFunctionSelected,
|
required Function(String, String) onFunctionSelected,
|
||||||
required AllDevicesModel? device,
|
|
||||||
}) {
|
}) {
|
||||||
return ListView.separated(
|
return ListView.separated(
|
||||||
shrinkWrap: false,
|
shrinkWrap: false,
|
||||||
@ -193,7 +191,6 @@ class ACHelper {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Build value selector for AC functions dialog
|
|
||||||
static Widget _buildValueSelector({
|
static Widget _buildValueSelector({
|
||||||
required BuildContext context,
|
required BuildContext context,
|
||||||
required String selectedFunction,
|
required String selectedFunction,
|
||||||
@ -207,19 +204,19 @@ class ACHelper {
|
|||||||
acFunctions.firstWhere((f) => f.code == selectedFunction);
|
acFunctions.firstWhere((f) => f.code == selectedFunction);
|
||||||
|
|
||||||
if (selectedFunction == 'temp_set' || selectedFunction == 'temp_current') {
|
if (selectedFunction == 'temp_set' || selectedFunction == 'temp_current') {
|
||||||
// Convert stored integer value to display value
|
|
||||||
final displayValue =
|
final displayValue =
|
||||||
(selectedFunctionData?.value ?? selectedFn.min ?? 0) / 10;
|
(selectedFunctionData?.value ?? selectedFn.min!) / 10;
|
||||||
final minValue = selectedFn.min! / 10;
|
final minValue = selectedFn.min! / 10;
|
||||||
final maxValue = selectedFn.max! / 10;
|
final maxValue = selectedFn.max! / 10;
|
||||||
|
|
||||||
return CustomRoutinesTextbox(
|
return CustomRoutinesTextbox(
|
||||||
withSpecialChar: true,
|
withSpecialChar: true,
|
||||||
dividendOfRange: maxValue,
|
dividendOfRange: maxValue,
|
||||||
currentCondition: selectedFunctionData?.condition,
|
currentCondition: selectedFunctionData?.condition,
|
||||||
dialogType: selectedFn.type,
|
dialogType: selectedFn.type,
|
||||||
sliderRange: (minValue, maxValue),
|
sliderRange: (minValue, maxValue),
|
||||||
displayedValue: displayValue.toStringAsFixed(1),
|
displayedValue: displayValue.toString(),
|
||||||
initialValue: displayValue.toDouble(),
|
initialValue: displayValue,
|
||||||
unit: selectedFn.unit!,
|
unit: selectedFn.unit!,
|
||||||
onConditionChanged: (condition) => context.read<FunctionBloc>().add(
|
onConditionChanged: (condition) => context.read<FunctionBloc>().add(
|
||||||
AddFunction(
|
AddFunction(
|
||||||
@ -228,7 +225,7 @@ class ACHelper {
|
|||||||
functionCode: selectedFunction,
|
functionCode: selectedFunction,
|
||||||
operationName: selectedFn.operationName,
|
operationName: selectedFn.operationName,
|
||||||
condition: condition,
|
condition: condition,
|
||||||
value: 0,
|
value: (displayValue * 10).round(),
|
||||||
step: selectedFn.step,
|
step: selectedFn.step,
|
||||||
unit: selectedFn.unit,
|
unit: selectedFn.unit,
|
||||||
max: selectedFn.max,
|
max: selectedFn.max,
|
||||||
@ -236,28 +233,33 @@ class ACHelper {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onTextChanged: (value) => context.read<FunctionBloc>().add(
|
onTextChanged: (value) {
|
||||||
AddFunction(
|
final numericValue = double.tryParse(value.toString()) ?? minValue;
|
||||||
functionData: DeviceFunctionData(
|
context.read<FunctionBloc>().add(
|
||||||
entityId: device?.uuid ?? '',
|
AddFunction(
|
||||||
functionCode: selectedFunction,
|
functionData: DeviceFunctionData(
|
||||||
operationName: selectedFn.operationName,
|
entityId: device?.uuid ?? '',
|
||||||
value: (value * 10).round(), // Store as integer
|
functionCode: selectedFunction,
|
||||||
condition: selectedFunctionData?.condition,
|
operationName: selectedFn.operationName,
|
||||||
step: selectedFn.step,
|
value: (numericValue * 10).round(),
|
||||||
unit: selectedFn.unit,
|
condition: selectedFunctionData?.condition,
|
||||||
max: selectedFn.max,
|
step: selectedFn.step,
|
||||||
min: selectedFn.min,
|
unit: selectedFn.unit,
|
||||||
|
max: selectedFn.max,
|
||||||
|
min: selectedFn.min,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
),
|
},
|
||||||
stepIncreaseAmount: selectedFn.step! / 10, // Convert step for display
|
stepIncreaseAmount: selectedFn.step! / 10,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Rest of your existing code for other value selectors
|
||||||
|
final values = selectedFn.getOperationalValues();
|
||||||
return _buildOperationalValuesList(
|
return _buildOperationalValuesList(
|
||||||
context: context,
|
context: context,
|
||||||
values: selectedFn.getOperationalValues(),
|
values: values,
|
||||||
selectedValue: selectedFunctionData?.value,
|
selectedValue: selectedFunctionData?.value,
|
||||||
device: device,
|
device: device,
|
||||||
operationName: operationName,
|
operationName: operationName,
|
||||||
@ -311,7 +313,7 @@ class ACHelper {
|
|||||||
// );
|
// );
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// /// Build condition toggle for AC functions dialog
|
/// Build condition toggle for AC functions dialog
|
||||||
// static Widget _buildConditionToggle(
|
// static Widget _buildConditionToggle(
|
||||||
// BuildContext context,
|
// BuildContext context,
|
||||||
// String? currentCondition,
|
// String? currentCondition,
|
||||||
|
@ -6,7 +6,6 @@ import 'package:syncrow_web/pages/routines/models/ceiling_presence_sensor_functi
|
|||||||
import 'package:syncrow_web/pages/routines/models/device_functions.dart';
|
import 'package:syncrow_web/pages/routines/models/device_functions.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/custom_routines_textbox.dart';
|
import 'package:syncrow_web/pages/routines/widgets/custom_routines_textbox.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/ceiling_sensor/cps_slider_helpers.dart';
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/ceiling_sensor/cps_slider_helpers.dart';
|
||||||
import 'package:syncrow_web/pages/routines/widgets/slider_value_selector.dart';
|
|
||||||
|
|
||||||
class CpsDialogSliderSelector extends StatelessWidget {
|
class CpsDialogSliderSelector extends StatelessWidget {
|
||||||
const CpsDialogSliderSelector({
|
const CpsDialogSliderSelector({
|
||||||
@ -33,7 +32,7 @@ class CpsDialogSliderSelector extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return CustomRoutinesTextbox(
|
return CustomRoutinesTextbox(
|
||||||
withSpecialChar: false,
|
withSpecialChar: true,
|
||||||
currentCondition: selectedFunctionData.condition,
|
currentCondition: selectedFunctionData.condition,
|
||||||
dialogType: dialogType,
|
dialogType: dialogType,
|
||||||
sliderRange:
|
sliderRange:
|
||||||
|
@ -0,0 +1,86 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
import 'package:syncrow_web/pages/device_managment/all_devices/models/devices_model.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/bloc/functions_bloc/functions_bloc_bloc.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/device_functions.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/pc/enrgy_clamp_operational_value.dart';
|
||||||
|
|
||||||
|
class EnergyOperationalValuesList extends StatelessWidget {
|
||||||
|
final List<EnergyClampOperationalValue> values;
|
||||||
|
final dynamic selectedValue;
|
||||||
|
final AllDevicesModel? device;
|
||||||
|
final String operationName;
|
||||||
|
final String selectCode;
|
||||||
|
|
||||||
|
const EnergyOperationalValuesList({
|
||||||
|
required this.values,
|
||||||
|
required this.selectedValue,
|
||||||
|
required this.device,
|
||||||
|
required this.operationName,
|
||||||
|
required this.selectCode,
|
||||||
|
super.key,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return ListView.builder(
|
||||||
|
padding: const EdgeInsets.all(20),
|
||||||
|
itemCount: values.length,
|
||||||
|
itemBuilder: (context, index) => _buildValueItem(context, values[index]),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildValueItem(
|
||||||
|
BuildContext context, EnergyClampOperationalValue value) {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
_buildValueIcon(context, value),
|
||||||
|
Expanded(child: _buildValueDescription(value)),
|
||||||
|
_buildValueRadio(context, value),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildValueIcon(context, EnergyClampOperationalValue value) {
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
SvgPicture.asset(value.icon, width: 25, height: 25),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildValueDescription(EnergyClampOperationalValue value) {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 8.0),
|
||||||
|
child: Text(value.description),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildValueRadio(context, EnergyClampOperationalValue value) {
|
||||||
|
return Radio<dynamic>(
|
||||||
|
value: value.value,
|
||||||
|
groupValue: selectedValue,
|
||||||
|
onChanged: (_) => _selectValue(context, value.value),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void _selectValue(BuildContext context, dynamic value) {
|
||||||
|
context.read<FunctionBloc>().add(
|
||||||
|
AddFunction(
|
||||||
|
functionData: DeviceFunctionData(
|
||||||
|
entityId: device?.uuid ?? '',
|
||||||
|
functionCode: selectCode,
|
||||||
|
operationName: operationName,
|
||||||
|
value: value,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,246 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
import 'package:syncrow_web/pages/device_managment/all_devices/models/devices_model.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/bloc/functions_bloc/functions_bloc_bloc.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/bloc/routine_bloc/routine_bloc.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/device_functions.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/pc/energy_clamp_functions.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/dialog_footer.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/dialog_header.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/helpers/routine_tap_function_helper.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/power_clamp_enargy/energy_value_selector_widget.dart';
|
||||||
|
import 'package:syncrow_web/utils/color_manager.dart';
|
||||||
|
import 'package:syncrow_web/utils/extension/build_context_x.dart';
|
||||||
|
|
||||||
|
class EnergyClampDialog extends StatefulWidget {
|
||||||
|
final List<DeviceFunction> functions;
|
||||||
|
final AllDevicesModel? device;
|
||||||
|
final List<DeviceFunctionData>? deviceSelectedFunctions;
|
||||||
|
final String? uniqueCustomId;
|
||||||
|
final String? dialogType;
|
||||||
|
final bool removeComparetors;
|
||||||
|
|
||||||
|
const EnergyClampDialog({
|
||||||
|
super.key,
|
||||||
|
required this.functions,
|
||||||
|
this.device,
|
||||||
|
this.deviceSelectedFunctions,
|
||||||
|
this.uniqueCustomId,
|
||||||
|
this.dialogType,
|
||||||
|
this.removeComparetors = false,
|
||||||
|
});
|
||||||
|
|
||||||
|
static Future<Map<String, dynamic>?> showEnergyClampFunctionsDialog({
|
||||||
|
required BuildContext context,
|
||||||
|
required List<DeviceFunction> functions,
|
||||||
|
AllDevicesModel? device,
|
||||||
|
List<DeviceFunctionData>? deviceSelectedFunctions,
|
||||||
|
String? uniqueCustomId,
|
||||||
|
String? dialogType,
|
||||||
|
bool removeComparetors = false,
|
||||||
|
}) async {
|
||||||
|
return showDialog<Map<String, dynamic>?>(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => EnergyClampDialog(
|
||||||
|
functions: functions,
|
||||||
|
device: device,
|
||||||
|
deviceSelectedFunctions: deviceSelectedFunctions,
|
||||||
|
uniqueCustomId: uniqueCustomId,
|
||||||
|
removeComparetors: removeComparetors,
|
||||||
|
dialogType: dialogType,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<EnergyClampDialog> createState() => _EnergyClampDialogState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _EnergyClampDialogState extends State<EnergyClampDialog> {
|
||||||
|
late final List<EnergyClampFunctions> _functions;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_functions =
|
||||||
|
widget.functions.whereType<EnergyClampFunctions>().where((function) {
|
||||||
|
if (widget.dialogType == 'THEN') {
|
||||||
|
return function.type == 'THEN' || function.type == 'BOTH';
|
||||||
|
}
|
||||||
|
return function.type == 'IF' || function.type == 'BOTH';
|
||||||
|
}).toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return BlocProvider(
|
||||||
|
create: (_) => FunctionBloc()
|
||||||
|
..add(InitializeFunctions(widget.deviceSelectedFunctions ?? [])),
|
||||||
|
child: _buildDialogContent(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildDialogContent() {
|
||||||
|
return AlertDialog(
|
||||||
|
contentPadding: EdgeInsets.zero,
|
||||||
|
content: BlocBuilder<FunctionBloc, FunctionBlocState>(
|
||||||
|
builder: (context, state) {
|
||||||
|
final selectedFunction = state.selectedFunction;
|
||||||
|
return Container(
|
||||||
|
width: selectedFunction != null ? 600 : 360,
|
||||||
|
height: 450,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.white,
|
||||||
|
borderRadius: BorderRadius.circular(20),
|
||||||
|
),
|
||||||
|
padding: const EdgeInsets.only(top: 20),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
const DialogHeader('Energy Clamp Conditions'),
|
||||||
|
Expanded(child: _buildMainContent(context, state)),
|
||||||
|
_buildDialogFooter(context, state),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildMainContent(BuildContext context, FunctionBlocState state) {
|
||||||
|
return Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
_buildFunctionList(context, state),
|
||||||
|
if (state.selectedFunction != null) _buildValueSelector(context, state),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildFunctionList(BuildContext context, FunctionBlocState state) {
|
||||||
|
final selectedFunction = state.selectedFunction;
|
||||||
|
final selectedFunctionData = state.addedFunctions.firstWhere(
|
||||||
|
(f) => f.functionCode == selectedFunction,
|
||||||
|
orElse: () => DeviceFunctionData(
|
||||||
|
entityId: '',
|
||||||
|
functionCode: selectedFunction ?? '',
|
||||||
|
operationName: '',
|
||||||
|
value: null,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
return SizedBox(
|
||||||
|
width: 360,
|
||||||
|
child: ListView.separated(
|
||||||
|
shrinkWrap: false,
|
||||||
|
physics: const AlwaysScrollableScrollPhysics(),
|
||||||
|
itemCount: _functions.length,
|
||||||
|
separatorBuilder: (context, index) => const Padding(
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 40.0),
|
||||||
|
child: Divider(color: ColorsManager.dividerColor),
|
||||||
|
),
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
final function = _functions[index];
|
||||||
|
return ListTile(
|
||||||
|
leading: SvgPicture.asset(
|
||||||
|
function.icon,
|
||||||
|
width: 24,
|
||||||
|
height: 24,
|
||||||
|
placeholderBuilder: (context) => const SizedBox(
|
||||||
|
width: 24,
|
||||||
|
height: 24,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
title: Text(
|
||||||
|
function.operationName,
|
||||||
|
style: context.textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
trailing: const Icon(
|
||||||
|
Icons.arrow_forward_ios,
|
||||||
|
size: 16,
|
||||||
|
color: ColorsManager.textGray,
|
||||||
|
),
|
||||||
|
onTap: () => RoutineTapFunctionHelper.onTapFunction(
|
||||||
|
context,
|
||||||
|
functionCode: function.code,
|
||||||
|
functionOperationName: function.operationName,
|
||||||
|
functionValueDescription: selectedFunctionData.valueDescription,
|
||||||
|
deviceUuid: widget.device?.uuid,
|
||||||
|
codesToAddIntoFunctionsWithDefaultValue: [
|
||||||
|
'VoltageA',
|
||||||
|
'CurrentA',
|
||||||
|
'ActivePowerA',
|
||||||
|
'PowerFactorA',
|
||||||
|
'ReactivePowerA',
|
||||||
|
'EnergyConsumedA',
|
||||||
|
'VoltageB',
|
||||||
|
'CurrentB',
|
||||||
|
'ActivePowerB',
|
||||||
|
'PowerFactorB',
|
||||||
|
'ReactivePowerB',
|
||||||
|
'EnergyConsumedB',
|
||||||
|
'VoltageC',
|
||||||
|
'CurrentC',
|
||||||
|
'ActivePowerC',
|
||||||
|
'PowerFactorC',
|
||||||
|
'ReactivePowerC',
|
||||||
|
'EnergyConsumedC',
|
||||||
|
'EnergyConsumed',
|
||||||
|
'Current',
|
||||||
|
'ActivePower',
|
||||||
|
'ReactivePower',
|
||||||
|
'Frequency',
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildValueSelector(BuildContext context, FunctionBlocState state) {
|
||||||
|
final selectedFunction = state.selectedFunction!;
|
||||||
|
final functionData = state.addedFunctions.firstWhere(
|
||||||
|
(f) => f.functionCode == selectedFunction,
|
||||||
|
orElse: () => DeviceFunctionData(
|
||||||
|
entityId: '',
|
||||||
|
functionCode: selectedFunction,
|
||||||
|
operationName: state.selectedOperationName ?? '',
|
||||||
|
value: null,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
return Expanded(
|
||||||
|
child: EnergyValueSelectorWidget(
|
||||||
|
selectedFunction: selectedFunction,
|
||||||
|
functionData: functionData,
|
||||||
|
functions: _functions,
|
||||||
|
device: widget.device,
|
||||||
|
dialogType: widget.dialogType!,
|
||||||
|
removeComparators: widget.removeComparetors,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildDialogFooter(BuildContext context, FunctionBlocState state) {
|
||||||
|
return DialogFooter(
|
||||||
|
onCancel: () => Navigator.pop(context),
|
||||||
|
onConfirm: state.addedFunctions.isNotEmpty
|
||||||
|
? () {
|
||||||
|
context.read<RoutineBloc>().add(
|
||||||
|
AddFunctionToRoutine(
|
||||||
|
state.addedFunctions,
|
||||||
|
widget.uniqueCustomId!,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
Navigator.pop(
|
||||||
|
context,
|
||||||
|
{'deviceId': widget.functions.first.deviceId},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
isConfirmEnabled: state.selectedFunction != null,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,85 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
|
import 'package:syncrow_web/pages/device_managment/all_devices/models/devices_model.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/bloc/functions_bloc/functions_bloc_bloc.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/device_functions.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/models/pc/energy_clamp_functions.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/custom_routines_textbox.dart';
|
||||||
|
import 'package:syncrow_web/pages/routines/widgets/routine_dialogs/power_clamp_enargy/enargy_operational_values_list.dart';
|
||||||
|
|
||||||
|
class EnergyValueSelectorWidget extends StatelessWidget {
|
||||||
|
final String selectedFunction;
|
||||||
|
final DeviceFunctionData functionData;
|
||||||
|
final List<EnergyClampFunctions> functions;
|
||||||
|
final AllDevicesModel? device;
|
||||||
|
final String dialogType;
|
||||||
|
final bool removeComparators;
|
||||||
|
|
||||||
|
const EnergyValueSelectorWidget({
|
||||||
|
required this.selectedFunction,
|
||||||
|
required this.functionData,
|
||||||
|
required this.functions,
|
||||||
|
required this.device,
|
||||||
|
required this.dialogType,
|
||||||
|
required this.removeComparators,
|
||||||
|
super.key,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final selectedFn =
|
||||||
|
functions.firstWhere((f) => f.code == selectedFunction);
|
||||||
|
final values = selectedFn.getOperationalValues();
|
||||||
|
final step = selectedFn.step ?? 1.0;
|
||||||
|
final _unit = selectedFn.unit ?? '';
|
||||||
|
final (double, double) sliderRange =
|
||||||
|
(selectedFn.min ?? 0.0, selectedFn.max ?? 100.0);
|
||||||
|
|
||||||
|
if (_isSliderFunction(selectedFunction)) {
|
||||||
|
return CustomRoutinesTextbox(
|
||||||
|
withSpecialChar: false,
|
||||||
|
currentCondition: functionData.condition,
|
||||||
|
dialogType: dialogType,
|
||||||
|
sliderRange: sliderRange,
|
||||||
|
displayedValue: functionData.value,
|
||||||
|
initialValue: functionData.value ?? 0.0,
|
||||||
|
onConditionChanged: (condition) => context.read<FunctionBloc>().add(
|
||||||
|
AddFunction(
|
||||||
|
functionData: DeviceFunctionData(
|
||||||
|
entityId: device?.uuid ?? '',
|
||||||
|
functionCode: selectedFunction,
|
||||||
|
operationName: functionData.operationName,
|
||||||
|
condition: condition,
|
||||||
|
value: functionData.value ?? 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
onTextChanged: (value) => context.read<FunctionBloc>().add(
|
||||||
|
AddFunction(
|
||||||
|
functionData: DeviceFunctionData(
|
||||||
|
entityId: device?.uuid ?? '',
|
||||||
|
functionCode: selectedFunction,
|
||||||
|
operationName: functionData.operationName,
|
||||||
|
value: value.toInt(),
|
||||||
|
condition: functionData.condition,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
unit: _unit,
|
||||||
|
dividendOfRange: 1,
|
||||||
|
stepIncreaseAmount: step,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return EnergyOperationalValuesList(
|
||||||
|
values: values,
|
||||||
|
selectedValue: functionData.value,
|
||||||
|
device: device,
|
||||||
|
operationName: selectedFn.operationName,
|
||||||
|
selectCode: selectedFunction,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool _isSliderFunction(String function) =>
|
||||||
|
!['voltage_phase_seq'].contains(function);
|
||||||
|
}
|
@ -33,7 +33,7 @@ class WpsValueSelectorWidget extends StatelessWidget {
|
|||||||
|
|
||||||
if (_isSliderFunction(selectedFunction)) {
|
if (_isSliderFunction(selectedFunction)) {
|
||||||
return CustomRoutinesTextbox(
|
return CustomRoutinesTextbox(
|
||||||
withSpecialChar: false,
|
withSpecialChar: true,
|
||||||
currentCondition: functionData.condition,
|
currentCondition: functionData.condition,
|
||||||
dialogType: dialogType,
|
dialogType: dialogType,
|
||||||
sliderRange: sliderRange,
|
sliderRange: sliderRange,
|
||||||
|
@ -242,7 +242,8 @@ class ThenContainer extends StatelessWidget {
|
|||||||
'GW',
|
'GW',
|
||||||
'CPS',
|
'CPS',
|
||||||
"NCPS",
|
"NCPS",
|
||||||
"WH"
|
"WH",
|
||||||
|
'PC',
|
||||||
].contains(mutableData['productType'])) {
|
].contains(mutableData['productType'])) {
|
||||||
context.read<RoutineBloc>().add(AddToThenContainer(mutableData));
|
context.read<RoutineBloc>().add(AddToThenContainer(mutableData));
|
||||||
}
|
}
|
||||||
|
@ -481,5 +481,8 @@ class Assets {
|
|||||||
static const String indentLevelIcon = 'assets/icons/indent_level_icon.svg';
|
static const String indentLevelIcon = 'assets/icons/indent_level_icon.svg';
|
||||||
static const String triggerLevelIcon = 'assets/icons/trigger_level_icon.svg';
|
static const String triggerLevelIcon = 'assets/icons/trigger_level_icon.svg';
|
||||||
static const String blankCalendar = 'assets/icons/blank_calendar.svg';
|
static const String blankCalendar = 'assets/icons/blank_calendar.svg';
|
||||||
static const String refreshStatusIcon = 'assets/icons/refresh_status_icon.svg';
|
static const String refreshStatusIcon =
|
||||||
|
'assets/icons/refresh_status_icon.svg';
|
||||||
|
static const String energyConsumedIcon =
|
||||||
|
'assets/icons/energy_consumed_icon.svg';
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@ enum DeviceType {
|
|||||||
WaterLeak,
|
WaterLeak,
|
||||||
NCPS,
|
NCPS,
|
||||||
DoorSensor,
|
DoorSensor,
|
||||||
|
PC,
|
||||||
Other,
|
Other,
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
@ -59,4 +60,5 @@ Map<String, DeviceType> devicesTypesMap = {
|
|||||||
'GD': DeviceType.GarageDoor,
|
'GD': DeviceType.GarageDoor,
|
||||||
'WL': DeviceType.WaterLeak,
|
'WL': DeviceType.WaterLeak,
|
||||||
'NCPS': DeviceType.NCPS,
|
'NCPS': DeviceType.NCPS,
|
||||||
|
'PC': DeviceType.PC,
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user