[Advanced I/O]
説明
Shifts in a byte of data one bit at a time. Starts from either the most (i.e. the leftmost) or least (rightmost) significant bit. For each bit, the clock pin is pulled high, the next bit is read from the data line, and then the clock pin is taken low.
If you’re interfacing with a device that’s clocked by rising edges, you’ll need to make sure that the clock pin is low before the first call to shiftIn(), e.g. with a call to digitalWrite(clockPin, LOW).
Note: this is a software implementation; 86Duino also provides an SPI ライブラリ that uses the hardware implementation, which is faster but only works on specific pins.
構文
byte incoming = shiftIn(dataPin, clockPin, bitOrder)
媒介変数
dataPin: the pin on which to input each bit (int)clockPin: the pin to toggle to signal a read fromdataPinbitOrder: which order to shift in the bits; eitherMSBFIRSTorLSBFIRST. (Most Significant Bit First, or, Least Significant Bit First)
戻り値
the value read (byte)
参照
Language Reference Home
86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。