-
Notifications
You must be signed in to change notification settings - Fork 87
Home
Temi SDK is your way to develop skills for temi that take advantage of your robot's unique abilities! All development for temi is done on Android by creating an android application and importing Temi's SDK. Temi's tablet runs on Android 6.0.1 (SDK level 23). Always use the Sample app as a reference.
All communication betweeen temi OS and your application is linked through the meta-datas included in the AndroidManifest.xml. Below you will see the meta-data that displays your app in temi OS's application selection:
<meta-data
android:name="com.robotemi.sdk.metadata.SKILL"
android:value="@string/app_name" />
At the start of the MainActivity, you might want to implement specific interfaces based on which types of callbacks you are interested in. For example,
public class MainActivity extends AppCompatActivity implements
Robot.NlpListener,
OnRobotReadyListener,
Robot.ConversationViewAttachesListener,
Robot.WakeupWordListener,
Robot.ActivityStreamPublishListener,
Robot.TtsListener,
OnBeWithMeStatusChangedListener,
OnGoToLocationStatusChangedListener,
OnLocationsUpdatedListener
After doing so, Android Studio will prompt you to implement specific methods.
You will also need to add and remove each listener by doing:
protected void onStart() {
super.onStart();
Robot.getInstance().addOnRobotReadyListener(this);
Robot.getInstance().addNlpListener(this);
Robot.getInstance().addOnBeWithMeStatusChangedListener(this);
Robot.getInstance().addOnGoToLocationStatusChangedListener(this);
Robot.getInstance().addConversationViewAttachesListenerListener(this);
Robot.getInstance().addWakeupWordListener(this);
Robot.getInstance().addTtsListener(this);
Robot.getInstance().addOnLocationsUpdatedListener(this);
}
protected void onStop() {
super.onStop();
Robot.getInstance().removeOnRobotReadyListener(this);
Robot.getInstance().removeNlpListener(this);
Robot.getInstance().removeOnBeWithMeStatusChangedListener(this);
Robot.getInstance().removeOnGoToLocationStatusChangedListener(this);
Robot.getInstance().removeConversationViewAttachesListenerListener(this);
Robot.getInstance().removeWakeupWordListener(this);
Robot.getInstance().removeTtsListener(this);
Robot.getInstance().removeOnLocationsUpdateListener(this);
}
Overriding the onRobotReady method allows your app to be placed as a shortcut in temi's top bar. For example:
@Override
public void onRobotReady(boolean isReady) {
if (isReady) {
try {
final ActivityInfo activityInfo = getPackageManager().getActivityInfo(getComponentName(), PackageManager.GET_META_DATA);
robot.onStart(activityInfo);
} catch (PackageManager.NameNotFoundException e) {
throw new RuntimeException(e);
}
}
}