11 2016 档案

摘要:一、一些API 1、打开文件 SerialFlashFile file; file = SerialFlash.open("filename.bin"); if (file) { // true if the file exists} 2、读数据 char buffer[256]; file.rea 阅读全文
posted @ 2016-11-13 18:17 Blue Mountain 阅读(2526) 评论(0) 推荐(0) 编辑
摘要:一、相关API 1、begin:需要在其他CUIREIMU前调用 //********************************************************************************************* //函数名称:CurieImu.begin 阅读全文
posted @ 2016-11-13 14:47 Blue Mountain 阅读(2165) 评论(0) 推荐(0) 编辑
摘要:一、API 1、开定时器中断 //********************************************************************************************* //函数名称:CurieTimerOne.start(int timerPer 阅读全文
posted @ 2016-11-13 10:29 Blue Mountain 阅读(4906) 评论(0) 推荐(0) 编辑
摘要:一、BLE技术简介 第四代蓝牙既包括传统的蓝牙,现在标有“蓝牙经典”,和新的低功耗蓝牙(Bluetooth LE,或BLE)。低数据速率,低功耗优化。 蓝牙LE广播就像一个社区公告栏。连接到它的计算机就像是阅读公告板的社区成员一样。每一个无线电作为一个公告板或读者。如果你的收音机是一个公告板(称为蓝 阅读全文
posted @ 2016-11-12 15:41 Blue Mountain 阅读(4434) 评论(0) 推荐(0) 编辑
摘要://打开串口 Serial.begin(9600); //获取串口上可读取的数据的字节数。该数据是指已经到达并存储在接收缓存(共有64字节)中 Serial.available(); //读串口数据,串口上第一个可读取的字节(如果没有可读取的数据则返回-1)- int型 Serial.read(); 阅读全文
posted @ 2016-11-12 14:48 Blue Mountain 阅读(10827) 评论(0) 推荐(0) 编辑
摘要:1、设置中断函数 //********************************************************************************************* //函数名称:void attachInterrupt (uint8_t interrup 阅读全文
posted @ 2016-11-12 14:37 Blue Mountain 阅读(3481) 评论(1) 推荐(0) 编辑
摘要:/*********最小值*********/ min() //实现:#define min(a,b) ((a)<(b)?(a):(b)) /*********最大值*********/ max() //实现:#define max(a,b) ((a)>(b)?(a):(b)) /********* 阅读全文
posted @ 2016-11-12 14:28 Blue Mountain 阅读(1803) 评论(0) 推荐(0) 编辑
摘要:1、毫秒时间 获取机器运行的时间长度, 单位毫秒. 系统最长的记录时间为9小时22分, 如果超出时间将从0开始. 警告: 时间为 unsigned long类型, 如果用 int 保存时间将得到错误结果: //********************************************* 阅读全文
posted @ 2016-11-12 14:15 Blue Mountain 阅读(2726) 评论(0) 推荐(0) 编辑
摘要:1、位移输出函数(8位) 输入value数据后Arduino会自动把数据移动分配到8个并行输出端. 其中dataPin为连接DS的引脚号, clockPin为连接SH_CP的引脚号, bitOrder为设置数据位移顺序, 分别为高位先入MSBFIRST或者低位先入LSBFIRST。 //****** 阅读全文
posted @ 2016-11-12 12:29 Blue Mountain 阅读(1343) 评论(0) 推荐(0) 编辑
摘要:1、配置IO管脚 //********************************************************************************************* //函数名称:void analogReference (uint8_t type); / 阅读全文
posted @ 2016-11-12 12:16 Blue Mountain 阅读(1168) 评论(0) 推荐(0) 编辑
摘要:1、设置管脚模式 //********************************************************************************************* //函数名称:void pinMode (uint8_t pin, uint8_t mod 阅读全文
posted @ 2016-11-11 19:37 Blue Mountain 阅读(1689) 评论(0) 推荐(0) 编辑
摘要:一、板子图示——摘自中文社区 二、技术规格 主控器 Intel Curie 工作电压 3.3V (I/O兼容5V) 输入电压 (推荐) 7-12V 输入电压 (极限) 6-20V 数字 I/O 14 (of which 4 provide PWM output) PWM I/O 4 模拟输入 I/O 阅读全文
posted @ 2016-11-11 19:15 Blue Mountain 阅读(2727) 评论(0) 推荐(0) 编辑
摘要:1、宏定义 2、整数常量 3、支持C++ String类 (1)String 方法 charAt() compareTo() concat() endsWith() equals() equalsIgnoreCase() GetBytes() indexOf() lastIndexOf length 阅读全文
posted @ 2016-11-11 19:03 Blue Mountain 阅读(703) 评论(0) 推荐(0) 编辑
摘要:一、Arduino IDE下载 要开发Arduino 101/Genuino 101,你需要先安装并配置好相应的开发环境。下载地址 http://www.arduino.cn/thread-5838-1-1.html PS:Arduino IDE 1.6.7或更新的版本才可用于Arduino 101 阅读全文
posted @ 2016-11-11 12:29 Blue Mountain 阅读(1329) 评论(0) 推荐(0) 编辑