コード例 #1
0
 public static extern void bcm2835_gpio_set_pud(RPiGPIOPin pin, PullUpDownControl pud);
コード例 #2
0
ファイル: RaspPin.cs プロジェクト: komornik/RaspiSharp
 public RaspPin(RPiGPIOPin PhysicalPin, GPIOFunctionSelect InitialFunction = GPIOFunctionSelect.Function_INPT, PullUpDownControl InitialPullUpDown = PullUpDownControl.Pull_OFF)
 {
     currentPin = PhysicalPin;
     Function   = InitialFunction;
     PullUpDown = InitialPullUpDown;
 }
コード例 #3
0
 public static extern void bcm2835_gpio_pud(PullUpDownControl pud);