Inverted Pendulum / Mbed 2 deprecated IP-Interface

Dependencies:   mbed QEI

pot/pot.cpp

Committer:
Snay22
Date:
2016-11-14
Revision:
10:4dd96f046784
Parent:
8:2abfdbf5a3b8
Child:
12:65392ee77300

File content as of revision 10:4dd96f046784:

#include "mbed.h"
#include "pot.h"

Pot::Pot(PinName _pin) : angle(_pin) {
    
}

float Pot::get_angle(){
    float a = angle.read()*340; 
    return a;  
}