Command Triggers
To execute a command automatically, set the template of the command and the condition in the trigger. See the below examples.
Registering One-Time Schedule Triggers
We will show how to register a trigger to turn on an air conditioner (with the preset temperature and fan speed set to 25 degrees and 5, respectively) 1 hour from now.
// Create a command.
List<Action> actions = new ArrayList<Action>();
TurnPower action1 = new TurnPower();
action1.power = true;
SetPresetTemperature action2 = new SetPresetTemperature();
action2.presetTemperature = 25;
SetFanSpeed action3 = new SetFanSpeed();
action3.fanSpeed = 5;
actions.add(action1);
actions.add(action2);
actions.add(action3);
// Create a predicate.
// Execute the command in an hour.
long scheduleAt = new Date().getTime() + 60 * 60 * 1000;
ScheduleOncePredicate predicate = new ScheduleOncePredicate(scheduleAt);
try {
// Send a trigger.
Trigger trigger = api.postNewTrigger("AirConditioner-Demo", 1, actions, predicate);
} catch (ThingIFException e) {
// Handle the error.
}
This is what is happening in the sample code:
Create the command to be executed by the trigger as
List<Action>
. Here, we are setting three actions in sequence. How the command is set is the same as that in the code of Executing Commands.Set the execution time in
scheduleAt
and use it as the argument of theScheduleOncePredicate
.Finally, execute the
postNewTrigger
method to register the trigger.
The API returns control when Thing Interaction Framework accepts the trigger.
Registering Recurring Schedule Triggers
We will show how to register a trigger to turn on an air conditioner (with the preset temperature and fan speed set to 25 degrees and 5, respectively) at 9:00 a.m. every day.
// Create a command.
List<Action> actions = new ArrayList<Action>();
TurnPower action1 = new TurnPower();
action1.power = true;
SetPresetTemperature action2 = new SetPresetTemperature();
action2.presetTemperature = 25;
SetFanSpeed action3 = new SetFanSpeed();
action3.fanSpeed = 5;
actions.add(action1);
actions.add(action2);
actions.add(action3);
// Create a predicate.
// Execute the command at 9:00 a.m. every day.
SchedulePredicate predicate = new SchedulePredicate("0 9 * * *");
try {
// Send a trigger.
Trigger trigger = api.postNewTrigger("AirConditioner-Demo", 1, actions, predicate);
} catch (ThingIFException e) {
// Handle the error.
}
The basic steps are the same as the case of a one-time schedule trigger. The only difference is how the execution condition is initialized.
- Set the execution time as the argument of the
SchedulePredicate
. See Recurring Schedule to learn how to set the time.
Registering State Condition Triggers
The next example shows how to register a trigger with a simple condition. We will show how to register a trigger to turn on an air conditioner (with the preset temperature and fan speed set to 25 degrees and 5, respectively) when "the room temperature goes over 30 degrees".
// Create a command.
List<Action> actions = new ArrayList<Action>();
TurnPower action1 = new TurnPower();
action1.power = true;
SetPresetTemperature action2 = new SetPresetTemperature();
action2.presetTemperature = 25;
SetFanSpeed action3 = new SetFanSpeed();
action3.fanSpeed = 5;
actions.add(action1);
actions.add(action2);
actions.add(action3);
// Create a predicate.
// Execute the command when the temperature is greater than or equal to 30 deg C.
Condition condition = new Condition(Range.greaterThanEquals("currentTemperature", 30));
StatePredicate predicate = new StatePredicate(condition, TriggersWhen.CONDITION_FALSE_TO_TRUE);
try {
// Send a trigger.
Trigger trigger = api.postNewTrigger("AirConditioner-Demo", 1, actions, predicate);
} catch (ThingIFException e) {
// Handle the error.
}
The basic steps are the same as the case of schedule triggers. The only difference is how the execution condition is initialized.
- Create a trigger condition. First, set the comparison condition in a
Condition
. In this example, we are creating the condition that will become true whencurrentTemperature
registered in State is greater than or equal to 30 degrees. - Create a
StatePredicate
to finalize the trigger condition. In this example, we are specifyingCONDITION_FALSE_TO_TRUE
because we want to execute the command when the room temperature goes up from below 30 degrees to above 30 degrees.
Registering Triggers with Multiple State Conditions
The next example shows how to concatenate conditions with AND. In this example, we will set a trigger to set the fan speed to 10 when "the power is on" and "the room humidity is above 80".
// Create a command.
List<Action> actions = new ArrayList<Action>();
SetFanSpeed action = new SetFanSpeed();
action.fanSpeed = 10;
actions.add(action);
// Create a predicate.
// Execute the command when the power is on and the humidity is greater than 80%.
Condition condition = new Condition(
new And(new Equals("power", true),
Range.greaterThan("currentHumidity", 80)));
StatePredicate predicate = new StatePredicate(condition, TriggersWhen.CONDITION_FALSE_TO_TRUE);
try {
// Send a trigger.
Trigger trigger = api.postNewTrigger("AirConditioner-Demo", 1, actions, predicate);
} catch (ThingIFException e) {
// Handle the error.
}
The basic steps are the same as the case of a single condition trigger. The only difference is how a Condition
is initialized. In this example, we first create two conditions "power
is equal to true" and "currnetHumidity
is greater than 80", concatenate them with an And
, and then set the concatenated condition as the comparison condition.
Registering Advanced Triggers
You can register advanced triggers as below by specifying detailed information.
A trigger which sends a command to a different thing
You can register a trigger that sends a command to a different thing when a state condition is met on the thing to which you register the trigger.
For example, if you manage a thermometer and an air conditioner as separate things, you can register a trigger to "turn on the air conditioner when the thermometer rises to a certain temperature".
A trigger with details of the trigger and the command in it
You can set the title, description, and metadata of the trigger and the command in it.
// Create a command.
List<Action> actions = new ArrayList<Action>();
TurnPower action1 = new TurnPower();
action1.power = true;
SetPresetTemperature action2 = new SetPresetTemperature();
action2.presetTemperature = 25;
SetFanSpeed action3 = new SetFanSpeed();
action3.fanSpeed = 5;
actions.add(action1);
actions.add(action2);
actions.add(action3);
// Get the target thing that receives the command.
Target target = api2.getTarget();
// Create a command form from detailed information.
TriggeredCommandForm.Builder cb = TriggeredCommandForm.builder("AirConditioner-Demo", 1, actions);
cb.setTargetID(target.getTypedID());
cb.setTitle("Power on");
cb.setDescription("Power on and set to 25 deg C");
cb.setMetadata(new JSONObject("{ \"iconIndex\" : 2, \"issuer\" : \"trigger\" }"));
TriggeredCommandForm form = cb.build();
// Create a predicate.
Condition condition = new Condition(Range.greaterThanEquals("currentTemperature", 30));
StatePredicate predicate = new StatePredicate(condition, TriggersWhen.CONDITION_FALSE_TO_TRUE);
// Create trigger options from detailed information.
TriggerOptions.Builder ob = TriggerOptions.builder();
ob.setTitle("Power on");
ob.setDescription("Power on when the temperature goes over 30 deg C");
ob.setMetadata(new JSONObject("{ \"createdBy\" : \"Alice\" }"));
TriggerOptions options = ob.build();
try {
// Send a trigger.
Trigger trigger = api.postNewTrigger(form, predicate, options);
} catch (ThingIFException e) {
// Handle the error.
}
The following processes are executed in the code:
Specify actions to be executed when the condition is met in
actions
.Specify the command details with the
TriggeredCommandForm.Builder
as below. Then create aTriggeredCommandForm
with thebuild
method.- Specify the thing to which the trigger sends the command with the
setTargetID
method.
This sample code assumes that the thermometer and the air conditioner are managed with the ThingIFAPI instances,api
andapi2
, respectively. When the state ofapi
(thermometer) meets the trigger condition, the trigger sends a command which turns on the air conditioner totarget
obtained fromapi2
(air conditioner).
You need to have instantiated and onboardedapi
andapi2
with the same owner.
Note that the command will be sent to the thing set in the ThingIFAPI instance which is specified to call thepostNewTrigger
method if you do not call thesetTargetID
method. - You can specify the command details with the
setTitle
,setDescription
, andsetMetadata
methods.
You can freely use these fields according to your mobile app specification as explained in Command Details. See Command Details also for limits such as the maximum length of each field.
- Specify the thing to which the trigger sends the command with the
Create the execution condition as a
StatePredicate
.Specify the trigger details with the
TriggerOptions.Builder
. You can set information for your mobile app as you can for commands. The same limits such as the maximum length apply to triggers and commands. Next, create aTriggerOptions
with thebuild
method.Finally, register the new trigger by calling the
postNewTrigger
method with theTriggeredCommandForm
,StatePredicate
, andTriggerOptions
which you created until now.