2021年6月26日 星期六

brightness

 void setup() {

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

 pinMode(3,OUTPUT);

 Serial.begin(9600);

}


void loop() {

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

  int i;

  for(i=0;i<255;i=i+10)

  {

    Serial.println(i);

    analogWrite(3,i);delay(100);

  }

  for(i=255;i>=0;i=i-10)

  {

    Serial.println(i);

    analogWrite(3,i);delay(100);

  }

}

沒有留言:

張貼留言

algorithm

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