Skip to content
Snippets Groups Projects
Commit 7486a175 authored by Anders Blomdell's avatar Anders Blomdell
Browse files

Merge branch 'master' of gitlab.control.lth.se:anders_blomdell/moberg

parents 178ff3d9 2dffac9d
Branches
Tags v0.9.8
No related merge requests found
#include <moberg.h>
int main(int argc, char *argv)
{
struct moberg *moberg = moberg_new();
for (int i = 0 ; i < 500 ; i++) {
struct moberg_analog_in analog_in;
struct moberg_status status;
double value;
status = moberg_analog_in_open(moberg, i, &analog_in);
if (moberg_OK(status)) {
status = analog_in.read(analog_in.context, &value);
if (moberg_OK(status)) {
printf("%03d: %f\n", i, value);
}
}
status = moberg_analog_in_close(moberg, i, analog_in);
}
moberg_free(moberg);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment