Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
pot/pot.h
- Committer:
- dlweakley
- Date:
- 2016-11-11
- Revision:
- 8:2abfdbf5a3b8
- Child:
- 11:ed9539245ea0
File content as of revision 8:2abfdbf5a3b8:
#ifndef MBED_POT_H
#define MBED_POT_H
#include "mbed.h"
class Pot {
public:
Pot(PinName angle);
float get_angle();
private:
AnalogIn angle;
};
#endif