ina260-zmq-publisher/config.mk

20 lines
762 B
Makefile
Raw Normal View History

2023-07-15 13:54:03 +02:00
##### ZeroMQ
2023-07-15 19:12:13 +02:00
ZMQ_PORT=5556
SUBSCRIBER_ADDR=localhost
2023-07-15 13:54:03 +02:00
##### Logger/Publisher
2023-07-15 16:00:04 +02:00
# LOGGERS_DIR will contains all the data generated by the loggers
# a.k.a the ina260 power measurements
2023-07-15 13:54:03 +02:00
LOGGERS_DIR=./logs
2023-07-15 19:45:32 +02:00
# SUBSCRIBER_DIR will contain all the measurments
# received from the publishers
SUBSCRIBER_DIR=./data
2023-07-15 16:00:04 +02:00
# LOG_INTERVAL determined the duration
# of a logging period. At the end of a logging period,
# a file with all the power measurements is generated by the logger in LOGGERS_DIR
# this file is then transmitted by the publisher to the subscribers
2023-07-15 14:36:48 +02:00
LOG_INTERVAL=30
2023-07-15 16:00:04 +02:00
# KEY is attached to all the messages published by the node
# It allows you to filter the messages received on the client
# if you are using multiple monitoring nodes (multiple publishers)
2023-07-15 14:36:48 +02:00
KEY=node1