The logger type is chosen at run time with command line arguments (-s or --sensor). It can be T for unipolar torque, T2 for bipolar torque, and W for rotational speed.
...
...
@@ -92,8 +93,9 @@ See [plotter_single.py](https://gitlab.com/kakila/windturbine_HSR/blob/master/ex
The plotter type is chosen at run time with command line arguments (-s or --sensor). It can be T for uni/bipolar torque and W for rotational speed.
...
...
@@ -101,4 +103,13 @@ The plots use deques to show the data, the argument -d or --dequesize set the le
For example if a logger publishes data at 10Hz a deque with size 100 will plot of the last 10 seconds of data.
The plotters can be used in the Raspberry Pi, but at risk of reducing the synchronization of the measured and logged data.
We also observed that when all loggers and plotters are active the Pi overheats.
\ No newline at end of file
We also observed that when all loggers and plotters are active the Pi overheats.
To plot from a remote computer (assuming that the ip of the raspberry is reachable and that ports are open. These assumptions are OK if the pia nd the plotting computer are in the same LAN subnet) use the option -H or --hostname. For exmaple
```
python plotter_single.py -s W -d 500 -H 192.168.178.29
```
will plot the data published by a rotation sensor on a machine with ip 192.168.178.29