2021年7月6日 星期二

用內建電阻控制LED

 int sw=10;

int led=2;

int value=0;

void setup() {

  // put your setup code here, to run once:

 pinMode(sw,INPUT_PULLUP);

 pinMode(led,OUTPUT);

}


void loop() {

  // put your main code here, to run repeatedly:

value=digitalRead(sw);

if(value==1)

{

  digitalWrite(led,LOW);delay(200);

}

else

{

  digitalWrite(led,HIGH);

}

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...