Mbed OS 文档翻译 之 参考(API(驱动(DigitalIn)))

DigitalIn

使用 DigitalIn 接口读取数字输入引脚的值。逻辑电平为 1 或 0。

您可以使用任何编号的 Arm Mbed 引脚可以用作 DigitalIn。

DigitalIn 类参考

API 摘要

mbed::DigitalIn 类参考

公共成员函数
  DigitalIn (PinName pin)
  DigitalIn (PinName pin, PinMode mode)
int  read ()
void  mode (PinMode pull)
int  is_connected ()
  operator int ()
受保护的属性
gpio_t  gpio

DigitalIn hello, world

main.cpp                                                                                                                                               导入到 Mbed IDE

/* mbed Example Program
 * Copyright (c) 2006-2014 ARM Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#include "mbed.h"

DigitalIn  mypin(SW2); // change this to the button on your board
DigitalOut myled(LED1);

int main()
{
    // check mypin object is initialized and connected to a pin
    if(mypin.is_connected()) {
        printf("mypin is connected and initialized! \n\r");
    }
    
    // Optional: set mode as PullUp/PullDown/PullNone/OpenDrain
    mypin.mode(PullNone); 
    
    // press the button and see the console / led change
    while(1) {
        printf("mypin has value : %d \n\r", mypin.read());
        myled = mypin; // toggle led based on value of button
        wait(0.25);
    }
}

DigitalIn 示例

要处理中断,请参阅 InterruptIn。

逻辑函数的示例 - 布尔逻辑 NOT,AND,OR,XOR:

main.cpp                                                                                                                                              导入到 Mbed IDE

#include "mbed.h"
 
DigitalIn a(D0);
DigitalIn b(D1);
DigitalOut z_not(LED1);
DigitalOut z_and(LED2);
DigitalOut z_or(LED3);
DigitalOut z_xor(LED4);
 
int main() {
    while(1) {
        z_not = !a;
        z_and = a && b;
        z_or = a || b;
        z_xor = a ^ b;
    }
}

  • InterruptIn API 参考。

你可能感兴趣的:(Mbed,OS)