-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSailstate.h
More file actions
26 lines (21 loc) · 770 Bytes
/
Sailstate.h
File metadata and controls
26 lines (21 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/************************************************************************/
/* */
/* P R O J E K T A V A L O N */
/* */
/* Shipstate.h State of the Sail */
/* */
/* Author Stefan Wismer */
/* wismerst@student.ethz.ch */
/* */
/************************************************************************/
#ifndef SAIL_STATE_H
#define SAIL_STATE_H
#include <DDXStore.h>
#include <DDXVariable.h>
DDX_STORE_TYPE(Sailstate,
struct {
float degrees_sail; // Encoder Value of the Sail (degrees)
float ref_sail; // Refernece Value of the sail
}
);
#endif // SAIL_STATE_H