Updated on 2022-02-24 GMT+08:00

Binding Configuration

API Function

This API is used to configure the IP address and port number of the IoT platform before binding a device.

API Description

1
public static boolean setConfig(int key, String value);

Class

BindConfig

Parameter Description

Parameter

Mandatory or Optional

Type

Description

key

Mandatory

int

Specifies the configuration items of device binding.

  • IP address: BindConfig.BIND_CONFIG_ADDR
  • Port number: BindConfig.BIND_CONFIG_PORT

value

Mandatory

String

Specifies the value of the configuration item.

  • IP address: IP address of the IoT platform to which the AgentLite is connected
  • Port number: 8943

Return Value

Return Value

Description

true

Success

false

Failure

Output

N/A

Example

1
2
BindConfig.setConfig(BindConfig.BIND_CONFIG_ADDR, "127.0.0.1");
BindConfig.setConfig(BindConfig.BIND_CONFIG_PORT, "8943");