2023Arduino语法手册指南.docx
《2023Arduino语法手册指南.docx》由会员分享,可在线阅读,更多相关《2023Arduino语法手册指南.docx(72页珍藏版)》请在优知文库上搜索。
1、ArdUinO语法手册Arduino的程序可以划分为三个主要部分:结构、变量(变量与常量)、函数。结构部分6.2”(或)一、结构6.3!(非)七、指针运算符1.1setup()1.2loop()二、结构控制2.1if2.2 if.else2.3 for7.1*取消引用运算符7.2&引用运算符)位运算符8.1 &(bitwi$eand)8.2 (bitwiseor)8.3 (bitwisexor)2.4switchcase8.4(bitwisenot)2.5while2.6do.while2.7 break2.8 continue2.9 return2.10 goto扩展语法3.1 ;(分号)3
2、.2 (花括号)3.3 (单行注释)3.4 /*/(多行注释)35ffdefine3.6 include四、算数运算符4.1 =(赋值运算符)4.2 +(加)4.3 -(减)4.4 *(乘)4.5 /(除)4.6 %(模)五、比较运算符5.1 =(等于)5.2 !=(不等于)5.3 (大于)5.5 =(大于等于)六布尔运算符6.166 (与)8.5 (bitshiftright)九、复合运算符9.1 +(increment)9.2 -(decrement)9.3+=(compoundaddition)9.4 -(compoundsubtraction)9.5 *=(compoundmultip
3、lication)9.6 =(compounddivision)9.6&=(compoundbitwiseand)9.81 =(Compoundbitwiseor)变量部分十常量10.1 HIGHI1.OW(引脚电压定义)10.2 INPUTIOUTPUT(数字引脚(Digitalpins)定义)10.3 trueIfalse(逻辑层定义)10.4 integerconstants(整数常量)10.5 floatingpointconstants(浮点常量)十一、数据类型11.1 void11.2 boolean(布尔)11.3 Char(有号数据类型)11.4 UnSignedChar(无符
4、号数据类型)11.5 byte(无符号数)11.6 int(整型)11.7UnSignedint(无符号整型)18.3delay()11.8word18.4delayMicroseconds()11.9long(长整数型)十九、数学运算11.10unsignedIOng(无符号长整数型)19.1min()11.11float(浮点型数)19.2max()11.12double(双精度浮点数)19.3abs()11.13string(Chararraw字符串)19.4constrain!)11.14StringObjeCt(String类)19.5map()11.15array(数组)19.6p
5、ow()十二、数据类型转换19.7sqrt()12.1char()19.8ceil()12.2byte()19.9ep()12.3int()19.10fabs()12.4word()19.11floor()12.5long()19.12fma()12.6float()19.13fmax()十三变量作用域&修饰符19.14fmin()13.1variablescope(变量的作用域)19.15fmod()13.2static(静态变量)19.16ldep()13.3volatile19.17log()13.4const19.18Iogl0()十四辅助工具19.19round()14.1sizeo
6、f()19.20signbit()19.21sq()19.22square()函数部分19.23trunc()二十三角函数十五、数字I/O20.1sin()15.1pinMode()20.2cos()15.2digitalWrite()20.3tan()15.3digitalRead()20.4acos()十六、模拟I/O20.5asin()16.1analogReference()20.6atan()16.2analogRead()20.7atan2()16.3analogWrite()PWM20.8cosh()十七高级I/O20.9degrees)17.1tone()20.10hypot(
7、)17.2noTone()20.11radians()17.3ShiftOutO20.12sinh()17.4ShiftInO20.13tanh()17.5pulseln()二十一、随机数十八、时间21.1randomSeed()18.1millis()21.2random)18.2micros()二十二、位操作22.1 IowByteO22.2 highByte()22.3 bitRead()22.4 bitWrite()22.5 bitSet()22.6 bitClear()22.7 bit()二十三、设置中断函数23.1 attachlnterrupt()23.2 detachlnter
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2023 Arduino 语法 手册 指南