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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! Adds important functionalities
use Pin;
/// Represents a single device of any type; GPIO-based, SPI-based, I2C-based,
/// etc. It defines the basic services applicable to all devices
/// Adds edge-detected `when_activated` and `when_deactivated`
/// events to a device based on changes to the `is_active`
/// property common to all devices.
/// Represents a device composed of multiple devices like simple HATs,
/// H-bridge motor controllers, robots composed of multiple motors, etc.