byteplug/controller/
sensor.rs

1// Copyright (c) 2020 - Jonathan De Wachter
2//
3// This source file is part of the Byteplug framework which is released under the MIT license.
4// Please refer to the LICENSE file that can be found at the root of the project directory.
5//
6// Written by Jonathan De Wachter <dewachter.jonathan@gmail.com>, January 2020
7
8//! Give access to the real-time state of the sensors.
9//!
10//! Additional documentation is to be written here.
11
12/// # Brief description
13///
14/// The **Component struct** is not documented yet. Pull requests are welcome.
15///
16pub struct Accelerometer {
17}
18
19/// # Brief description.
20///
21/// Long description.
22///
23pub struct Gyroscope {
24}
25
26/// # Brief description.
27///
28/// Long description.
29///
30pub struct Magnetometer {
31}
32
33/// # Brief description.
34///
35/// Long description.
36///
37pub struct Gravity {
38}
39
40/// # Brief description.
41///
42/// Long description.
43///
44pub struct Orientation {
45}