2023-07-15 15:53:29 +02:00
|
|
|
## ina260-zmq-publisher
|
2023-07-14 16:07:45 +00:00
|
|
|
|
2023-07-15 15:53:29 +02:00
|
|
|
A ZeroMQ-based power monitoring publisher for the ina260 chip. This repository provides:
|
|
|
|
|
2023-07-16 10:29:47 +02:00
|
|
|
- `logger`: that collects power measurements from the ina260 using the dedicated driver
|
2023-07-15 19:31:17 +02:00
|
|
|
- `publisher`: that continuously publish using the ZeroMQ pub/sub communication pattern
|
|
|
|
- `subscriber`: a client that collect the measurements from the publishers (broker, frontend etc...)
|
2023-07-15 15:53:29 +02:00
|
|
|
|
|
|
|
*Note: Nothing is stored locally! Everything that is published by the publisher is either receive by a subscriber or lost.*
|
|
|
|
|
|
|
|
### Compilation
|
2023-07-15 19:31:17 +02:00
|
|
|
The only dependency is [ZeroMQ](https://zeromq.org/). After installing the ZeroMQ library, the following will generate all the executables:
|
2023-07-15 15:53:29 +02:00
|
|
|
|
2023-07-15 19:31:17 +02:00
|
|
|
$ make
|
2023-07-15 15:53:29 +02:00
|
|
|
|
2023-07-15 19:31:17 +02:00
|
|
|
### Deployment
|
|
|
|
1. Update `config.mk` according to you needs
|
|
|
|
2. On the nodes equiped with the ina260 chips:
|
|
|
|
|
|
|
|
$ make publish
|
|
|
|
|
|
|
|
3. One the node that collect the measurements (broker, frontend etc..):
|
|
|
|
|
|
|
|
$ make subscribe
|