I am currently developing a Race Timing Application using IoT Connect with HTTP POST. The application is working quite well but I need help to configure reader settings for not losing any tag detection. I will be using FX7500 for road bicycle racing, so I will need to detect about 40-50 tags at the same time and they could run at 60km/h .
Here is a json configuration I sent to /cloud/mode :
{
"type":"CUSTOM" ,
"transmitPower" : 29.2 ,
"antennaStopCondition":{
"type":"DURATION",
"value":25
} ,
"delayBetweenAntennaCycles" : {
"duration":0,
"type":"DISABLED"
} ,
"reportFilter":{
"type":"RADIO_WIDE",
"duration":10
} ,
"tagMetaData":[
"ANTENNA"
]
}
First, I noticed that parameter delayBetweenAntennaCycles seems to be ignored (It does not appear when I make a GET request at /cloud/mode).
Secondly, I think I should use queries to optimize detection but I don't know exactly which.
0 Replies