only:pid example
This commit is contained in:
parent
2378f73d5f
commit
4f485028f9
|
@ -0,0 +1,7 @@
|
|||
industrialPid = IndustrialPid.new(1, 1, 0, 0, 0.5)
|
||||
industrialControlLoopOutput = industrialPid:get(10, 1)
|
||||
print('industrialControlLoopOutput: ' ..industrialControlLoopOutput)
|
||||
|
||||
pid = Pid.new(1, 1, 0, 0, 0.5)
|
||||
controlLoopOutput = pid:get(10, 1)
|
||||
print('Control Output: ' ..controlLoopOutput)
|
Loading…
Reference in New Issue