查看“检测颜色的RGB”的源代码
←
检测颜色的RGB
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | <p style="color: #4F4E4E;font-size:220%">'''检测颜色的RGB示例'''</p> <br> 检测要识别的颜色的RGB值,以及环境光的强度 <br> <br> <p style="color: #E87E05;font-size:155%">所需硬件</p> *[[mCookie-Core]] *[[mCookie-Battery]] *[[mCookie-Hub/zh|mCookie-Hub]] *一张TF卡/MicroSD卡 <br> <p style="color: #E87E05;font-size:155%">电路搭建</p> 将Battery、Core、MCookie_SD堆叠在一起,并插入SD卡,通过MicroUSB数据线接入电脑。 <br> <p style="color: #E87E05;font-size:155%">代码</p> <source lang="cpp"> #include <SPI.h> #include <SD.h> File myFile; void setup() { // Open serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for native USB port only } Serial.print("Initializing SD card..."); // Microduino SD module: pin 7 if (!SD.begin(D7)) { Serial.println("initialization failed!"); return; } Serial.println("initialization done."); // open the file. note that only one file can be open at a time, // so you have to close this one before opening another. myFile = SD.open("test.txt", FILE_WRITE); // if the file opened okay, write to it: if (myFile) { Serial.print("Writing to test.txt..."); myFile.println("testing 1, 2, 3."); // close the file: myFile.close(); Serial.println("done."); } else { // if the file didn't open, print an error: Serial.println("error opening test.txt"); } // re-open the file for reading: myFile = SD.open("test.txt"); if (myFile) { Serial.println("test.txt:"); // read from the file until there's nothing else in it: while (myFile.available()) { Serial.write(myFile.read()); } // close the file: myFile.close(); } else { // if the file didn't open, print an error: Serial.println("error opening test.txt"); } } void loop() { // nothing happens after setup } </source> 若想真正确认SD卡中的内容,可以使用读卡器连接电脑,打开SD卡中的txt文件观察内容是否与程序一致 <br> |} [[MCookie-SD Reference | 返回SD库语法手册]]
返回至
检测颜色的RGB
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息