ina260-zmq-publisher/README.md

25 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2023-07-15 15:53:29 +02:00
## ina260-zmq-publisher
2023-07-14 16:07:45 +00:00
2023-07-16 17:38:04 +02:00
A ZeroMQ-based power monitoring publisher for the ina260 chip.\
This repository provides:
2023-07-18 13:06:53 +02:00
- `publisher`: that collects power measurements from the ina260 using the dedicated driver with a thread that continuously publish the power measurements data using the ZeroMQ pub/sub communication pattern
2023-07-16 17:38:04 +02:00
- `subscriber`: a program that collects the measurements published by the publishers (used to create a broker, frontend etc...)
2023-07-15 15:53:29 +02:00
2023-07-16 10:59:05 +02:00
*Note: Nothing is stored locally! Everything that is published by the publishers is either received by the subscriber or lost.*
2023-07-15 15:53:29 +02:00
### Compilation
2023-07-16 17:38:04 +02:00
The only dependency is [ZeroMQ](https://zeromq.org/). After installing the ZeroMQ library, running `$ make` will generate all the executables.
2023-07-15 15:53:29 +02:00
2023-07-15 19:31:17 +02:00
### Deployment
2023-07-16 11:00:03 +02:00
1. Update `config.mk` according to your needs \*\***IMPORTANT**\*\*
2023-07-16 17:38:04 +02:00
2. On the nodes equiped with the ina260 chips and its driver, run `make publish`
2023-07-16 17:26:03 +02:00
3. On the node that collect the measurements (broker, frontend etc..) run `make subscribe`
### Notes
- Message format used in ZeroMQ exchanges:
2023-07-16 17:38:04 +02:00
L1: <ZMQ_TOKEN>\
L2: <KEY>\
L3: <CLIENT>\
L4: <INTERVAL>\
L5-n: <CSV-DATA>