diff --git a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py index 7e72f10049b6f395fef3c6624d9ab7ee03953c09..441ef50f02110eb53b4a7f8cbe28fa906d0ba8ca 100644 --- a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py +++ b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py @@ -1,6 +1,7 @@ # Create shortcuts for our devices pcc = DeviceProxy("LTS/PCC/1") sdp = DeviceProxy("LTS/SDP/1") +statistics = DeviceProxy("LTS/Statistics/1") # Put them in a list in case one wants to iterate -devices = [pcc, sdp] +devices = [pcc, sdp, statistics]