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
FROM mcr.microsoft.com/devcontainers/base:jammy

RUN apt-get update && apt-get install -y \
  pkg-config \
  bash-completion \
  && rm -rf /var/lib/apt/lists/*

USER vscode
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

RUN . "$HOME/.cargo/env" && cargo install \
  cargo-generate

RUN . "$HOME/.cargo/env" \
  && rustup completions bash | sudo tee /etc/bash_completion.d/rustup \
  && rustup completions bash cargo | sudo tee /etc/bash_completion.d/cargo