@@ -307,7 +307,7 @@ const tzLocal = {
307
307
// set timer to 12 sec in order to disable outdoor temperature
308
308
await entity . write ( 'manuSpecificSinope' , { outdoorTempToDisplayTimeout : 12 } , manuSinope ) ;
309
309
}
310
- return { readAfterWriteTime : 250 , state : { enable_outdoor_temperature : value } } ;
310
+ return { state : { enable_outdoor_temperature : value } } ;
311
311
} ,
312
312
convertGet : async ( entity , key , meta ) => {
313
313
await entity . read ( 'manuSpecificSinope' , [ 'outdoorTempToDisplayTimeout' ] , manuSinope ) ;
@@ -377,7 +377,7 @@ const tzLocal = {
377
377
if ( lookup [ value ] !== undefined ) {
378
378
await entity . write ( 'manuSpecificSinope' , { floorControlMode : utils . getFromLookup ( value , lookup ) } ) ;
379
379
}
380
- return { readAfterWriteTime : 250 , state : { floor_control_mode : value } } ;
380
+ return { state : { floor_control_mode : value } } ;
381
381
} ,
382
382
convertGet : async ( entity , key , meta ) => {
383
383
await entity . read ( 'manuSpecificSinope' , [ 'floorControlMode' ] ) ;
@@ -391,7 +391,7 @@ const tzLocal = {
391
391
if ( ( value >= 5 && value <= 36 ) || value == 'off' ) {
392
392
// @ts -expect-error ignore
393
393
await entity . write ( 'manuSpecificSinope' , { ambiantMaxHeatSetpointLimit : value == 'off' ? - 32768 : value * 100 } ) ;
394
- return { readAfterWriteTime : 250 , state : { ambiant_max_heat_setpoint : value } } ;
394
+ return { state : { ambiant_max_heat_setpoint : value } } ;
395
395
}
396
396
} ,
397
397
convertGet : async ( entity , key , meta ) => {
@@ -406,7 +406,7 @@ const tzLocal = {
406
406
if ( ( value >= 5 && value <= 34 ) || value == 'off' ) {
407
407
// @ts -expect-error ignore
408
408
await entity . write ( 'manuSpecificSinope' , { floorMinHeatSetpointLimit : value == 'off' ? - 32768 : value * 100 } ) ;
409
- return { readAfterWriteTime : 250 , state : { floor_min_heat_setpoint : value } } ;
409
+ return { state : { floor_min_heat_setpoint : value } } ;
410
410
}
411
411
} ,
412
412
convertGet : async ( entity , key , meta ) => {
@@ -421,7 +421,7 @@ const tzLocal = {
421
421
if ( ( value >= 7 && value <= 36 ) || value == 'off' ) {
422
422
// @ts -expect-error ignore
423
423
await entity . write ( 'manuSpecificSinope' , { floorMaxHeatSetpointLimit : value == 'off' ? - 32768 : value * 100 } ) ;
424
- return { readAfterWriteTime : 250 , state : { floor_max_heat_setpoint : value } } ;
424
+ return { state : { floor_max_heat_setpoint : value } } ;
425
425
}
426
426
} ,
427
427
convertGet : async ( entity , key , meta ) => {
@@ -441,7 +441,7 @@ const tzLocal = {
441
441
if ( lookup [ value ] !== undefined ) {
442
442
await entity . write ( 'manuSpecificSinope' , { temperatureSensor : utils . getFromLookup ( value , lookup ) } ) ;
443
443
}
444
- return { readAfterWriteTime : 250 , state : { floor_temperature_sensor : value } } ;
444
+ return { state : { floor_temperature_sensor : value } } ;
445
445
} ,
446
446
convertGet : async ( entity , key , meta ) => {
447
447
await entity . read ( 'manuSpecificSinope' , [ 'temperatureSensor' ] ) ;
@@ -451,7 +451,7 @@ const tzLocal = {
451
451
key : [ 'time_format' ] ,
452
452
convertSet : async ( entity , key , value , meta ) => {
453
453
await entity . write ( 'manuSpecificSinope' , { timeFormatToDisplay : utils . getFromLookup ( value , { '24h' : 0 , '12h' : 1 } ) } , manuSinope ) ;
454
- return { readAfterWriteTime : 250 , state : { time_format : value } } ;
454
+ return { state : { time_format : value } } ;
455
455
} ,
456
456
convertGet : async ( entity , key , meta ) => {
457
457
await entity . read ( 'manuSpecificSinope' , [ 'timeFormatToDisplay' ] , manuSinope ) ;
@@ -473,7 +473,7 @@ const tzLocal = {
473
473
key : [ 'aux_connected_load' ] ,
474
474
convertSet : async ( entity , key , value , meta ) => {
475
475
await entity . write ( 'manuSpecificSinope' , { auxConnectedLoad : value } ) ;
476
- return { readAfterWriteTime : 250 , state : { aux_connected_load : value } } ;
476
+ return { state : { aux_connected_load : value } } ;
477
477
} ,
478
478
convertGet : async ( entity , key , meta ) => {
479
479
await entity . read ( 'manuSpecificSinope' , [ 'auxConnectedLoad' ] ) ;
@@ -489,7 +489,7 @@ const tzLocal = {
489
489
} else if ( value . toLowerCase ( ) == 'off' ) {
490
490
await entity . write ( 'manuSpecificSinope' , { pumpProtection : 255 } ) ;
491
491
}
492
- return { readAfterWriteTime : 250 , state : { pump_protection : value } } ;
492
+ return { state : { pump_protection : value } } ;
493
493
} ,
494
494
convertGet : async ( entity , key , meta ) => {
495
495
await entity . read ( 'manuSpecificSinope' , [ 'pumpProtection' ] ) ;
@@ -555,7 +555,7 @@ const tzLocal = {
555
555
if ( number >= 0 && number <= 3000 ) {
556
556
await entity . write ( 'manuSpecificSinope' , { minimumBrightness : number } ) ;
557
557
}
558
- return { readAfterWriteTime : 250 , state : { minimumBrightness : number } } ;
558
+ return { state : { minimumBrightness : number } } ;
559
559
} ,
560
560
convertGet : async ( entity , key , meta ) => {
561
561
await entity . read ( 'manuSpecificSinope' , [ 'minimumBrightness' ] ) ;
0 commit comments