Multible types in preArgs

How do I specify multible types? I’m trying the following, but it only sends “s”

preArgs:
{
“type”: “si”,
“value”: “/meters/8 1”
}

Love your work Jean :slight_smile:

This way :

[
  {"type": "s", "value": "/meters/8"},
  {"type": "f", "value": 1}
]
1 Like