نقل قول نوشته اصلی توسط مهیار نمایش پست ها
سلام


اولین سوالم اینه که موارد زیر باید به کدوم پین ها وصل شن؟
SCLK_pin

RCLK_pin

DIO_pin
-------------------------------------

فکر می کنم شما هدر کد رو مطالعه نکردید!
کد:
int latchpin = 5; 
int clockpin = 7;
int datapin = 6;
float b = 0;
int c = 0;
float d = 0;
int e = 0;
int speed = 300; // used to control speed of counting
int segdisp[10] = {3,159,37,13,153,73,65,27,1,9 };
int digits[]= {128,64,32,16,8,4,2,1};
void setup()
{
  pinMode(latchpin, OUTPUT);
  pinMode(clockpin, OUTPUT);
  pinMode(datapin, OUTPUT);
  digitalWrite(latchpin, LOW);
  shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the right display
  shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the left display
  digitalWrite(latchpin, HIGH);


}
void loop()
{
  setDigit(3,1);
//  setDigit(1,5);
//  setDigit(2,0);
  delay(10);
}
void setDigit(int dig, int character)
{
				   
	digitalWrite(latchpin, LOW);
        shiftOut(datapin, clockpin, LSBFIRST, segdisp[character]);
        shiftOut(datapin, clockpin, LSBFIRST, digits[dig]);
	digitalWrite(latchpin, HIGH);
        digitalWrite(latchpin, LOW);
        shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the right display
        shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the left display
        digitalWrite(latchpin, HIGH);
}
void shoop()
{
  //  Count up
  for (int z=0; z<100; z++)
  {
    digitalWrite(latchpin, LOW);
    shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the right display
    shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the left display
    digitalWrite(latchpin, HIGH);
    if (z<10)
    {
      digitalWrite(latchpin, LOW);
      shiftOut(datapin, clockpin, LSBFIRST, segdisp[z]); // sends the digit down the serial path
      shiftOut(datapin, clockpin, LSBFIRST, 255); // sends a blank down the serial path to push the digit to the right
      digitalWrite(latchpin, HIGH);
    }
    else if (z>=10)
    {
      d=z%10; // find the remainder of dividing z by 10, this will be the right-hand digit
      c=int(d); // make it an integer, c is the right hand digit
      b=z/10; // divide z by 10 - the whole number value will be the left-hand digit
      e = int(b); // e is the left hand digit
      digitalWrite(latchpin, LOW); // send the digits down to the shift registers!
      shiftOut(datapin, clockpin, LSBFIRST, segdisp[c]); 
      shiftOut(datapin, clockpin, LSBFIRST, segdisp[e]); 
      digitalWrite(latchpin, HIGH);
    }
    delay(speed);
  }
  delay(2000);
  //  Count down
  for (int z=99; z>=0; z--)
  {
    digitalWrite(latchpin, LOW);
    shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the right display
    shiftOut(datapin, clockpin, LSBFIRST, 0); // clears the left display
    digitalWrite(latchpin, HIGH);
    if (z<10)
    {
      digitalWrite(latchpin, LOW);
      shiftOut(datapin, clockpin, LSBFIRST, segdisp[z]); // sends the digit down the serial path
      shiftOut(datapin, clockpin, LSBFIRST, 255); // sends a blank down the serial path to push the digit to the right
      digitalWrite(latchpin, HIGH);
    }
    else if (z>=10)
    {
      d=z%10; // find the remainder of dividing z by 10, this will be the right-hand digit
      c=int(d); // make it an integer, c is the right hand digit
      b=z/10; // divide z by 10 - the whole number value will be the left-hand digit
      e = int(b); // e is the left hand digit
      digitalWrite(latchpin, LOW); // send the digits down to the shift registers!
      shiftOut(datapin, clockpin, LSBFIRST, segdisp[c]); 
      shiftOut(datapin, clockpin, LSBFIRST, segdisp[e]); 
      digitalWrite(latchpin, HIGH);
    }
    delay(speed);
  }


  delay(2000);
}