@@ -27,41 +27,35 @@ public static void Main()
27
27
28
28
// F4-Discovery -> LD4 LED is @ PD12
29
29
// F429I-Discovery -> LD3 is @ PG13
30
- //_greenLED = gpioController.OpenPin(PinNumber('G', 13));
30
+ //_greenLED = gpioController.OpenPin(PinNumber('G', 13), PinMode.Output) );
31
31
// F769I-DISCO -> LED2_GREEN is @ PJ5
32
- //_greenLED = gpioController.OpenPin(PinNumber('J', 5));
32
+ //_greenLED = gpioController.OpenPin(PinNumber('J', 5), PinMode.Output) );
33
33
// F746ZG-NUCLEO -> Off board LED is @ PC10
34
34
// TI CC13x2 Launchpad: DIO_07 it's the green LED
35
- _greenLED = gpioController . OpenPin ( 7 ) ;
36
-
37
- _greenLED . SetDriveMode ( PinMode . Output ) ;
35
+ _greenLED = gpioController . OpenPin ( 7 , PinMode . Output ) ;
38
36
39
37
///////////////////
40
38
// setup red LED //
41
39
///////////////////
42
-
40
+
43
41
// F4-Discovery -> LD5 is @ PD14
44
42
// F429I-Discovery -> LD4 is @ PG14
45
- //_redLED = gpioController.OpenPin(PinNumber('G', 14));
43
+ //_redLED = gpioController.OpenPin(PinNumber('G', 14), PinMode.Output) );
46
44
// F769I-DISCO -> LED2_RED is @ PJ13
47
- //_redLED = gpioController.OpenPin(PinNumber('J', 13));
45
+ //_redLED = gpioController.OpenPin(PinNumber('J', 13), PinMode.Output) );
48
46
// TI CC13x2 Launchpad: DIO_06 it's the red LED
49
- _redLED = gpioController . OpenPin ( 6 ) ;
50
-
51
- _redLED . SetDriveMode ( PinMode . Output ) ;
47
+ _redLED = gpioController . OpenPin ( 6 , PinMode . Output ) ;
52
48
53
49
///////////////////////
54
50
// setup user button //
55
51
///////////////////////
56
52
57
53
// F4-Discovery -> USER_BUTTON is @ PA0 (input only)
58
54
// F769I-DISCO -> USER_BUTTON is @ PA0 (input only)
59
- //_userButton = gpioController.OpenPin(PinNumber('A', 0));
60
- //_userButton.SetDriveMode(PinMode.Input);
55
+ //_userButton = gpioController.OpenPin(PinNumber('A', 0), PinMode.Output));
61
56
62
57
// TI CC13x2 Launchpad: DIO_15 it's BTN-1 (input requiring pull-up)
63
- _userButton = gpioController . OpenPin ( 15 ) ;
64
- _userButton . SetDriveMode ( PinMode . InputPullUp ) ;
58
+ _userButton = gpioController . OpenPin ( 15 , PinMode . Input ) ;
65
59
66
60
_userButton . ValueChanged += UserButton_ValueChanged ;
67
61
@@ -70,12 +64,10 @@ public static void Main()
70
64
//////////////////////
71
65
72
66
// F769I-DISCO -> using PA7 (input only)
73
- //_exposedPad = gpioController.OpenPin(PinNumber('A', 7));
74
- //_exposedPad.SetDriveMode(PinMode.InputPullUp);
67
+ //_exposedPad = gpioController.OpenPin(PinNumber('A', 7), PinMode.Output));
75
68
76
69
// TI CC13x2 Launchpad: DIO_14 it's BTN-2 (input requiring pull-up)
77
- _exposedPad = gpioController . OpenPin ( 14 ) ;
78
- _exposedPad . SetDriveMode ( PinMode . InputPullUp ) ;
70
+ _exposedPad = gpioController . OpenPin ( 14 , PinMode . Input ) ;
79
71
80
72
// add a debounce timeout
81
73
_exposedPad . DebounceTimeout = new TimeSpan ( 0 , 0 , 0 , 0 , 100 ) ;
0 commit comments