查看ShiftOut()的源代码
←
ShiftOut()
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你刚才请求的操作只对属于该用户组的用户开放:
用户
您可以查看并复制此页面的源代码:
<font color="orange" size="+1">'''描述'''</font> 一次移位一位数据一位。 从最多(即最左边)或最少(最右边)有效位开始。 每个位依次写入数据引脚,之后时钟引脚被脉冲(高电平,然后为低电平)以指示该位可用。 注意:如果您正在与上升沿时钟的器件进行接口,那么在调用shiftOut()之前,需要确保时钟引脚为低电平。 调用digitalWrite(clockPin,LOW)。 这是一个软件实现; 另见[https://www.arduino.cc/en/Reference/SPI SPI库],它提供了一个更快的硬件实现,但仅适用于特定的引脚。 <font color="orange" size="+1">'''语法'''</font> <pre style="color:dimgray"> shiftOut(dataPin, clockPin, bitOrder, value) </pre> <font color="orange" size="+1">'''参数'''</font> * dataPin:要在其上输出每个位的引脚(int) * clockPin:一旦'''dataPin'''被设置为正确的值(int),该引脚就会切换 * bitOrder:哪个顺序移出位? '''MSBFIRST'''或'''LSBFIRST'''。(最高有效位优先,或最低有效位优先) * value: 将数据移出。(字节) <font color="orange" size="+1">'''返回'''</font> None <font color="red" size="">'''注意'''</font> 必须通过调用[[pinMode()]]将'''dataPin'''和'''clockPin'''配置为输出。 '''shiftOut'''当前被写入输出1个字节(8位),因此需要两步操作来输出大于255的值。 <pre style="color:dimgray"> // Do this for MSBFIRST serial int data = 500; // shift out highbyte shiftOut(dataPin, clock, MSBFIRST, (data >> 8)); // shift out lowbyte shiftOut(dataPin, clock, MSBFIRST, data); // Or do this for LSBFIRST serial data = 500; // shift out lowbyte shiftOut(dataPin, clock, LSBFIRST, data); // shift out highbyte shiftOut(dataPin, clock, LSBFIRST, (data >> 8)); </pre> <font color="orange" size="+1">'''示例'''</font> 有关相关电路,请参阅有关[https://www.arduino.cc/en/Tutorial/ShiftOut 控制74HC595移位寄存器的教程]。 <pre style="color:dimgray"> //**************************************************************// // Name : shiftOutCode, Hello World // // Author : Carlyn Maw,Tom Igoe // // Date : 25 Oct, 2006 // // Version : 1.0 // // Notes : Code for using a 74HC595 Shift Register // // : to count from 0 to 255 // //**************************************************************** //Pin connected to ST_CP of 74HC595 int latchPin = 8; //Pin connected to SH_CP of 74HC595 int clockPin = 12; ////Pin connected to DS of 74HC595 int dataPin = 11; void setup() { //set pins to output because they are addressed in the main loop pinMode(latchPin, OUTPUT); pinMode(clockPin, OUTPUT); pinMode(dataPin, OUTPUT); } void loop() { //count up routine for (int j = 0; j < 256; j++) { //ground latchPin and hold low for as long as you are transmitting digitalWrite(latchPin, LOW); shiftOut(dataPin, clockPin, LSBFIRST, j); //return the latch pin high to signal chip that it //no longer needs to listen for information digitalWrite(latchPin, HIGH); delay(1000); } } </pre> <font color="orange" size="+1">'''扩展阅读'''</font> :- [[shiftIn()]] ---- [[Arduino语法参考 | 返回Arduino语法参考列表]] 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛]
返回
ShiftOut()
。
导航菜单
个人工具
登录
名字空间
页面
讨论
不转换
变种
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
YF-论坛提问
YFRobot-直营店
YFRobot-企业店
Arduino
Arduino之入门篇
Arduino入门教程
Arduino语法参考
Arduino库
Arduino核心代码
编程平台
Mixly库
Mind+库
MakeCode扩展
传感器系列
积木式传感器系列
黑板传感器系列
蓝板传感器系列
Micro:Bit
Micro:Bit 通用基础教程
Valon智能车
Valon-I
帮助
帮助
wiki语法参考
工具箱
链入页面
相关更改
特殊页面
页面信息