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.
Dependencies: DAQ mbed-rtos mbed
DAQ/Measurement.h
- Committer:
- leysenkobe
- Date:
- 2014-04-23
- Revision:
- 0:6ee88b4152dc
File content as of revision 0:6ee88b4152dc:
#ifndef MEASUREMENT_H #define MEASUREMENT_H class Measurement { private: int *punten; bool *puntEnabled; public: Measurement(void); ~Measurement(void); //GETTERS int getPunt(int channel); bool Enabled(int channel); //SETTERS void setPunt(int channel,int punt); void Enable(int channel); void Disable(int channel); }; #endif