Skip to content

Instantly share code, notes, and snippets.

View SimeonSimeonovIvanov's full-sized avatar
🏠
Working from home

Simeon Ivanov SimeonSimeonovIvanov

🏠
Working from home
View GitHub Profile
@SimeonSimeonovIvanov
SimeonSimeonovIvanov / pid.cpp
Created May 14, 2017 22:21 — 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