Skip to content

WildGenie/another-pid

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

another-pid

Just Another PID controller.

Usage

Initialize the PID controller.

from another_pid import PID

pid = PID(0.5, 0.8, 1.2, time_interval=0.5, set_point=10)

Use the PID controller in a system.

# initial value.
value = 0

while True:
  # use the value in a system.
  value = a_system(value)
  
  value = pid.next_value(value)

About

Another PID controller

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%