hoffmation-base 3.2.28 → 3.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,6 +5,7 @@ import { iRoomSettingsController } from './iRoomSettingsController';
|
|
|
5
5
|
import { iIdHolder } from './iIdHolder';
|
|
6
6
|
import { iDeviceCluster } from './iDevicecluster';
|
|
7
7
|
import { ITimeCallback } from './ITimeCallback';
|
|
8
|
+
import { iTrilaterationPoint } from './iTrilaterationPoint';
|
|
8
9
|
/**
|
|
9
10
|
* This interface represents a room with it's base functionality.
|
|
10
11
|
* Whilst accessing the custom rooms can be beneficial for direct device interaction, this provides interactions to e.g. device groups.
|
|
@@ -66,6 +67,14 @@ export interface iRoomBase extends iIdHolder {
|
|
|
66
67
|
* The time-callback for controlling light at sunset
|
|
67
68
|
*/
|
|
68
69
|
sonnenUntergangLichtCallback: ITimeCallback | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* The bot-left corner of the room in 2D/3D Map
|
|
72
|
+
*/
|
|
73
|
+
startPoint?: iTrilaterationPoint;
|
|
74
|
+
/**
|
|
75
|
+
* The top-right corner of the room in 2D/3D Map
|
|
76
|
+
*/
|
|
77
|
+
endPoint?: iTrilaterationPoint;
|
|
69
78
|
/**
|
|
70
79
|
*
|
|
71
80
|
*/
|