TTN data logger made with FiPy, MQTT, InfluxDB, MongoDB and Grafana.
TTN (The Things Network) is building a global open LoRaWAN™ network.
The ttnlogger
program can be invoked in two ways. Either it obtains the TTN
credentials as well as InfluxDB database and measurement as four command-line options
or it obtains the parameters from respective environment variables.
With the -s
option the InfluxDB agent database as well as the measurement are being
derived from the TTN dev_id
while -d
and -m
are being ignored.
In case of using it within the Hiveeyes.org environment please follow this scheme for the dev_id
:
hiveeyes-USER-LOCATION-NAMEOFHIVE
and replace upper case strings with your individual lower case namings without additional dashes)
The -n
option disables saving geolocations of receiving gateways into the database.
ttnlogger -i "<ttn_app_id>" -k "<ttn_access_key>" [-s] [-d "<influxdb_database>"] [-m "<influxdb_measurement>"]
export TTN_APP_ID="testdrive" export TTN_ACCESS_KEY="ttn-account-v2.UcOZ3_gRRVbzsJ1lR7WfuINLN_DKIlc9oKvgukHPGck" export INFLUXDB_DATABASE="test" export INFLUXDB_MEASUREMENT="data" ttnlogger
git clone https://github.com/daq-tools/ttnlogger /opt/ttnlogger /opt/ttnlogger virtualenv --python=python3 . python setup.py develop
Run as systemd unit ():
cp etc/default/ttnlogger /etc/default/ ln -sr etc/systemd/ttnlogger.service /usr/lib/systemd/system/ # Edit configuration file nano /etc/default/ttnlogger systemctl enable ttnlogger systemctl start ttnlogger systemctl status ttnlogger journalctl -u ttnlogger -f