Last Updated on : 2024-06-17 08:05:00download
Pan-tilt-zoom (PTZ) is one of the important data points (DPs) of IP cameras (IPCs) and is widely used in IPC scenarios. The integration of PTZ is lacking in the business encapsulation as vertical resources. To speed up the integration of PTZ, Tuya provides the encapsulation of PTZ features.
The following PTZ features are supported:
All these PTZ features are managed by the PTZ management class IThingIPCPTZ
. To implement diverse PTZ DPs, required API methods are encapsulated in IThingIPCPTZ
.
Example
IThingIPCPTZ thingIPCPTZ = ThingIPCSdk.getPTZInstance(mDevId)
API description
void addPTZListener(@NonNull IThingIPCPTZListener listener);
Request parameter
Parameter | Description |
---|---|
listener | The PTZ listener. |
IThingIPCPTZListener
The PTZ listener is registered to listen for PTZ DP updates. The listener is described in the following table.
API name | Parameter | Return value | Description |
---|---|---|---|
onPTZDeviceDpUpdate | dpCode | void | The callback of PTZ DP updates. You call the API method getCurrentValue to query current DP data by dpCode . |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.addPTZListener(new IThingIPCPTZListener() {
@Override
public void onPTZDeviceDpUpdate(String dpCode) {
}
});
}
Removes a PTZ listener. We recommend that you remove the listener when the page is destroyed. Otherwise, a memory leak might occur.
API description
void removePTZListener(@NonNull IThingIPCPTZListener listener);
Request parameter
Parameter | Description |
---|---|
listener | The PTZ listener to be removed. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.removePTZListener(listener);
}
PTZ DPs are further encapsulated based on the API methods for device management and device control to implement different PTZ features. For more information about the concept of DPs, see Device Control (Android).
Checks whether a specific IPC DP is supported and whether the UI of the DP is displayed.
API description
boolean querySupportByDPCode(String dpCode);
Request parameter
Parameter | Description |
---|---|
dpCode | The identifier of the DP. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.querySupportByDPCode("motion_tracking");
}
Returns current DP data including the return value object. For example, to return a Boolean value, the tClass
parameter is set to Boolean.class
. The return value is of the Boolean
object type. The same rules apply to other types of data. If the DP is not supported, a null value is returned.
API description
<T> T getCurrentValue(String dpCode, @NonNull Class<T> tClass);
Request parameter
Parameter | Description |
---|---|
dpCode | The identifier of the DP. |
tClass | The DP value object. Example: Boolean.class , Integer.class , String.class , and JSONBean.class . |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.getCurrentValue("motion_tracking", Boolean.class);
}
Returns current DP data that is not actively reported. The listener IThingIPCPTZListener
returns the query result.
API description
void getCurrentValueFromDevice(String dpCode);
Request parameter
Parameter | Description |
---|---|
dpCode | The identifier of the DP. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.getCurrentValueFromDevice("cruise_status");
}
Returns DP properties. For example, the API method can be used to return properties of Enum DPs. If the DP is not supported, a null value is returned.
API description
<T> T getSchemaProperty(String dpCode, @NonNull Class<T> tClass);
Request parameter
Parameter | Description |
---|---|
dpCode | The identifier of the DP. |
tClass | The DP property object. Example: com.tuya.smart.android.device.bean.EnumSchemaExBean.class , com.thingclips.smart.android.device.bean.ValueSchemaBean.class , and String.class . |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.getSchemaProperty("ptz_control", EnumSchemaBean.class);
}
Sends DPs to an IPC to change the device status or features and control the device.
API description
void publishDps(@NonNull String dpCode, @NonNull Object value, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
dpCode | The identifier of the DP. |
value | The object of the new DP value. |
callback | The callback. |
IResultCallback
API name | Parameter | Return value | Description |
---|---|---|---|
onSuccess | void | void | The success callback. |
onError | String, String | void | The error code and error message. |
The onSuccess()
callback can be executed to process the logic of a successful call. For example, in the callback, the getCurrentValue API method can be used to get the latest DP data and update the UI.
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.publishDps("ptz_stop", true, new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
The listener IThingIPCPTZListener
notifies DP changes when the DP that can be reported is changed. DP changes include but are not limited to:
DP name | Identifier | Data transfer type | Data type | DP property | Remarks |
---|---|---|---|---|---|
PTZ Direction | ptz_control | Send and report (rw) | Enum | Enum values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 | direction : the direction. Valid values:
|
PTZ Stop | ptz_stop | Send and report (rw) | Bool | - |
|
PTZ control is implemented with these DPs. For more information, see PTZ DP encapsulation.
DP name | Identifier | Data transfer type | Data type | DP property | Remarks |
---|---|---|---|---|---|
Zoom Control | zoom_control | Send and report (rw) | Enum | Enum values: 0 and 1 |
Mechanical zoom. Valid values:
|
Stop Zoom | zoom_stop | Send and report (rw) | Bool | true : stop zoom |
Zoom control is implemented with these DPs. For more information, see PTZ DP encapsulation.
DP name | Identifier | Data transfer type | Data type |
---|---|---|---|
Site Favorites | memory_point_set | Send and report (rw) | String |
Site favorites are implemented with these DPs.
API description
void requestCollectionPointList(IThingResultCallback<List<CollectionPointBean>> callback);
Request parameter
Parameter | Description |
---|---|
callback |
|
CollectionPointBean
Parameter | Description |
---|---|
id | The ID of a site favorite. |
devId | The device ID. |
pos | The location information of a preset point. |
name | The name of a preset point. |
pic | The address of an image. |
mpId | The unique ID of a device. The device generates the value. |
encryption | The map that stores the image decryption key. The value is a JSON string. |
For more information about displaying encrypted images of site favorites, see DecryptImageView
.
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.requestCollectionPointList(new IThingResultCallback<List<CollectionPointBean>>() {
@Override
public void onSuccess(List<CollectionPointBean> result) {
}
@Override
public void onError(String errorCode, String errorMessage) {
}
});
}
Adds a site favorite. This API method is not recommended for panoramic auto-patrol and site favorite auto-patrol. Otherwise, the failure callback
will be executed and the error code -2001
will be returned.
API description
void addCollectionPoint(@NonNull String name, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
name | The custom name of the site favorite. |
callback | The callback. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.addCollectionPoint("name", new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
API description
void modifyCollectionPoint(@NonNull CollectionPointBean pointBean, @NonNull String name, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
pointBean | The bean of the site favorite to be modified. |
name | The new name. |
callback | The callback. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.modifyCollectionPoint(collectionPointBean, "NewTitle", new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
API description
void deleteCollectionPoints(@NonNull List<CollectionPointBean> points, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
points | The collection of site favorites to be deleted. |
callback | The callback. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.deleteCollectionPoints(points, new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
API description
void viewCollectionPoint(@NonNull CollectionPointBean collectionPointBean, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
collectionPointBean | The site favorite to be previewed. |
callback | The callback. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.viewCollectionPoint(collectionPointBean, new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
DP name | Identifier | Data transfer type | Data type | DP property | The remarks. |
---|---|---|---|---|---|
Auto-patrol Switch | cruise_switch | Send and report (rw) | Bool | - | - |
Auto-patrol Mode | cruise_mode | Send and report (rw) | Enum | Enum values: 0 and 1 |
0 : panoramic auto-patrol1 : site favorite auto-patrol |
Auto-patrol Status | cruise_status | Send and report (rw) | Enum | Enum values: 0 , 1 , and 2 |
0 : panoramic auto-patrol1 : site favorite auto-patrol2 : non-auto-patrol mode |
Auto-patrol Schedule Setting | cruise_time_mode | Send and report (rw) | Enum | Enum values: 0 and 1 |
0 : all-day auto-patrol1 : custom auto-patrol |
Auto-patrol Schedule | cruise_time | Send and report (rw) | String | Data format: t_start: start time t_end: end time Multiple time values are separated with semicolons ( ; ). |
Auto-patrol is implemented with these DPs. Individual API methods are available to implement the Auto-patrol Mode
and Auto-patrol Schedule Setting
DPs. For more information about other DPs, see PTZ DP encapsulation.
The Auto-patrol Status
DP (cruise_status
) is not actively reported. To get the DP data, call the API method getCurrentValueFromDevice. Other PTZ DPs are standard DPs. You can call the API method getCurrentValue to get the current values of these standard DPs.
Sets the auto-patrol mode. The DP identifier is cruise_mode
. During the setting of site favorite auto-patrol, if the number of site favorites is less than2
, the error code -2002 will be returned.
API description
void setCruiseMode(String mode, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
mode | The auto-patrol mode. Valid values:0 : panoramic auto-patrol1 : site favorite auto-patrol |
callback | The callback. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.setCruiseMode("0", new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
Sets the auto-patrol mode. The DPs cruise_time_mode
and cruise_time
are used. To set an auto-patrol schedule, use cruise_time_mode
to enable the auto-patrol schedule and then use cruise_time
to set the scheduled time.
API description
void setCruiseTiming(@NonNull String startTime, @NonNull String endTime, IResultCallback callback);
Request parameter
Parameter | Description |
---|---|
startTime | The start time. Format: 00:00 . |
endTime | The end time. Format: 00:00 . |
callback | The callback. |
Example
if (thingIPCPTZ != null) {
thingIPCPTZ.setCruiseTiming("08:00", "10:00", new IResultCallback() {
@Override
public void onError(String code, String error) {
}
@Override
public void onSuccess() {
}
});
}
DP name | Identifier | Data transfer type | Data type |
---|---|---|---|
Motion Tracking Switch | motion_tracking | Send and report (rw) | Boolean |
Motion Tracking Switch is implemented with these DPs. For more information, see PTZ DP encapsulation.
DP name | Identifier | Data transfer type | Data type | DP property | The remarks. |
---|---|---|---|---|---|
Set Preset Point | ipc_preset_set | Send and report (rw) | Enum | Enum values: 1 , 2 , 3 , and 4 |
Preset points 1 , 2 , 3 , and 4 |
Preset points are implemented with these DPs. For more information, see PTZ DP encapsulation.
The following table shows the error codes of PTZ features.
Error codes | Description |
---|---|
-1431 | Site favorites cannot be added during panoramic auto-patrol and site favorite auto-patrol. |
-1432 | The number of site favorites is less than 2 so that site favorite auto-patrol cannot be enabled. |
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback