New version of PANS looks great and more stable and thank for this version. Web interface works great but still need some improvements like recording positions , auto ranging for anchors…
But i still have a problem to get tag positions on highest update rate and record. There is no sample to get this in c or python.
Is there a documentation to use dwm-daemon to get all tag positions from gateway ? When i tried to get from shell it’s still not event close to 10hz.
You can use something like this on the Raspberry PI to log all the data with some rough timestamps:
$ sudo apt-get install moreutils
$ mosquitto_sub -v -h localhost -t ‘dwm/#’ | ts ‘[%Y-%m-%d %H:%M:%S]’
Please check also the range between the Tag and the Gateway. When correctly installed, the 10 Hz should work with reception rate better than 99%.
I wrote small python script to get MQTT messages and save them in to mysql database.
You can modify this.
import mysql.connector
import paho.mqtt.subscribe as subscribe
import json
import datetime
import random