Skip to content

Instantly share code, notes, and snippets.

View hitalos's full-sized avatar

Hítalo Silva hitalos

View GitHub Profile
@hitalos
hitalos / PID.ino
Created June 22, 2016 02:08 — forked from ivanseidel/PID.ino
Simple PID Class for Arduino Projects
// (Really Simple) PID Class by Ivan Seidel
// GitHub.com/ivanseidel
// Use as you want. Leave credits
class PID{
public:
double error;
double sample;
double lastSample;