Can I update multiple virtual pin values at once?

Currently, several virtual pin values are being updated one by one as shown below [NOW], but is it not possible to update them all at once as shown below [EXAMPLE]?

Hardware : MCU(ARM M0 32bit) + ESP8266 ( interface : UART )

===== NOW =====
[2023-07-05 13:23:53.160] AT+CIPSEND=1,11
[2023-07-05 13:23:53.351] OK
[2023-07-05 13:23:53.351] > 
[2023-07-05 13:23:53.351] <14><00><03><00><06>vw<00>2<00>3
[2023-07-05 13:23:53.558] Recv 11 bytes
[2023-07-05 13:23:53.781] SEND OK

[2023-07-05 13:23:53.860] AT+CIPSEND=1,11
[2023-07-05 13:23:54.051] OK
[2023-07-05 13:23:54.051] > 
[2023-07-05 13:23:54.051] <14><00><04><00><06>vw<00>3<00>7
[2023-07-05 13:23:54.258] Recv 11 bytes
[2023-07-05 13:23:54.514] SEND OK

[2023-07-05 13:23:54.545] AT+CIPSEND=1,14
[2023-07-05 13:23:54.765] OK
[2023-07-05 13:23:54.765] >
[2023-07-05 13:23:54.765] <14><00><05><00><09>vw<00>4<00>3001
[2023-07-05 13:23:54.956] Recv 14 bytes
[2023-07-05 13:23:55.227] SEND OK

[2023-07-05 13:23:55.261] AT+CIPSEND=1,11
[2023-07-05 13:23:55.452] OK
[2023-07-05 13:23:55.452] > 
[2023-07-05 13:23:55.452] <14><00><06><00><06>vw<00>5<00>0
[2023-07-05 13:23:55.659] Recv 11 bytes
[2023-07-05 13:23:57.029] SEND OK

[2023-07-05 13:23:57.361] AT+CIPSEND=1,11
[2023-07-05 13:23:57.553] OK
[2023-07-05 13:23:57.553] >
[2023-07-05 13:23:57.553] <14><00><07><00><06>vw<00>8<00>0
[2023-07-05 13:23:55.659] Recv 11 bytes
[2023-07-05 13:23:57.029] SEND OK



===== EXAMPLE =====
[2023-07-05 13:23:53.160] AT+CIPSEND=1,23
[2023-07-05 13:23:53.351] OK
[2023-07-05 13:23:53.351] > 
[2023-07-05 13:23:53.351] <14><00><03><00><06>vw<00>2<00>3<00><14><00><04><00><06>vw<00>3<00>7
[2023-07-05 13:23:53.558] Recv 11 bytes
[2023-07-05 13:23:53.781] SEND OK

Please edit your post and add triple backticks at the begin8ng and end of your “now” and “example” serial output text so that it displays correctly.
Triple backticks look like this…
```

You also need to post the code that you’ve used to create the “now” output (also correctly formatted with triple backticks) and provide details of the hardware you are using.

Some info about the reasoning behind your question would also help.

Pete.

Hardware Infomation : MCU(ARM M0 32bit) + ESP8266 ( interface : UART )

Okay, I’ll wait until you’ve provided the code before commenting further.

Pete.

What are trying to achieve? I mean why do you need to send commands in batch?

Our device uses batteries. So I want to reduce the time to use the wifi module. Now it takes 5 seconds to send 7 of virtual pin values. If I send it all at once, 1 second would be enough.
Also, when reading values, I can read multiple values at once, so I want to see if there is a way to update multiple values at once.