*sensors()
Starts a sensors block.
Syntax
*sensors (card_image_name, ?idpool_name?)
Type
HyperMesh Template Command
Description
Starts a sensors block. Sensors with a card image matching the specified card image name are considered for the block.
This command must be accompanied by an *output() command at the end of the block.
Inputs
- card_image_name
- A 32-character string enclosed in double quotes that defines the card image name of the sensor. If specified as double quotes "", all sensors are considered for the block.
- idpool_name
- An optional 32-character string enclosed in double quotes that defines the name of the ID pool that the sensor belongs to. If not needed, use double quotes "" or omit the argument.
Example
To write out all sensors with the format:
*sensor(id,"name")
*sensors("","")
*format()
*string("*sensor(")
*field(integer,id,0)
*string(",")
*field(quotedstring,name,0)
*string(")")
*end()
*output()