reflect api selected function value in the view and connect dialog

This commit is contained in:
ashrafzarkanisala
2024-06-30 02:24:24 +03:00
parent 6584b894c4
commit b364adf0bd
7 changed files with 98 additions and 8 deletions

View File

@ -1166,7 +1166,9 @@ mixin SceneOperationsDataHelper {
icon: Assets.assetsTempreture,
operationName: 'Set Temperature',
code: 'temp_set',
functionValue: executorProperty.functionValue,
functionValue: executorProperty.functionValue != null
? ((executorProperty.functionValue / 10) as double).toInt()
: null,
operationalValues: [
SceneOperationalValue(
icon: Assets.assetsCelsiusDegrees,