Skip to content

Instantly share code, notes, and snippets.

View azerimaker's full-sized avatar
🐧
Busy

Orkhan Amiraslan azerimaker

🐧
Busy
View GitHub Profile
// Arduino DatatypeSize v2 - Display information about data types used in Arduino
// Created by Michael 'TeX' Hex - http://www.texhex.info/
//
// Full list of all data types:
// http://arduino.cc/en/Reference/HomePage -> Section "Data Types"
//
// Additonal references:
// http://www.arduino.cc/playground/Code/DatatypePractices
// http://arduino.cc/en/Reference/VariableDeclaration
//
@azerimaker
azerimaker / PID.ino
Last active January 28, 2019 09:07 — forked from ivanseidel/PID.ino
// (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;