aboutsummaryrefslogtreecommitdiff
path: root/gyroscope.h
blob: 20ef3738e5a64672fbd985660456513f37680513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GYROSCOPE_H
#define GYROSCOPE_H

#include <stdbool.h>
#include <stdint.h>

void gyroscopeInit ();
void gyroscopeStart ();
bool gyroscopeRead ();
volatile const int16_t *gyroscopeGet ();

#endif /* GYROSCOPE_H */