Please enable JavaScript to view this site.

CWT Software Configuration Handbook 4.40

Element        Path: <cwt><SCHEDULE><actionproperties><properties>

Name attribute

Value attribute

Description

cwoHeartbeatInterval

0-65535

cwoHeartbeatInterval (optional)
see COMMUNICATION  

dayType

0-255

defines the day type for the action see CALENDAR. If not defined the action runs on every day.

keepGprsConnection

true, false

see COMMUNICATION

Example:

Change the values for cwoHeartbeatInterval and keepGprsConnection for duration of 480 minutes on every day that is of type 1 at 23:55:  Assuming dayType 1 is a Saturday then this means, “every Saturday from 23:55 till Sunday 08:55 switch off modem (name="keepGprsConnection" value="false") and do not communicate with WebOffice (name="cwoHeartbeatInterval" value="0").”

<SCHEDULE name="changeAllOnDayType" startTime="23:55" action="CommunicationPowerSave">
<actionproperties duration="480">
  <properties name="cwoHeartbeatInterval" value="0"/>
  <properties name="keepGprsConnection" value="false"/>
  <properties name="dayType" value="1"/>
</actionproperties>
</SCHEDULE>

Example:

Change the value for keepGprsConnectiontion of 60 minutes on every day 23:00.  

<SCHEDULE name=" changeKeepGprs" startTime="23:00" action="CommunicationPowerSave">
<actionproperties duration="60">
  <properties name="keepGprsConnection" value="false"/>
</actionproperties>
</SCHEDULE>

Example:

Change the value for cwoHertbeatInterval of 360 minutes on every Saturday at 10:30.  

<SCHEDULE name=" changeHeartBeat" startTime="10:30" action="CommunicationPowerSave">
<actionproperties duration="360">
  <properties name="cwoHeartbeatInterval" value="0"/>
  <properties name="dayType" value="1"/>
</actionproperties>
</SCHEDULE>