advanced-pid 0.2.3

An advanced PID control library implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: '3'
services:
  advanced-pid-rs:
    build:
      context: .
      dockerfile: Dockerfile
    volumes:
      # Working
      - ..:/workspaces/advanced-pid-rs:cached
      # device access
      - /dev:/dev
    working_dir: /workspaces/advanced-pid-rs
    tty: true
    command: sleep inf
    # device access
    privileged: true