Skip to content

Instantly share code, notes, and snippets.

View rs1990's full-sized avatar

Raghavendra Sriram rs1990

View GitHub Profile
@rs1990
rs1990 / pid.cpp
Created September 20, 2016 23:49 — forked from bradley219/.gitignore
PID C++ implementation
#ifndef _PID_SOURCE_
#define _PID_SOURCE_
#include <iostream>
#include <cmath>
#include "pid.h"
using namespace std;
class PIDImpl