欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

標題: auidno示例代碼LED hello world [打印本頁]

作者: leeyer    時間: 2018-10-26 09:37
標題: auidno示例代碼LED hello world


//**************************************************************////  Name    : shiftOutCode, Hello World                                //  Author  : Carlyn Maw,Tom Igoe, David A. Mellis //  Date    : 25 Oct, 2006    //  Modified: 23 Mar 2010                                 //  Version : 2.0                                             //  Notes   : Code for using a 74HC595 Shift Register           ////          : to count from 0 to 255                           //****************************************************************//Pin connected to ST_CP of 74HC595int latchPin = 8;//Pin connected to SH_CP of 74HC595int clockPin = 12;////Pin connected to DS of 74HC595int dataPin = 11;void setup() {  //set pins to output so you can control the shift register  pinMode(latchPin, OUTPUT);  pinMode(clockPin, OUTPUT);  pinMode(dataPin, OUTPUT);}void loop() {  // count from 0 to 255 and display the number   // on the LEDs  for (int numberToDisplay = 0; numberToDisplay < 256; numberToDisplay++) {    // take the latchPin low so     // the LEDs don't change while you're sending in bits:    digitalWrite(latchPin, LOW);    // shift out the bits:    shiftOut(dataPin, clockPin, MSBFIRST, numberToDisplay);      //take the latch pin high so the LEDs will light up:    digitalWrite(latchPin, HIGH);    // pause before next value:    delay(500);  }}





歡迎光臨 (http://m.raoushi.com/bbs/) Powered by Discuz! X3.1