Index
 
  Reference for Wiring 1.0 (ALPHA) 0017+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name  

MSBFIRST

   
Examples  
int data = 0; // Wiring pin 0 for data 
int clock = 1;  // Wiring pin 1 for clock 
int strobe = 2;  // Wiring pin 2 for the strobe (latch) 
byte counter = 0; 
 
void setup() { 
  pinMode(data OUTPUT); 
  pinMode(clock, OUTPUT); 
  pinMode(strobe, OUTPUT); 
} 
 
void loop() { 
  digitalWrite(strobe, LOW); 
  shiftOut(data, clock, MSBFIRST, counter);  // writes counter to the register  
  digitalWrite(strobe, HIGH); 
  delay(1000); 
  counter = counter + 1; 
} 
 
 

Description   The MSBFIRST reserved word indicates the bit order to use with the shiftOut method. It stands for most significant bit first (leftmost bit).

MSBFIRST는 shiftOut 메소드와 함께 사용하는 비트 순서를 나타내는 예약어 입니다. 최상위 비트를 우선 처리하는 것을 의미합니다.

   
Syntax  
MSBFIRST
   
Returns   none
   
Usage   Application
   
Related   LSBFIRST
shiftOut()