Valve state control

Set Open/Close state short cycle

This command sets up the valve so it alternates between its two states (open/close) for a certain time interval. The whole process is cyclical, meaning it can go indefinitely depending on how it is set up or the valve can move from one state to the other and remain in it.

This command is mainly useful for Firmware Version ≀ 1.4 where the extended cycle command below is not available.

The command explanation is in the table below.

Example command: 0x010203

02[HEX] = 02[DEC] -> the valve will be opened for 2 minutes

03[HEX] = 03[DEC] -> the valve will be closed for 3 minutes

At this point it will open again for 2 minutes, close for 3 after, etc.

Example command: 0x010200

02[HEX] = 02[DEC] -> the valve will be opened for 2 minutes

00[HEX] = 00[DEC] -> the valve will be closed for 0 minutes (never closed)

In this case the command will keep the valve permanently open until another command instructs it to close.

Example command: 0x010003

00[HEX] = 00[DEC] -> the valve will be opened for 0 minutes (never opened)

03[HEX] = 03[DEC] -> the valve will be closed for 3 minutes

In this case the command will keep the valve permanently closed until another command instructs it to open.

Set Open/Close state extended cycle

This command is similar to the 01 command above, however it support extended timings. These timings are also reported in the device long keep-alive data. When some of the timings parameter is greater or equal to 255, it's reported as 255 in the long keep-alive data.

We recommend using this command for Firmware Versions β‰₯1.5 as it has the same functionality as the 01 command however it offers extended timings.

The command explanation is in the table below.

Value of 0 for the open/close time isn't accepted by the device.

Example command: 0x0D012C2760

012C[HEX] = 300[DEC] = 300 minutes = 5 hours -> the valve will be opened for 5 hours

2760[HEX] = 10 080[DEC] = 10 080 minutes = 7 days-> the valve will be closed for 7 days

So, the valve will open for 5 hours after seven days have elapsed, indefinitely

Single time limited valve state change

This command is used to change the valve state for a defined time and leave it at the opposite after.

If you have used any of the commands above to cyclically open/close the valve, running this one will stop the cycle.

The command explanation is in the table below.

Example command: 0x1401000A

01[HEX] = 1[DEC] opens the valve for 000A[HEX] = 10[DEC] = 10 minutes and leaves it closed after

Example command: 0x14000258

00[HEX] = 0[DEC] closes the valve for 0258[HEX] = 600[DEC] = 600 minutes = 6 hours and leaves it open after

General valve state control

Server send that command to simply open or close the valve forever.

If you have used any of the commands above to cyclically open/close the valve, running this one will stop the cycle.

The command explanation is in the table below.

Any value for the command parameter greater than 01[HEX] opens the valve.

Example command: 0x0C00 -> Close the valve

Example command: 0x0C01 -> Open the valve

Last updated