Skip to content

topermaper/loop-controller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pid Loop Controller

A PID loop controller for managing execution intervals.

Installation

You can install the package via pip:

pip install loop-controller

Usage

from pid_loop_controller import PidLoopController

# Your function to be called in the loop
def my_function():
    print("Function called")

controller = PidLoopController(my_function, [], 1.0)
controller.set_controller_parameters(1.0, 0.1, 0.01)
controller.start()

About

Loop controllers for managing execution intervals

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages