zoukankan      html  css  js  c++  java
  • 用Tinkercad学arduino之按钮控制亮灯 下拉电阻

    项目地址:https://www.tinkercad.com/things/fxAUiYvu7aG

    /*
      Button
      Turns on and off a light emitting diode(LED)
      connected to digital  pin 13, when pressing a
      pushbutton attached to pin 2.
    
       The circuit:
      * LED attached from pin 13 to ground
      * pushbutton attached to pin 2 from +5V
      * 10K resistor attached to pin 2 from ground
      * Note: on most Arduinos there is already an LED
      on the board  attached to pin 13.
    
      created 2005  by DojoDave <http://www.0j0.org>
    
      modified 30 Aug 2011  by Tom Igoe
    
      This example code is in the public domain.
      http://www.arduino.cc/en/Tutorial/Button
    */
    
    int buttonState = 0;
    
    void setup()
    {
      pinMode(2, INPUT);
      pinMode(13, OUTPUT);
    }
    
    void loop()
    {
      // read the state of the pushbutton value
      buttonState = digitalRead(2);
      // check if pushbutton is pressed.  if it is, the
      // buttonState is HIGH
      if (buttonState == HIGH) {
        // turn LED on
        digitalWrite(13, HIGH);
      } else {
        // turn LED off
        digitalWrite(13, LOW);
      }
      delay(10); // Delay a little bit to improve simulation performance
    }
  • 相关阅读:
    NPOI 操作 excel 帮助类
    文件帮助类
    浮点数精度问题
    多段文本显示省略号
    数字排序
    删除字符串首位空格
    生成一定范围的随机数
    锚链接动画
    原生js转json
    弹出遮罩和对话框
  • 原文地址:https://www.cnblogs.com/meetrice/p/14077388.html
Copyright © 2011-2022 走看看