圣源电子制作

 找回密码
 立即注册
查看: 4546|回复: 0
打印 上一主题 下一主题

arduino学习笔记3 arduino语言

[复制链接]
跳转到指定楼层
楼主
发表于 2012-4-26 15:52:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
arduino学习笔记3 arduino语言

  • Arduino语言是建立在C/C++基础上的,其实也就是基础的C语言,Arduino语言只不过把AVR单片机(微控制器)相关的一些参数设置都函数化,不用我们去了解他的底层,让我们不了解AVR单片机(微控制器)的朋友也能轻松上手。
在与Arduino DIYER接触的这段时间里,发现有些朋友对Arduino语言还是比较难入手,那么这里我就简单的注释一下Arduino语言(本人也是半罐子水,有错的地方还请各位指正)。
/*************基础C语言*************/
关键字:

  • if
  • if...else
  • for
  • switch case
  • while
  • do... while
  • break
  • continue
  • return
  • goto
语法符号:

  • ;
  • {}
  • //
  • /* */
运算符:

  • =
  • +
  • -
  • *
  • /
  • %
  • ==
  • !=
  • <
  • >
  • <=
  • >=
  • &&
  • ||
  • !
  • ++
  • --
  • +=
  • -=
  • *=
  • /=
数据类型:

  • boolean 布尔类型
  • char
  • byte 字节类型
  • int
  • unsigned int
  • long
  • unsigned long
  • float
  • double
  • string
  • array
  • void
数据类型转换:

  • char()
  • byte()
  • int()
  • long()
  • float()
常量:

  • HIGH | LOW     表示数字IO口的电平,HIGH 表示高电平(1),LOW 表示低电平(0)。
  • INPUT | OUTPUT 表示数字IO口的方向,INPUT 表示输入(高阻态),OUTPUT   表示输出(AVR能提供5V电压 40mA电流)。
  • true | false   true 表示真(1),false表示假(0)。
/******************************************/
       以上为基础c语言的关键字和符号,有c语言基础的都应该了解其含义,这里也不作过多的解释。
/*************Arduino 语言*************/
结构

  • void setup()   初始化变量,管脚模式,调用库函数等
  • void loop() 连续执行函数内的语句
功能数字 I/O

  • pinMode(pin, mode)    数字IO口输入输出模式定义函数,pin表示为013 mode表示为INPUTOUTPUT
  • digitalWrite(pin, value)   数字IO口输出电平定义函数,pin表示为013value表示为HIGHLOW。比如定义HIGH可以驱动LED
  • int digitalRead(pin)    数字IO口读输入电平函数,pin表示为013value表示为HIGHLOW。比如可以读数字传感器。
模拟 I/O

  • int analogRead(pin)    模拟IO口读函数,pin表示为05Arduino Diecimila05Arduino nano07)。比如可以读模拟传感器(10AD05V表示为01023)。
  • analogWrite(pin, value) - PWM     数字IOPWM输出函数,Arduino数字IO口标注了PWMIO口可使用该函数,pin表示3, 5, 6, 9, 10, 11value表示为0255。比如可用于电机PWM调速或音乐播放。
扩展 I/O

  • shiftOut(dataPin, clockPin, bitOrder, value)    SPI外部IO扩展函数,通常使用带SPI接口的74HC5958IO扩展,dataPin为数据口,clockPin为时钟口,bitOrder为数据传输方向(MSBFIRST高位在前,LSBFIRST低位在前),value表示所要传送的数据(0255),另外还需要一个IO口做74HC595的使能控制。
  • unsigned long pulseIn(pin, value)    脉冲长度记录函数,返回时间参数(us),pin表示为013valueHIGHLOW。比如valueHIGH,那么当pin输入为高电平时,开始计时,当pin输入为低电平时,停止计时,然后返回该时间。
时间函数

  • unsigned long millis()   返回时间函数(单位ms),该函数是指,当程序运行就开始计时并返回记录的参数,该参数溢出大概需要50天时间。
  • delay(ms)    延时函数(单位ms)。
  • delayMicroseconds(us)    延时函数(单位us)。
数学函数

  • min(x, y) 求最小值
  • max(x, y) 求最大值
  • abs(x)   计算绝对值
  • constrain(x, a, b) 约束函数,下限a,上限bx必须在ab之间才能返回。
  • map(value, fromLow, fromHigh, toLow, toHigh)    约束函数,value必须在fromLowtoLow之间和fromHightoHigh之间。
  • pow(base, exponent) 开方函数,baseexponent次方。
  • sq(x)     平方
  • sqrt(x)   开根号
三角函数

  • sin(rad)
  • cos(rad)
  • tan(rad)
随机数函数

  • randomSeed(seed)   随机数端口定义函数,seed表示读模拟口analogRead(pin)函数
  • long random(max)   随机数函数,返回数据大于等于0,小于max
  • long random(min, max)   随机数函数,返回数据大于等于min,小于max
外部中断函数

  • attachInterrupt(interrupt, , mode)     外部中断只能用到数字IO23interrupt表示中断口初始01,表示一个功能函数,modeLOW低电平中断,CHANGE有变化就中断,RISING上升沿中断,FALLING 下降沿中断。
  • detachInterrupt(interrupt)    中断开关,interrupt=1 开,interrupt=0 关。
中断使能函数

  • interrupts() 使能中断
  • noInterrupts() 禁止中断
串口收发函数

  • Serial.begin(speed) 串口定义波特率函数,speed表示波特率,如960019200等。
  • int Serial.available() 判断缓冲器状态。
  • int Serial.read()   读串口并返回收到参数。
  • Serial.flush()    清空缓冲器。
  • Serial.print(data) 串口输出数据。
  • Serial.println(data)   串口输出数据并带回车符。
/**********************************/
/************Arduino语言库文件*************/
官方库文件

  • EEPROM - EEPROM读写程序库
  • Ethernet - 以太网控制器程序库
  • LiquidCrystal - LCD控制程序库
  • Servo - 舵机控制程序库
  • SoftwareSerial - 任何数字IO口模拟串口程序库
  • Stepper - 步进电机控制程序库
  • Wire - TWI/I2C总线程序库
  • Matrix - LED矩阵控制程序库
  • Sprite - LED矩阵图象处理控制程序库
非官方库文件

  • DateTime - a library for keeping track of the current date and time in software.
  • Debounce - for reading noisy digital inputs (e.g. from buttons)
  • Firmata - for communicating with applications on the computer using a standard serial protocol.
  • GLCD - graphics routines for LCD based on the KS0108 or equivalent chipset.
  • LCD - control LCDs (using 8 data lines)
  • LCD 4 Bit - control LCDs (using 4 data lines)
  • LedControl - for controlling LED matrices or seven-segment displays with a MAX7221 or MAX7219.
  • LedControl - an alternative to the Matrix library for driving multiple LEDs with Maxim chips.
  • Messenger - for processing text-based messages from the computer
  • Metro - help you time actions at regular intervals
  • MsTimer2 - uses the timer 2 interrupt to trigger an action every N milliseconds.
  • OneWire - control devices (from Dallas Semiconductor) that use the One Wire protocol.
  • PS2Keyboard - read characters from a PS2 keyboard.
  • Servo - provides software support for Servo motors on any pins.
  • Servotimer1 - provides hardware support for Servo motors on pins 9 and 10
  • Simple Message System - send messages between Arduino and the computer
  • SSerial2Mobile - send text messages or emails using a cell phone (via AT commands over software serial)
  • TextString - handle strings
  • TLC5940 - 16 channel 12 bit PWM controller.
  • X10 - Sending X10 signals over AC power lines
/****************************************/
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|联系我们|闽公网安备 35012102000020号|闽ICP备11020110号-1|圣源电子

GMT+8, 2024-11-24 00:19 , Processed in 0.040115 second(s), 14 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表