OK, hab ich auch drin gehabt in der Install
hier mal die config fürs Erdgeschoss :
<?
include_once "IPSShadowing_Constants.ips.php";
// Common Configuration Settings
// --------------------------------------------------------------------------
define ("c_Setting_TempOutdoorPath", "KS300.Temperatur");
define ("c_Setting_TempIndoorPath", "EG.Wohnzimmer.HM_Heizung_Wohnzimmer.TEMPERATURE");
// Present Configuration
define ("c_Setting_PresentPath", "");
// Twillight Configuration
define ("c_Setting_TwilightBODPath", "Program.Weather.Sunrise.SunriseBegin");
define ("c_Setting_TwilightEODPath", "Program.Weather.Sunrise.SunriseEnd");
define ("c_Setting_TwilightLimitedBODPath", "Program.Weather.Sunrise.SunriseBeginLimited");
define ("c_Setting_TwilightLimitedEODPath", "Program.Weather.Sunrise.SunriseEndLimited");
// Logging List Length
define ("c_LogMessage_Count", 9);
// Device Configuration
// --------------------------------------------------------------------------
function get_ShadowingConfiguration() {
return array(
"WZ Erker1" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Wohnzimmer.Rollläden.Erker1',
c_Property_DevicePath2 => '',
c_Property_TimeOpening => 30,
c_Property_TimeClosing => 30,
c_Property_TimeDimoutUp => 2,
c_Property_TimeDimoutDown => 3,
c_Property_TimePause => 1,
),
"WZ Erker2" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Wohnzimmer.Rollläden.Erker2',
c_Property_TimeOpening => 30,
c_Property_TimeClosing => 30,
c_Property_TimeDimoutUp => 2,
c_Property_TimeDimoutDown => 3,
c_Property_TimePause => 1,
),
"WZ Erker3" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Wohnzimmer.Rollläden.Erker3',
c_Property_TimeOpening => 30,
c_Property_TimeClosing => 30,
c_Property_TimeDimoutUp => 2,
c_Property_TimeDimoutDown => 3,
c_Property_TimePause => 1,
),
"WZ Fenster" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Wohnzimmer.Rollläden.Fenster',
c_Property_TimeOpening => 25,
c_Property_TimeClosing => 25,
c_Property_TimeDimoutUp => 2,
c_Property_TimeDimoutDown => 3,
c_Property_TimePause => 1,
),
"Terrassentür" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Wohnzimmer.Rollläden.Terrasse',
c_Property_TimeOpening => 30,
c_Property_TimeClosing => 30,
c_Property_TimeDimoutUp => 2,
c_Property_TimeDimoutDown => 3,
c_Property_TimePause => 1,
),
"Küche" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Küche.Rollladen',
c_Property_TimeOpening => 18,
c_Property_TimeClosing => 18,
c_Property_TimePause => 1,
),
"Gäste WC" => array(
c_Property_ShadowingType => c_ShadowingType_Shutter,
c_Property_DeviceType => c_DeviceType_Auto,
c_Property_DevicePath => 'EG.Gäste_WC.Rollladen',
c_Property_TimeOpening => 18,
c_Property_TimeClosing => 18,
c_Property_TimePause => 1,
),
);
}
?>
P.S. kann man für die Pfadangaben nicht auch die IDs einsetzten ? Wenn ich nur mal was „verschieben“ sollte…