MySensors Library & Examples  2.3.2
nrf5_wiring_constants.h
1 /*
2  * nRF5 output modes
3  */
4 // Standard 0, Standard 1
5 #ifndef OUTPUT_S0S1
6 #define OUTPUT_S0S1 (0x10)
7 #endif
8 
9 // High Drive 0, Standard 1
10 #ifndef OUTPUT_H0S1
11 #define OUTPUT_H0S1 (0x11)
12 #endif
13 
14 // Standard 0, High Drive 1
15 #ifndef OUTPUT_S0H1
16 #define OUTPUT_S0H1 (0x12)
17 #endif
18 
19 // High Drive both
20 #ifndef OUTPUT_H0H1
21 #define OUTPUT_H0H1 (0x13)
22 #endif
23 
24 // Disconnected 0, Standard 1
25 #ifndef OUTPUT_D0S1
26 #define OUTPUT_D0S1 (0x14)
27 #endif
28 
29 // Disconnected 0, High Drive 1
30 #ifndef OUTPUT_D0H1
31 #define OUTPUT_D0H1 (0x15)
32 #endif
33 
34 // Standard 0, Disconnected 1
35 #ifndef OUTPUT_S0D1
36 #define OUTPUT_S0D1 (0x16)
37 #endif
38 
39 // High Drive 0, Disconnected 1
40 #ifndef OUTPUT_H0D1
41 #define OUTPUT_H0D1 (0x17)
42 #endif